| 324 | struct boolean_table_creator : table_creator_base |
| 325 | { |
| 326 | boolean_table_creator(soci::session & sql) |
| 327 | : table_creator_base(sql) |
| 328 | { |
| 329 | sql << "create table soci_test(val boolean)"; |
| 330 | } |
| 331 | }; |
| 332 | |
| 333 | TEST_CASE("PostgreSQL boolean", "[postgresql][boolean]") |
nothing calls this directly
no outgoing calls
no test coverage detected