Skip to content

Commit

Permalink
Address comments
Browse files Browse the repository at this point in the history
  • Loading branch information
xuzifu666 committed Feb 27, 2025
1 parent d7ae923 commit 6249227
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ abstract class DruidJsonFilter implements DruidJson {
if (columnName == null) {
return null;
}
if (e.getKind() == SqlKind.DRUID_IN) {
if (e.getKind() != SqlKind.DRUID_NOT_IN) {
return new DruidJsonFilter.JsonInFilter(columnName, listBuilder.build(), extractionFunction);
} else {
return toNotDruidFilter(
Expand Down

0 comments on commit 6249227

Please sign in to comment.