mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-15 19:02:04 +00:00
17 lines
317 B
C++
17 lines
317 B
C++
|
#pragma once
|
||
|
|
||
|
#include <Parsers/ASTCreateQuery.h>
|
||
|
#include <Parsers/ASTIdentifier.h>
|
||
|
#include <Parsers/ASTTableOverrides.h>
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
|
||
|
class ASTTableOverride;
|
||
|
class ASTCreateQuery;
|
||
|
class ASTIndentifier;
|
||
|
|
||
|
void applyTableOverrideToCreateQuery(const ASTTableOverride & override, ASTCreateQuery * create_query);
|
||
|
|
||
|
}
|