MCPcopy Create free account
hub / github.com/apache/cloudberry / transformAExprOpAll

Function transformAExprOpAll

src/backend/parser/parse_expr.c:990–1002  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

988}
989
990static Node *
991transformAExprOpAll(ParseState *pstate, A_Expr *a)
992{
993 Node *lexpr = transformExprRecurse(pstate, a->lexpr);
994 Node *rexpr = transformExprRecurse(pstate, a->rexpr);
995
996 return (Node *) make_scalar_array_op(pstate,
997 a->name,
998 false,
999 lexpr,
1000 rexpr,
1001 a->location);
1002}
1003
1004static Node *
1005transformAExprDistinct(ParseState *pstate, A_Expr *a)

Callers 1

transformExprRecurseFunction · 0.85

Calls 2

transformExprRecurseFunction · 0.85
make_scalar_array_opFunction · 0.85

Tested by

no test coverage detected