| 22 | }; |
| 23 | |
| 24 | struct schema_sqlite : schema, sqlite_connection { |
| 25 | schema_sqlite(std::string &conninfo, bool no_catalog); |
| 26 | virtual std::string quote_name(const std::string &id) { |
| 27 | return id; |
| 28 | } |
| 29 | }; |
| 30 | |
| 31 | struct dut_sqlite : dut_base, sqlite_connection { |
| 32 | virtual void test(const std::string &stmt); |
nothing calls this directly
no outgoing calls
no test coverage detected