| 96 | } |
| 97 | |
| 98 | void SplitMultiCopyRandom::run() { |
| 99 | for (auto file : splitFilePaths) { |
| 100 | auto currQuery = std::format("COPY {} FROM \"{}\";", tableName, file); |
| 101 | spdlog::info("QUERY: {}", currQuery); |
| 102 | validateQuery(connection, currQuery); |
| 103 | } |
| 104 | } |
| 105 | |
| 106 | } // namespace testing |
| 107 | } // namespace lbug |
nothing calls this directly
no test coverage detected