mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-05 14:02:21 +00:00
e1f7f04752
* Rename DDLDependencyVisitor -> DDLLoadingDependencyVisitor. * Move building a loading graph to TablesLoader. * Implement referential dependencies for tables and use them when restoring tables from a backup. * Remove StorageID::operator < (because of its inconsistency with ==). * Add new tests. * Fix test. * Fix memory leak. Co-authored-by: Nikita Mikhaylov <mikhaylovnikitka@gmail.com>
28 lines
1.0 KiB
C++
28 lines
1.0 KiB
C++
#pragma once
|
|
|
|
#include <Interpreters/Context_fwd.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/// 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.
|
|
void loadMetadataSystem(ContextMutablePtr context);
|
|
|
|
/// Load tables from databases and add them to context. Database 'system' and 'information_schema' is ignored.
|
|
/// Use separate function to load system tables.
|
|
void loadMetadata(ContextMutablePtr context, const String & default_database_name = {});
|
|
|
|
/// Background operations in system tables may slowdown loading of the rest tables,
|
|
/// so we startup system tables after all databases are loaded.
|
|
void startupSystemTables();
|
|
|
|
/// Converts `system` database from Ordinary to Atomic (if needed)
|
|
void maybeConvertSystemDatabase(ContextMutablePtr context);
|
|
|
|
/// Converts all databases (except system) from Ordinary to Atomic if convert_ordinary_to_atomic flag exists
|
|
void convertDatabasesEnginesIfNeed(ContextMutablePtr context);
|
|
|
|
}
|