| 63 | } |
| 64 | |
| 65 | dut_pqxx::dut_pqxx(std::string conninfo) |
| 66 | : c(conninfo) |
| 67 | { |
| 68 | c.set_variable("statement_timeout", "'1s'"); |
| 69 | c.set_variable("client_min_messages", "'ERROR'"); |
| 70 | c.set_variable("application_name", "'" PACKAGE "::dut'"); |
| 71 | } |
| 72 | |
| 73 | void dut_pqxx::test(const std::string &stmt) |
| 74 | { |
nothing calls this directly
no outgoing calls
no test coverage detected