aboutsummaryrefslogtreecommitdiff
path: root/src/test_devsym.c
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2010-04-26 00:04:55 +0000
committerdrh <drh@noemail.net>2010-04-26 00:04:55 +0000
commitf2424c521bea90fe4c333690a1a7d71554e864fd (patch)
tree50b5b95b83ec401608bee45176534cd26e406905 /src/test_devsym.c
parent56d95913ebec66dd9d192905f1d08159ae68e32b (diff)
downloadsqlite-f2424c521bea90fe4c333690a1a7d71554e864fd.tar.gz
sqlite-f2424c521bea90fe4c333690a1a7d71554e864fd.zip
Begin moving WAL-specific I/O into the VFS. This checkin contains VFS
infrastructure but it is untested and is not yet hooked up to the WAL. The version number is bumped to 3.7.0 because of the VFS extension. FossilOrigin-Name: f5e615c28c7035a7e6d896790b51cf9bc7371d5f
Diffstat (limited to 'src/test_devsym.c')
-rw-r--r--src/test_devsym.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/test_devsym.c b/src/test_devsym.c
index 9617e63af..4249573aa 100644
--- a/src/test_devsym.c
+++ b/src/test_devsym.c
@@ -92,7 +92,16 @@ static sqlite3_vfs devsym_vfs = {
#endif /* SQLITE_OMIT_LOAD_EXTENSION */
devsymRandomness, /* xRandomness */
devsymSleep, /* xSleep */
- devsymCurrentTime /* xCurrentTime */
+ devsymCurrentTime, /* xCurrentTime */
+ 0, /* xShmOpen */
+ 0, /* xShmSize */
+ 0, /* xShmPush */
+ 0, /* xShmPull */
+ 0, /* xShmLock */
+ 0, /* xShmClose */
+ 0, /* xShmDelete */
+ 0, /* xRename */
+ 0 /* xCurrentTimeInt64 */
};
static sqlite3_io_methods devsym_io_methods = {