ClickHouse/src/Interpreters/applyTableOverride.h
Stig Bakken 1cc70ad524 Remove the possibility of adding columns with table overrides
(except ALIAS columns)

Supporting this properly requires more comprehensive changes.
2021-12-22 08:20:14 +01:00

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);
}