1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-08 14:02:16 +03:00

Add tests to improve coverage of vtab.c. (CVS 3291)

FossilOrigin-Name: 0c5f4ee39cb76747cf01398867fed2c7ae3edc84
This commit is contained in:
danielk1977
2006-06-24 09:34:22 +00:00
parent 33b3933c15
commit 5017dc387d
6 changed files with 87 additions and 19 deletions

View File

@@ -11,7 +11,7 @@
*************************************************************************
** This file contains code used to help implement virtual tables.
**
** $Id: vtab.c,v 1.23 2006/06/24 08:51:05 danielk1977 Exp $
** $Id: vtab.c,v 1.24 2006/06/24 09:34:23 danielk1977 Exp $
*/
#ifndef SQLITE_OMIT_VIRTUALTABLE
#include "sqliteInt.h"
@@ -178,9 +178,6 @@ void sqlite3VtabFinishParse(Parse *pParse, Token *pEnd){
char *zWhere;
int iDb;
Vdbe *v;
if( !pMod ){
sqlite3ErrorMsg(pParse, "no such module: %s", zModule);
}
/* Compute the complete text of the CREATE VIRTUAL TABLE statement */
if( pEnd ){