[jOOQ/jOOQ#10179] This isn't true for IS [ NOT ] (DOCUMENT | JSON)

This commit is contained in:
Lukas Eder 2020-05-11 09:02:15 +02:00
parent 26f1d3ae93
commit 3cf7f851d6
2 changed files with 0 additions and 10 deletions

View File

@ -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);

View File

@ -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()) {