(Context<?> ctx)
| 112 | } |
| 113 | |
| 114 | @Override |
| 115 | public final void accept(Context<?> ctx) { |
| 116 | switch (ctx.family()) { |
| 117 | |
| 118 | |
| 119 | |
| 120 | |
| 121 | |
| 122 | |
| 123 | |
| 124 | |
| 125 | case DUCKDB: |
| 126 | case H2: |
| 127 | case HSQLDB: |
| 128 | ctx.visit(arrayFilter(array, e -> e.ne(remove))); |
| 129 | break; |
| 130 | |
| 131 | default: |
| 132 | ctx.visit(function(N_ARRAY_REMOVE, getDataType(), array, remove)); |
| 133 | break; |
| 134 | } |
| 135 | } |
| 136 | |
| 137 | |
| 138 |
nothing calls this directly
no test coverage detected