From 964f7ec93c2b01aa2c3d171f01210df742dd0724 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Tue, 13 Jul 2021 20:18:09 +0100 Subject: Wider type support for PQ bindings timespec not supported... honestly not sure what it should bind! --- test/test-postgresql.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test') diff --git a/test/test-postgresql.cpp b/test/test-postgresql.cpp index 8adb920..15ba789 100644 --- a/test/test-postgresql.cpp +++ b/test/test-postgresql.cpp @@ -79,7 +79,7 @@ BOOST_AUTO_TEST_CASE(mock) BOOST_CHECK_NO_THROW(mdb.query("INSERT INTO test VALUES($1)", {"string_view"})); BOOST_CHECK_NO_THROW(mdb.query("INSERT INTO test VALUES($1)", {nullptr})); BOOST_CHECK_NO_THROW(mdb.query("INSERT INTO test VALUES($1)", {1.2})); - BOOST_CHECK_THROW(mdb.query("INSERT INTO test VALUES($1)", {MyGrate::Time {}}), std::logic_error); + BOOST_CHECK_THROW(mdb.query("INSERT INTO test VALUES($1)", {timespec {}}), std::logic_error); auto rscount = MyGrate::DbStmt<"SELECT COUNT(*) FROM test">::execute(&mdb); BOOST_CHECK_EQUAL(rscount->at(0, 0).operator unsigned int(), 4); } -- cgit v1.2.3