We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 356d9ef commit 8f2f0beCopy full SHA for 8f2f0be
test/pqxx_test.cpp
@@ -1,4 +1,5 @@
1
#include <cassert>
2
+#include <iostream>
3
#include <optional>
4
#include <string>
5
#include <vector>
@@ -245,6 +246,7 @@ void test_sparsevec_from_string() {
245
246
auto unused = pqxx::from_string<pgvector::SparseVector>("{ }/");
247
assert(false);
248
} catch (const pqxx::conversion_error& e) {
249
+ std::cout << e.what() << std::endl;
250
assert(std::string_view(e.what()) == "stoi: no conversion");
251
}
252
0 commit comments