ZeroTierOne/ext/libpqxx-7.7.3/test/unit/test_cancel_query.cxx
Grant Limberg be7ce4110e
Revert "Delete and re-add libpqxx-7.7.3 due to weird corruption."
This reverts commit e96515433d71684a5a9a876c7af93530e11e160b.
2022-06-24 10:12:36 -07:00

26 lines
553 B
C++

#include <pqxx/pipeline>
#include <pqxx/transaction>
#include "../test_helpers.hxx"
namespace
{
void test_cancel_query()
{
pqxx::connection conn;
pqxx::work tx{conn};
// Calling cancel_query() while none is in progress has no effect.
conn.cancel_query();
// Nothing much is guaranteed about cancel_query, except that it doesn't make
// the process die in flames.
pqxx::pipeline p{tx, "test_cancel_query"};
p.retain(0);
p.insert("SELECT pg_sleep(1)");
conn.cancel_query();
}
PQXX_REGISTER_TEST(test_cancel_query);
} // namespace