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

Function ExecIsExprUnsafeToConst

src/backend/executor/execExpr.c:4395–4400  ·  view source on GitHub ↗

* ExecIsExprUnsafeToConst * * Returns true if the expression cannot be evaluated to a const value. */

Source from the content-addressed store, hash-verified

4393 * Returns true if the expression cannot be evaluated to a const value.
4394 */
4395static bool
4396ExecIsExprUnsafeToConst(Node *node)
4397{
4398 Assert(node != NULL);
4399 return ExecIsExprUnsafeToConst_walker(node, NULL);
4400}
4401
4402/*
4403 * ExecEvalFunctionArgToConst

Callers 1

Calls 1

Tested by

no test coverage detected