Skip to content

Commit e8ecbdc

Browse files
committed
Update Constants.php
Update `_isNULL` and `_notNULL` constants to allow checks to run correctly
1 parent 4bc6a25 commit e8ecbdc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/Constants.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@
3939
\define('_BETWEEN', 'BETWEEN');
4040
\define('_notBETWEEN', 'NOT BETWEEN');
4141

42-
\define('_isNULL', 'IS NULL');
43-
\define('_notNULL', 'IS NOT NULL');
42+
\define('_isNULL', 'IS');
43+
\define('_notNULL', 'IS NOT');
4444
\define('_BOOLEAN_OPERATORS', [
4545
'<', '>', '=', '!=', '>=', '<=', '<>',
4646
'IN', 'LIKE', 'NOT LIKE', 'BETWEEN', 'NOT BETWEEN', 'IS', 'IS NOT'

0 commit comments

Comments
 (0)