ClickHouse/src/Storages/System/attachInformationSchemaTables.h
tavplubix 341a6c51d6
Merging #24866 (#28691)
* Add StorageSystemISTables.cpp/.h

* Another attempt

* Columns and Views

* Add information schema db and fix information schema 'tables' table

* fix build

* remove copy-paste, add views to system tables

* add test

* fix

* fix_tests

Co-authored-by: Damir Petrov <petrovdamir2235@gmail.com>
Co-authored-by: Damir Petrov <0442a403@verstehen.sas.yp-c.yandex.net>
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2021-09-09 12:37:51 +03:00

12 lines
187 B
C++

#pragma once
#include <Interpreters/Context_fwd.h>
namespace DB
{
class IDatabase;
void attachInformationSchema(ContextMutablePtr context, IDatabase & information_schema_database);
}