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