mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-17 11:52:27 +00:00
ff46e8bb51
1. Dropped support for DatabaseOrdinary for MaterializeMySQL. It is marked as experimental, and dropping support makes the code more maintaible, and speeds up integration tests by 50%. 2. Get rid of thread name logic for StorageMaterializeMySQL wrapping, use setInternalQuery instead (similar to MaterializedPostgreSQL).
17 lines
430 B
C++
17 lines
430 B
C++
#pragma once
|
|
|
|
#include <memory>
|
|
#include <Interpreters/Context_fwd.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class AsynchronousMetrics;
|
|
class IDatabase;
|
|
|
|
void attachSystemTablesServer(ContextPtr context, IDatabase & system_database, bool has_zookeeper);
|
|
void attachSystemTablesLocal(ContextPtr context, IDatabase & system_database);
|
|
void attachSystemTablesAsync(ContextPtr context, IDatabase & system_database, AsynchronousMetrics & async_metrics);
|
|
|
|
}
|