mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 00:22:29 +00:00
17 lines
411 B
C++
17 lines
411 B
C++
#pragma once
|
|
|
|
#include <Parsers/IAST_fwd.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
/// Makes an AST calculating argument1 AND argument2 AND ... AND argumentN.
|
|
ASTPtr makeASTForLogicalAnd(ASTs && arguments);
|
|
|
|
/// Makes an AST calculating argument1 OR argument2 OR ... OR argumentN.
|
|
ASTPtr makeASTForLogicalOr(ASTs && arguments);
|
|
|
|
/// Tries to extract a literal bool from AST.
|
|
bool tryGetLiteralBool(const IAST * ast, bool & value);
|
|
}
|