diff options
author | drh <drh@noemail.net> | 2006-06-13 23:51:34 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2006-06-13 23:51:34 +0000 |
commit | 4be8b51ee19b19ee837cec8e79a4faec90994af7 (patch) | |
tree | 84222b4b34038c828690782f3575b20f28b90903 /src/vtab.c | |
parent | 88897a72e98ede8c4a90e0dede1ad3cf476ec470 (diff) | |
download | sqlite-4be8b51ee19b19ee837cec8e79a4faec90994af7.tar.gz sqlite-4be8b51ee19b19ee837cec8e79a4faec90994af7.zip |
The echo module test is now running. Added the tclvar module test but have
not yet done anything with it. (CVS 3234)
FossilOrigin-Name: 29199eeea4c46168ccaa7535d4941bd740479dee
Diffstat (limited to 'src/vtab.c')
-rw-r--r-- | src/vtab.c | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/src/vtab.c b/src/vtab.c index f717831ff..30bff3267 100644 --- a/src/vtab.c +++ b/src/vtab.c @@ -11,7 +11,7 @@ ************************************************************************* ** This file contains code used to help implement virtual tables. ** -** $Id: vtab.c,v 1.7 2006/06/13 15:00:55 danielk1977 Exp $ +** $Id: vtab.c,v 1.8 2006/06/13 23:51:35 drh Exp $ */ #ifndef SQLITE_OMIT_VIRTUALTABLE #include "sqliteInt.h" @@ -277,16 +277,6 @@ int sqlite3VtabCallConnect(Parse *pParse, Table *pTab){ return rc; } -/* -** Resize pInfo->zPlan to nBytes bytes using realloc(). Set pInfo->nPlan -** to nBytes and return a pointer to the allocated memory. -*/ -char *sqlite3_allocate_queryplan(sqlite3_index_info *pInfo, int nBytes){ - pInfo->nPlan = nBytes; - sqlite3ReallocOrFree(&pInfo->zPlan, nBytes); - return pInfo->zPlan; -} - /* ** This function is used to set the schema of a virtual table. It is only |