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

Function transformAExprOpAny

src/backend/parser/parse_expr.c:976–988  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

974}
975
976static Node *
977transformAExprOpAny(ParseState *pstate, A_Expr *a)
978{
979 Node *lexpr = transformExprRecurse(pstate, a->lexpr);
980 Node *rexpr = transformExprRecurse(pstate, a->rexpr);
981
982 return (Node *) make_scalar_array_op(pstate,
983 a->name,
984 true,
985 lexpr,
986 rexpr,
987 a->location);
988}
989
990static Node *
991transformAExprOpAll(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