MySQL NOT operator support
- Suppot for NOT operator in MySQL, similarly as in PostgreSQL. - Add test to verify NOT EXISTS query in MySQL
This commit is contained in:
parent
fdde2ab9b4
commit
9a3c29b504
3 changed files with 31 additions and 5 deletions
9
mysql/operators.go
Normal file
9
mysql/operators.go
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
package mysql
|
||||
|
||||
import "github.com/go-jet/jet/v2/internal/jet"
|
||||
|
||||
// NOT returns negation of bool expression result
|
||||
var NOT = jet.NOT
|
||||
|
||||
// BIT_NOT inverts every bit in integer expression result
|
||||
var BIT_NOT = jet.BIT_NOT
|
||||
Loading…
Add table
Add a link
Reference in a new issue