ClickHouse/src/Interpreters/loadMetadata.h

17 lines
546 B
C++
Raw Normal View History

2011-10-30 11:30:52 +00:00
#pragma once
#include <Interpreters/Context_fwd.h>
2011-10-30 11:30:52 +00:00
namespace DB
{
2017-06-18 05:43:29 +00:00
/// Load tables from system database. Only real tables like query_log, part_log.
/// You should first load system database, then attach system tables that you need into it, then load other databases.
2021-05-31 14:49:02 +00:00
void loadMetadataSystem(ContextMutablePtr context);
2017-06-18 05:43:29 +00:00
/// Load tables from databases and add them to context. Database 'system' is ignored. Use separate function to load system tables.
2021-05-31 14:49:02 +00:00
void loadMetadata(ContextMutablePtr context, const String & default_database_name = {});
2011-10-30 11:30:52 +00:00
}