diff options
author | drh <drh@noemail.net> | 2015-08-29 17:22:33 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2015-08-29 17:22:33 +0000 |
commit | d29759288e1e744b42601aefb29ea120ae4d38e1 (patch) | |
tree | 2cfb26d50a65e779cefd932de120212330e2532a /src | |
parent | d1f0068d190a8d0de786033fa2618eb0d504ec42 (diff) | |
download | sqlite-d29759288e1e744b42601aefb29ea120ae4d38e1.tar.gz sqlite-d29759288e1e744b42601aefb29ea120ae4d38e1.zip |
Fix the build with -DSQLITE_OMIT_VIRTUALTABLE.
FossilOrigin-Name: 752918def7231f7846b3e985c9953a1cc825ab6b
Diffstat (limited to 'src')
-rw-r--r-- | src/build.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/build.c b/src/build.c index 0960d0cbd..e7b8b2315 100644 --- a/src/build.c +++ b/src/build.c @@ -356,7 +356,7 @@ Table *sqlite3LocateTable( p = sqlite3FindTable(pParse->db, zName, zDbase); if( p==0 ){ const char *zMsg = isView ? "no such view" : "no such table"; -#ifndef SQLITE_OMIT_VIRTUAL_TABLE +#ifndef SQLITE_OMIT_VIRTUALTABLE /* If zName is the not the name of a table in the schema created using ** CREATE, then check to see if it is the name of an virtual table that ** can be an eponymous virtual table. */ |