Skip to content

Commit b9dc866

Browse files
Merge branch 'master' of github.com:JSQLParser/JSqlParser
2 parents 1d37eb0 + ad57580 commit b9dc866

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/net/sf/jsqlparser/util/TablesNamesFinder.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -522,13 +522,13 @@ public <S> Void visit(SignedExpression signedExpression, S context) {
522522

523523
@Override
524524
public <S> Void visit(IsNullExpression isNullExpression, S context) {
525-
525+
isNullExpression.getLeftExpression().accept(this, context);
526526
return null;
527527
}
528528

529529
@Override
530530
public <S> Void visit(IsBooleanExpression isBooleanExpression, S context) {
531-
531+
isBooleanExpression.getLeftExpression().accept(this, context);
532532
return null;
533533
}
534534

0 commit comments

Comments
 (0)