[jOOQ/jOOQ#10179] This isn't true for IS [ NOT ] (DOCUMENT | JSON)
This commit is contained in:
parent
26f1d3ae93
commit
3cf7f851d6
@ -61,11 +61,6 @@ final class IsDocument extends AbstractCondition {
|
||||
this.isDocument = isDocument;
|
||||
}
|
||||
|
||||
@Override
|
||||
final boolean isNullable() {
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public final void accept(Context<?> ctx) {
|
||||
ctx.visit(field).sql(' ').visit(isDocument ? K_IS_DOCUMENT : K_IS_NOT_DOCUMENT);
|
||||
|
||||
@ -65,11 +65,6 @@ final class IsJSON extends AbstractCondition {
|
||||
this.isJSON = isJSON;
|
||||
}
|
||||
|
||||
@Override
|
||||
final boolean isNullable() {
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public final void accept(Context<?> ctx) {
|
||||
switch (ctx.family()) {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user