mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-16 03:12:43 +00:00
12 lines
187 B
C++
12 lines
187 B
C++
|
#pragma once
|
||
|
#include <Interpreters/Context_fwd.h>
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
|
||
|
class IDatabase;
|
||
|
|
||
|
void attachInformationSchema(ContextMutablePtr context, IDatabase & information_schema_database);
|
||
|
|
||
|
}
|