| 158 | } |
| 159 | |
| 160 | bool DatabaseMySQL::isTableExist(const String & name, ContextPtr local_context) const |
| 161 | { |
| 162 | return bool(tryGetTable(name, local_context)); |
| 163 | } |
| 164 | |
| 165 | StoragePtr DatabaseMySQL::tryGetTable(const String & mysql_table_name, ContextPtr local_context) const |
| 166 | { |
nothing calls this directly
no test coverage detected