ClickHouse/src/Interpreters/addTypeConversionToAST.h
2020-04-03 18:14:31 +03:00

14 lines
243 B
C++

#pragma once
#include <Core/Types.h>
#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);
}