mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-17 03:42:48 +00:00
13 lines
129 B
C++
13 lines
129 B
C++
#pragma once
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class Context;
|
|
|
|
/// Load tables and add them to context.
|
|
void loadMetadata(Context & context);
|
|
|
|
}
|