mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-18 20:32:43 +00:00
4c157007f5
Instead of using ExternalLoader::reload() now it's used reloadConfig() which reloads only what necessary. Functions attachDictionary() and detachDictionary() are simplified and have lesser number of parameters. Instead of injecting into LoadablesConfigReader's internals for creating dictionary a temp repository is used.
8 lines
180 B
C++
8 lines
180 B
C++
#include <Interpreters/IExternalLoaderConfigRepository.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
const char * IExternalLoaderConfigRepository::INTERNAL_REPOSITORY_NAME_PREFIX = "\xFF internal repo ";
|
|
}
|