Differences From:
File
src/tkt.c
part of check-in
[d5e7891b07]
- Add a more advanced commit-hook mechanism that allows us to
specify multiple procedures in a particular order prior to commit.
Continuing work toward getting tickets going.
by
drh on
2007-11-18 20:48:07.
[view]
To:
File
src/tkt.c
part of check-in
[2a707334c9]
- Fix some compiler warnings. Comment changes on non-functioning code in tkt.c.
by
drh on
2007-11-22 01:53:24.
[view]
@@ -85,11 +85,14 @@
}
/*
** Update an entry of the TICKET table according to the information
-** in the control file.
+** in the control file given in p. Attempt to create the appropriate
+** TICKET table entry if createFlag is true. If createFlag is false,
+** that means we already know the entry exists and so we can save the
+** work of trying to create it.
*/
-void ticket_insert(Manifest *p, int createFlag){
+void ticket_insert(Manifest *p, int createFlag, int checkTime){
Blob sql;
Stmt q;
int i;