Returns true if this expression should be treated as constant. I.e. if the frontend and backend should assume that two evaluations of the expression within a query will return the same value. Examples of constant expressions include: - Literal values like 1, "foo", or NULL - Deterministic operators
()
| 1545 | * FunctionCallExpr.isConstant()). |
| 1546 | */ |
| 1547 | public final boolean isConstant() { |
| 1548 | if (isAnalyzed_) return isConstant_; |
| 1549 | return isConstantImpl(); |
| 1550 | } |
| 1551 | |
| 1552 | /** |
| 1553 | * Implements isConstant() - computes the value without using 'isConstant_'. |
no test coverage detected