1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-15 11:41:13 +03:00

Fix test_stat.c so that it does not cause compilation errors if SQLITE_OMIT_VIRTUALTABLE is defined.

FossilOrigin-Name: bf4fc0888705108aab997e1cb491fc7f9c64c443
This commit is contained in:
dan
2010-07-12 18:12:41 +00:00
parent 3a0f13ff83
commit 6d3eb82bc7
4 changed files with 167 additions and 18 deletions

View File

@@ -20,6 +20,8 @@
#include "sqliteInt.h"
#ifndef SQLITE_OMIT_VIRTUALTABLE
/*
** Page paths:
**
@@ -566,6 +568,8 @@ int sqlite3_dbstat_register(sqlite3 *db){
return SQLITE_OK;
}
#endif
#ifdef SQLITE_TEST
#include <tcl.h>