Skip to content

Commit 84bdc43

Browse files
committed
add missing index constraint op types
1 parent 57e5007 commit 84bdc43

1 file changed

Lines changed: 12 additions & 4 deletions

File tree

sqlite3_opt_vtable.go

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -301,10 +301,18 @@ const (
301301
OpLT = 16
302302
OpGE = 32
303303
OpMATCH = 64
304-
OpLIKE = 65 /* 3.10.0 and later only */
305-
OpGLOB = 66 /* 3.10.0 and later only */
306-
OpREGEXP = 67 /* 3.10.0 and later only */
307-
OpScanUnique = 1 /* Scan visits at most 1 row */
304+
OpLIKE = 65 /* 3.10.0 and later only */
305+
OpGLOB = 66 /* 3.10.0 and later only */
306+
OpREGEXP = 67 /* 3.10.0 and later only */
307+
OpNE = 68 /* 3.21.0 and later only */
308+
OpISNOT = 69 /* 3.21.0 and later */
309+
OpISNOTNULL = 70 /* 3.21.0 and later */
310+
OpISNULL = 71 /* 3.21.0 and later */
311+
OpIS = 72 /* 3.21.0 and later */
312+
OpLIMIT = 73 /* 3.38.0 and later */
313+
OpOFFSET = 74 /* 3.38.0 and later */
314+
OpFUNCTION = 150 /* 3.25.0 and later */
315+
OpScanUnique = 1 /* Scan visits at most 1 row */
308316
)
309317

310318
// InfoConstraint give information of constraint.

0 commit comments

Comments
 (0)