| 78 | } // anonymous namespace |
| 79 | |
| 80 | Options getDbOptions() |
| 81 | { |
| 82 | Options options; |
| 83 | |
| 84 | options.add(Option("connection", getTestDBTempConn())); |
| 85 | options.add(Option("table", "4dal-\"test\"-table")); // intentional quotes |
| 86 | options.add(Option("column", "p\"a")); // intentional quotes |
| 87 | |
| 88 | return options; |
| 89 | } |
| 90 | |
| 91 | class PgpointcloudTest : public testing::Test |
| 92 | { |
no test coverage detected