(Context<?> ctx)
| 86 | // ------------------------------------------------------------------------ |
| 87 | |
| 88 | @Override |
| 89 | public final void accept(Context<?> ctx) { |
| 90 | boolean extraParentheses = false ; |
| 91 | |
| 92 | switch (ctx.family()) { |
| 93 | |
| 94 | |
| 95 | |
| 96 | |
| 97 | |
| 98 | |
| 99 | |
| 100 | |
| 101 | default: |
| 102 | ctx.visit(quantifier.keyword); |
| 103 | ctx.sql(extraParentheses ? " ((" : " ("); |
| 104 | visitSubquery(ctx, delegate(ctx), PREDICAND, false); |
| 105 | ctx.sql(extraParentheses ? "))" : ")"); |
| 106 | break; |
| 107 | } |
| 108 | } |
| 109 | |
| 110 | private final QueryPart delegate(Context<?> ctx) { |
| 111 | if (array instanceof QOM.Array<T> a) { |
nothing calls this directly
no test coverage detected