aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordan <dan@noemail.net>2018-09-06 17:47:09 +0000
committerdan <dan@noemail.net>2018-09-06 17:47:09 +0000
commit1041a6a81738e3304e242bec1136e76c5fbb88d4 (patch)
treec887a9903fbd40f3ba15f0b30981b9cac1daeed0 /src
parent7ea1edb70363bf5afd7773f1ba2fe55863e09fae (diff)
downloadsqlite-1041a6a81738e3304e242bec1136e76c5fbb88d4.tar.gz
sqlite-1041a6a81738e3304e242bec1136e76c5fbb88d4.zip
Fix a problem in ALTER TABLE with SQLITE_OMIT_VIRTUALTABLE builds.
FossilOrigin-Name: fa835145e63749e06e04bd50ff992afaeae05dcdd1df597d13911f944e62076b
Diffstat (limited to 'src')
-rw-r--r--src/alter.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/alter.c b/src/alter.c
index e748b652d..9bf310f88 100644
--- a/src/alter.c
+++ b/src/alter.c
@@ -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) ){