risingwave_frontend::expr

Function to_disjunctions

source
pub fn to_disjunctions(expr: ExprImpl) -> Vec<ExprImpl>
Expand description

Transform a bool expression to Disjunctive form. e.g. given expression is (expr1 OR expr2 OR expr3) the function will return Vec[expr1, expr2, expr3].