Optimizes an already compiled expression without recompiling its sub-expressions. @param cc compilation context @return optimized expression @throws QueryException query exception
(final CompileContext cc)
| 52 | * @throws QueryException query exception |
| 53 | */ |
| 54 | @SuppressWarnings("unused") |
| 55 | public Expr optimize(final CompileContext cc) throws QueryException { |
| 56 | return this; |
| 57 | } |
| 58 | |
| 59 | /** |
| 60 | * Evaluates the expression and returns an iterator on the resulting items. |