blob: 9bb5623128a695015e75ab201b6b985a9600be59 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#pragma once
#include <Interpreters/Context_fwd.h>
namespace DB
{
class IDatabase;
void attachInformationSchema(ContextMutablePtr context, IDatabase & information_schema_database);
}
|