---------------- * CreateExprContext * * Create a context for expression evaluation within an EState. * * An executor run may require multiple ExprContexts (we usually make one * for each Plan node, and a separate one for per-output-tuple processing * such as constraint checking). Each ExprContext has its own "per-tuple" * memory context. * * Note we make no assumption about the calle
| 355 | * ---------------- |
| 356 | */ |
| 357 | ExprContext * |
| 358 | CreateExprContext(EState *estate) |
| 359 | { |
| 360 | return CreateExprContextInternal(estate, ALLOCSET_DEFAULT_SIZES); |
| 361 | } |
| 362 | |
| 363 | |
| 364 | /* ---------------- |
no test coverage detected