mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-06-05 03:53:44 +02:00
20 lines
405 B
C++
20 lines
405 B
C++
#include <pqxx/nontransaction>
|
|
#include <pqxx/subtransaction>
|
|
|
|
#include "../test_helpers.hxx"
|
|
|
|
namespace
|
|
{
|
|
void test_simultaneous_transactions()
|
|
{
|
|
pqxx::connection conn;
|
|
|
|
pqxx::nontransaction n1{conn};
|
|
PQXX_CHECK_THROWS(
|
|
pqxx::nontransaction n2{conn}, std::logic_error,
|
|
"Allowed to open simultaneous nontransactions.");
|
|
}
|
|
|
|
|
|
PQXX_REGISTER_TEST(test_simultaneous_transactions);
|
|
} // namespace
|