不要怂,就是干,撸起袖子干!

Commit e9c2a5a0 by Kyle

Add support for 'IS NULL' comparison

1 parent de05498b
Showing with 1 additions and 1 deletions
...@@ -328,7 +328,7 @@ var Utils = module.exports = { ...@@ -328,7 +328,7 @@ var Utils = module.exports = {
case 'lt': case 'lt':
return '<'; return '<';
case 'eq': case 'eq':
return '='; return val === null ? 'IS' : '=';
case 'ne': case 'ne':
return val === null ? 'IS NOT' : '!='; return val === null ? 'IS NOT' : '!=';
case 'between': case 'between':
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!