diff options
author | dan <dan@noemail.net> | 2013-05-15 18:34:17 +0000 |
---|---|---|
committer | dan <dan@noemail.net> | 2013-05-15 18:34:17 +0000 |
commit | 11f71d6ae48679684a1e14ce4f768402bab2ed39 (patch) | |
tree | 550e61af5b1f3aa0f307570a3ca393f0e4108368 /ext/misc/fuzzer.c | |
parent | 6fdd3d8aa001c584c07096429a73d2bd8e52cb23 (diff) | |
download | sqlite-11f71d6ae48679684a1e14ce4f768402bab2ed39.tar.gz sqlite-11f71d6ae48679684a1e14ce4f768402bab2ed39.zip |
Fixes to allow testfixture to be compiled with SQLITE_OMIT_VIRTUAL_TABLE defined.
FossilOrigin-Name: 00231fb0127960d700de3549e34e82f8ec1b5819
Diffstat (limited to 'ext/misc/fuzzer.c')
-rw-r--r-- | ext/misc/fuzzer.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/misc/fuzzer.c b/ext/misc/fuzzer.c index c0c294b11..642b8f9e9 100644 --- a/ext/misc/fuzzer.c +++ b/ext/misc/fuzzer.c @@ -1166,6 +1166,8 @@ int sqlite3_fuzzer_init( ){ int rc = SQLITE_OK; SQLITE_EXTENSION_INIT2(pApi); +#ifndef SQLITE_OMIT_VIRTUALTABLE rc = sqlite3_create_module(db, "fuzzer", &fuzzerModule, 0); +#endif return rc; } |