| 135 | } |
| 136 | |
| 137 | bool DatabaseFilesystem::isTableExist(const String & name, ContextPtr context_) const |
| 138 | { |
| 139 | if (tryGetTableFromCache(name)) |
| 140 | return true; |
| 141 | |
| 142 | return checkTableFilePath(getTablePath(name), context_, /* throw_on_error */ false); |
| 143 | } |
| 144 | |
| 145 | StoragePtr DatabaseFilesystem::getTableImpl(const String & name, ContextPtr context_, bool throw_on_error) const |
| 146 | { |
nothing calls this directly
no test coverage detected