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

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 = {
case 'lt':
return '<';
case 'eq':
return '=';
return val === null ? 'IS' : '=';
case 'ne':
return val === null ? 'IS NOT' : '!=';
case 'between':
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!