MCPcopy Index your code
hub / github.com/jOOQ/jOOQ / accept

Method accept

jOOQ/src/main/java/org/jooq/impl/ArrayRemove.java:114–135  ·  view source on GitHub ↗
(Context<?> ctx)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 6

arrayFilterMethod · 0.80
familyMethod · 0.65
visitMethod · 0.65
neMethod · 0.65
getDataTypeMethod · 0.65
functionMethod · 0.45

Tested by

no test coverage detected