| 93 | } |
| 94 | |
| 95 | StoragePtr DatabaseDictionary::tryGetTable(const String & table_name, ContextPtr) const |
| 96 | { |
| 97 | auto load_result = getContext()->getExternalDictionariesLoader().getLoadResult(table_name); |
| 98 | return createStorageDictionary(getDatabaseName(), load_result, getContext()); |
| 99 | } |
| 100 | |
| 101 | DatabaseTablesIteratorPtr DatabaseDictionary::getTablesIterator(ContextPtr, const FilterByNameFunction & filter_by_table_name) |
| 102 | { |
nothing calls this directly
no test coverage detected