Skip to content

Commit ad57580

Browse files
authored
IsNullExpression and IsBooleanExpression children are not visited in TablesNamesFinder (#2180)
IsNullExpression and IsBooleanExpression children are not visited in TablesNamesFinder
1 parent e30f30d commit ad57580

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)