mirror of
https://github.com/knex/knex.git
synced 2025-12-28 15:38:41 +00:00
Merge pull request #222 from danschumann/patch-1
added 'is' to operators
This commit is contained in:
commit
eeda0fbfe4
@ -26,7 +26,7 @@ var Builder = function(knex) {
|
||||
};
|
||||
|
||||
// All operators used in the `where` clause generation.
|
||||
var operators = ['=', '<', '>', '<=', '>=', '<>', '!=', 'like', 'not like', 'between', 'ilike'];
|
||||
var operators = ['=', '<', '>', '<=', '>=', '<>', '!=', 'is', 'like', 'not like', 'between', 'ilike'];
|
||||
|
||||
// Valid values for the `order by` clause generation.
|
||||
var orderBys = ['asc', 'desc'];
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user