mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 13:42:02 +00:00
14 lines
245 B
C++
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);
|
|
|
|
}
|