2020-12-12 16:42:15 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <Core/Names.h>
|
2021-04-10 23:33:54 +00:00
|
|
|
#include <Interpreters/Context_fwd.h>
|
2020-12-12 16:42:15 +00:00
|
|
|
#include <Parsers/IAST_fwd.h>
|
2021-04-10 23:33:54 +00:00
|
|
|
#include <common/types.h>
|
2020-12-12 16:42:15 +00:00
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
class ColumnsDescription;
|
2021-04-10 23:33:54 +00:00
|
|
|
|
2021-07-18 15:27:19 +00:00
|
|
|
/// Replace storage alias columns in select query if possible. Return true if the query is changed.
|
|
|
|
bool replaceAliasColumnsInQuery(
|
2021-05-21 17:01:21 +00:00
|
|
|
ASTPtr & ast, const ColumnsDescription & columns, const NameToNameMap & array_join_result_to_source, ContextPtr context);
|
2020-12-12 16:42:15 +00:00
|
|
|
|
|
|
|
}
|