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-10-02 07:13:14 +00:00
|
|
|
#include <base/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-09-14 11:13:07 +00:00
|
|
|
ASTPtr & ast,
|
|
|
|
const ColumnsDescription & columns,
|
|
|
|
const NameToNameMap & array_join_result_to_source,
|
|
|
|
ContextPtr context,
|
|
|
|
const std::unordered_set<IAST *> & excluded_nodes = {});
|
2020-12-12 16:42:15 +00:00
|
|
|
|
|
|
|
}
|