ClickHouse/src/Interpreters/addTypeConversionToAST.h
2020-09-15 12:55:57 +03:00

14 lines
245 B
C++

#pragma once
#include <common/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);
}