MCPcopy Create free account
hub / github.com/SOCI/soci / bytea_table_creator

Method bytea_table_creator

tests/postgresql/test-postgresql.cpp:560–565  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

558struct 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
568TEST_CASE("PostgreSQL bytea", "[postgresql][bytea]")

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected