| 47 | virtual std::string quote_name(const std::string &id) = 0; |
| 48 | |
| 49 | void summary() { |
| 50 | std::cout << "Found " << tables.size() << |
| 51 | " user table(s) in information schema." << std::endl; |
| 52 | } |
| 53 | void fill_scope(struct scope &s) { |
| 54 | for (auto &t : tables) |
| 55 | s.tables.push_back(&t); |
nothing calls this directly
no outgoing calls
no test coverage detected