Skip to content

Commit

Permalink
analytics: is (not) null
Browse files Browse the repository at this point in the history
  • Loading branch information
aeberhart committed Sep 26, 2024
1 parent 78a658a commit 362217b
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -610,8 +610,10 @@ else if (isGroupBy)
where.add(col + " >= " + arg1);
break;
case IS_NOT_NULL:
where.add(col + " is not null");
break;
case IS_NULL:
where.add(col + " is null");
break;
case LIKE:
break;
Expand Down

0 comments on commit 362217b

Please sign in to comment.