mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-01 20:12:02 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
14 lines
243 B
C++
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);
|
|
|
|
}
|