diff options
author | dan <Dan Kennedy> | 2020-12-10 18:06:24 +0000 |
---|---|---|
committer | dan <Dan Kennedy> | 2020-12-10 18:06:24 +0000 |
commit | 7aae73588aeb9fd33d26f0d0a654bfbebdccf72c (patch) | |
tree | 4be4a4bb0a2159d5708dcce4fe4e2c03fd1c60e1 /src/sqliteInt.h | |
parent | cd1b2d0b5431164787d4acad07940191af992c6a (diff) | |
download | sqlite-7aae73588aeb9fd33d26f0d0a654bfbebdccf72c.tar.gz sqlite-7aae73588aeb9fd33d26f0d0a654bfbebdccf72c.zip |
Better integrate the changes on this branch with OP_Insert and OP_IdxInsert.
FossilOrigin-Name: 101cef14910d6e865a94bc870aed599321b893188062a9a61d70a9434992cf23
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 438f79c09..fa24bf9ac 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -3517,6 +3517,7 @@ struct AuthContext { #define OPFLAG_SAVEPOSITION 0x02 /* OP_Delete/Insert: save cursor pos */ #define OPFLAG_AUXDELETE 0x04 /* OP_Delete: index in a DELETE op */ #define OPFLAG_NOCHNG_MAGIC 0x6d /* OP_MakeRecord: serialtype 10 is ok */ +#define OPFLAG_PREFORMAT 0x80 /* OP_Insert uses preformatted cell */ /* * Each trigger present in the database schema is stored as an instance of |