aboutsummaryrefslogtreecommitdiff
path: root/src/build.c
diff options
context:
space:
mode:
authordanielk1977 <danielk1977@noemail.net>2006-06-21 12:36:25 +0000
committerdanielk1977 <danielk1977@noemail.net>2006-06-21 12:36:25 +0000
commit5ee9d6977f475a1de1d59ceea60bd84d9f49bcfa (patch)
treec902b2f7a3fb935ddf5edc93255b67f88a637b9d /src/build.c
parent9d1b2a28f82a4406dee245ece668f0243bdbd86e (diff)
downloadsqlite-5ee9d6977f475a1de1d59ceea60bd84d9f49bcfa.tar.gz
sqlite-5ee9d6977f475a1de1d59ceea60bd84d9f49bcfa.zip
Add tests to make sure altering or adding an index to a virtual table is prohibited. (CVS 3280)
FossilOrigin-Name: 6c3e8852ffbaf5ab52ffdf7ed3767fa1d4fd5882
Diffstat (limited to 'src/build.c')
-rw-r--r--src/build.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/build.c b/src/build.c
index 84464bfbf..df9015ff3 100644
--- a/src/build.c
+++ b/src/build.c
@@ -22,7 +22,7 @@
** COMMIT
** ROLLBACK
**
-** $Id: build.c,v 1.406 2006/06/21 07:34:11 danielk1977 Exp $
+** $Id: build.c,v 1.407 2006/06/21 12:36:25 danielk1977 Exp $
*/
#include "sqliteInt.h"
#include <ctype.h>
@@ -2304,6 +2304,12 @@ void sqlite3CreateIndex(
goto exit_create_index;
}
#endif
+#ifndef SQLITE_OMIT_VIRTUALTABLE
+ if( IsVirtual(pTab) ){
+ sqlite3ErrorMsg(pParse, "virtual tables may not be indexed");
+ goto exit_create_index;
+ }
+#endif
/*
** Find the name of the index. Make sure there is not already another