diff options
author | drh <drh@noemail.net> | 2016-02-03 01:55:44 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2016-02-03 01:55:44 +0000 |
commit | 1b32554b80cd84bbc93075e5b4dd803bdcf65748 (patch) | |
tree | 71679ee7134a15707c6f3563cec67fe2212cad7f /src/sqliteInt.h | |
parent | b06347a5dcab801ba317cbf36043f8f70df0deec (diff) | |
download | sqlite-1b32554b80cd84bbc93075e5b4dd803bdcf65748.tar.gz sqlite-1b32554b80cd84bbc93075e5b4dd803bdcf65748.zip |
Enhance the internal sqlite3VdbeAddOpList() interface to automatically update
jump destinations. Use this feature to simplify the AUTOINCREMENT code
generator.
FossilOrigin-Name: ae8b9d2edf1b5aef6108e729754911db7682b6a3
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index dbe1595af..c18e83726 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -2641,7 +2641,7 @@ struct SelectDest { ** tables, the following information is attached to the Table.u.autoInc.p ** pointer of each autoincrement table to record some side information that ** the code generator needs. We have to keep per-table autoincrement -** information in case inserts are down within triggers. Triggers do not +** information in case inserts are done within triggers. Triggers do not ** normally coordinate their activities, but we do need to coordinate the ** loading and saving of autoincrement information. */ |