ClickHouse/src/Interpreters/addTypeConversionToAST.h

20 lines
499 B
C++
Raw Normal View History

2019-06-14 19:39:56 +00:00
#pragma once
#include <Interpreters/Context_fwd.h>
2019-06-14 19:39:56 +00:00
#include <Parsers/IAST_fwd.h>
#include <common/types.h>
2019-06-14 19:39:56 +00:00
namespace DB
{
2020-12-13 11:30:53 +00:00
class NamesAndTypesList;
2019-06-14 19:39:56 +00:00
/// It will produce an expression with CAST to get an AST with the required type.
ASTPtr addTypeConversionToAST(ASTPtr && ast, const String & type_name);
2020-12-12 16:42:15 +00:00
// If same type, then ignore the wrapper of CAST function
2021-06-01 12:20:52 +00:00
ASTPtr addTypeConversionToAST(ASTPtr && ast, const String & type_name, const NamesAndTypesList & all_columns, ContextPtr context);
2020-12-12 16:42:15 +00:00
2019-06-14 19:39:56 +00:00
}