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

Fix a problem in ALTER TABLE with SQLITE_OMIT_VIRTUALTABLE builds.

FossilOrigin-Name: fa835145e63749e06e04bd50ff992afaeae05dcdd1df597d13911f944e62076b
This commit is contained in:
dan
2018-09-06 17:47:09 +00:00
parent 7ea1edb703
commit 1041a6a817
5 changed files with 45 additions and 43 deletions

View File

@@ -482,7 +482,7 @@ static int isRealTable(Parse *pParse, Table *pTab){
#ifndef SQLITE_OMIT_VIEW
if( pTab->pSelect ){
zType = "view";
}else
}
#endif
#ifndef SQLITE_OMIT_VIRTUALTABLE
if( IsVirtual(pTab) ){