1#pragma once
2
3#include <Core/Types.h>
4#include <Parsers/IAST_fwd.h>
5
6
7namespace DB
8{
9
10/// It will produce an expression with CAST to get an AST with the required type.
11ASTPtr addTypeConversionToAST(ASTPtr && ast, const String & type_name);
12
13}
14