* Prepare a compiled expression for execution. This has to be called for * every ExprState before it can be executed. * * NB: While this currently only calls ExecReadyInterpretedExpr(), * this will likely get extended to further expression evaluation methods. * Therefore this should be used instead of directly calling * ExecReadyInterpretedExpr(). */
| 892 | * ExecReadyInterpretedExpr(). |
| 893 | */ |
| 894 | static void |
| 895 | ExecReadyExpr(ExprState *state) |
| 896 | { |
| 897 | if (jit_compile_expr(state)) |
| 898 | return; |
| 899 | |
| 900 | ExecReadyInterpretedExpr(state); |
| 901 | } |
| 902 | |
| 903 | /* |
| 904 | * Append the steps necessary for the evaluation of node to ExprState->steps, |
no test coverage detected