1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-29 08:01:23 +03:00

Enhanced comments describing the sessions file format. No changes to code.

FossilOrigin-Name: 84dc41e2df1092e9724a535b670343181a9cd0dd
This commit is contained in:
drh
2016-03-31 02:44:56 +00:00
parent 7e0765a9ec
commit c8be643733
3 changed files with 9 additions and 9 deletions

View File

@ -177,7 +177,7 @@ struct SessionTable {
**
** Followed by one or more changes to the table.
**
** 1 byte: Either SQLITE_INSERT, UPDATE or DELETE.
** 1 byte: Either SQLITE_INSERT (0x12), UPDATE (0x17) or DELETE (0x09).
** 1 byte: The "indirect-change" flag.
** old.* record: (delete and update only)
** new.* record: (insert and update only)
@ -219,7 +219,7 @@ struct SessionTable {
**
** Followed by one or more changes to the table.
**
** 1 byte: Either SQLITE_INSERT, UPDATE or DELETE.
** 1 byte: Either SQLITE_INSERT (0x12), UPDATE (0x17) or DELETE (0x09).
** 1 byte: The "indirect-change" flag.
** single record: (PK fields for DELETE, PK and modified fields for UPDATE,
** full record for INSERT).