Add support for <> SQL operator (#329)

This commit is contained in:
Nyall Dawson
2021-08-22 14:28:29 +10:00
committed by GitHub
parent 6a15f6b1e6
commit fadd536e2e
5 changed files with 17 additions and 2 deletions

View File

@@ -129,6 +129,7 @@ enum {
MDB_ISNULL,
MDB_NOTNULL,
MDB_ILIKE,
MDB_NEQ,
};
typedef enum {
@@ -162,6 +163,7 @@ enum {
x == MDB_LT || \
x == MDB_GTEQ || \
x == MDB_LTEQ || \
x == MDB_NEQ || \
x == MDB_LIKE || \
x == MDB_ILIKE || \
x == MDB_ISNULL || \