ClickHouse/src/Interpreters/addTypeConversionToAST.h

14 lines
243 B
C++
Raw Normal View History

2019-06-14 19:39:56 +00:00
#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);
}