| 1168 | struct TableCreatorCLOB : public tests::table_creator_base |
| 1169 | { |
| 1170 | TableCreatorCLOB(soci::session & sql) |
| 1171 | : tests::table_creator_base(sql) |
| 1172 | { |
| 1173 | sql << "create table soci_test(id integer, s blob sub_type text)"; |
| 1174 | sql.commit(); |
| 1175 | sql.begin(); |
| 1176 | } |
| 1177 | }; |
| 1178 | |
| 1179 | struct TableCreatorBLOB : public tests::table_creator_base |