aboutsummaryrefslogtreecommitdiff
path: root/src/sqliteInt.h
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2012-11-27 21:56:28 +0000
committerdrh <drh@noemail.net>2012-11-27 21:56:28 +0000
commit26cd614dad37c7cf2fdbc788a7517316554c702e (patch)
treedd0c18cc064eaffd9632b1c90ec49730c120939b /src/sqliteInt.h
parentafe5b83dcdee8faffce1b21b8c52a284311ce2a3 (diff)
parentdac07e14c812cfb8fd8fda27f7a2de3894f240d9 (diff)
downloadsqlite-26cd614dad37c7cf2fdbc788a7517316554c702e.tar.gz
sqlite-26cd614dad37c7cf2fdbc788a7517316554c702e.zip
Update the sessions branch to include the SQLLOG enhancement, the
SQLITE_IOERR_DELETE_NOENT fix, and a fix for the number-of-documents bug in FTS4. FossilOrigin-Name: ba8d08b67021a32fda069c18b7eb93523e6f0d1f
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r--src/sqliteInt.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h
index 658b67ba4..c3085ffd8 100644
--- a/src/sqliteInt.h
+++ b/src/sqliteInt.h
@@ -2527,6 +2527,10 @@ struct Sqlite3Config {
void (*xLog)(void*,int,const char*); /* Function for logging */
void *pLogArg; /* First argument to xLog() */
int bLocaltimeFault; /* True to fail localtime() calls */
+#ifdef SQLITE_ENABLE_SQLLOG
+ void(*xSqllog)(void*,sqlite3*,const char*, int);
+ void *pSqllogArg;
+#endif
};
/*