2016-02-13 06:37:19 +00:00
|
|
|
#pragma once
|
|
|
|
|
2016-05-28 15:42:22 +00:00
|
|
|
#include <memory>
|
2017-04-01 09:19:00 +00:00
|
|
|
#include <Core/Field.h>
|
2017-09-17 18:49:43 +00:00
|
|
|
#include <Parsers/IAST.h>
|
2017-08-04 15:54:00 +00:00
|
|
|
#include <Parsers/IParser.h>
|
2016-02-13 06:37:19 +00:00
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
class Context;
|
2017-02-16 22:05:48 +00:00
|
|
|
class IDataType;
|
2016-02-13 06:37:19 +00:00
|
|
|
|
2017-08-04 15:54:00 +00:00
|
|
|
|
2017-02-17 20:27:32 +00:00
|
|
|
/** Evaluate constant expression and its type.
|
2016-08-25 17:23:29 +00:00
|
|
|
* Used in rare cases - for elements of set for IN, for data to INSERT.
|
|
|
|
* Quite suboptimal.
|
2016-02-13 06:37:19 +00:00
|
|
|
*/
|
2017-12-18 01:11:48 +00:00
|
|
|
std::pair<Field, std::shared_ptr<const IDataType>> evaluateConstantExpression(const ASTPtr & node, const Context & context);
|
2016-02-13 06:37:19 +00:00
|
|
|
|
2016-08-25 17:23:29 +00:00
|
|
|
|
|
|
|
/** Evaluate constant expression
|
|
|
|
* and returns ASTLiteral with its value.
|
|
|
|
*/
|
2017-09-17 18:49:43 +00:00
|
|
|
ASTPtr evaluateConstantExpressionAsLiteral(const ASTPtr & node, const Context & context);
|
2016-08-25 17:23:29 +00:00
|
|
|
|
|
|
|
|
|
|
|
/** Evaluate constant expression
|
|
|
|
* and returns ASTLiteral with its value.
|
|
|
|
* Also, if AST is identifier, then return string literal with its name.
|
|
|
|
* Useful in places where some name may be specified as identifier, or as result of a constant expression.
|
|
|
|
*/
|
2017-09-17 18:49:43 +00:00
|
|
|
ASTPtr evaluateConstantExpressionOrIdentifierAsLiteral(const ASTPtr & node, const Context & context);
|
2016-08-25 17:23:29 +00:00
|
|
|
|
2016-02-13 06:37:19 +00:00
|
|
|
}
|