aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/clickhouse/src/Parsers/makeASTForLogicalFunction.h
blob: 8c3718bfcdedf972122d48782400ba1c6470a626 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#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);
}