ClickHouse/src/Interpreters/addTypeConversionToAST.h

14 lines
245 B
C++
Raw Normal View History

2019-06-14 19:39:56 +00:00
#pragma once
2020-09-15 09:55:57 +00:00
#include <common/types.h>
2019-06-14 19:39:56 +00:00
#include <Parsers/IAST_fwd.h>
namespace DB
{
/// It will produce an expression with CAST to get an AST with the required type.
ASTPtr addTypeConversionToAST(ASTPtr && ast, const String & type_name);
}