(Context<?> context)
| 2195 | |
| 2196 | |
| 2197 | private final void pushWindow(Context<?> context) { |
| 2198 | // [#531] [#2790] Make the WINDOW clause available to the SELECT clause |
| 2199 | // to be able to inline window definitions if the WINDOW clause is not |
| 2200 | // supported. |
| 2201 | if (Tools.isNotEmpty(window)) |
| 2202 | context.data(DATA_WINDOW_DEFINITIONS, window); |
| 2203 | } |
| 2204 | |
| 2205 | /** |
| 2206 | * The default LIMIT / OFFSET clause in most dialects |
no test coverage detected