| 558 | struct bytea_table_creator : public table_creator_base |
| 559 | { |
| 560 | bytea_table_creator(soci::session& sql) |
| 561 | : table_creator_base(sql) |
| 562 | { |
| 563 | sql << "drop table if exists soci_test;"; |
| 564 | sql << "create table soci_test ( val bytea null )"; |
| 565 | } |
| 566 | }; |
| 567 | |
| 568 | TEST_CASE("PostgreSQL bytea", "[postgresql][bytea]") |
nothing calls this directly
no outgoing calls
no test coverage detected