| 63 | void drop_table(const std::string& table_name); |
| 64 | |
| 65 | inline bool table_exists(Oid table_id) const noexcept |
| 66 | { |
| 67 | return tables_.contains(table_id); |
| 68 | } |
| 69 | |
| 70 | inline table_data* get_table_data_if_exists(Oid table_id) noexcept |
| 71 | { |
no test coverage detected