Update contrib.
4 ** The author disclaims copyright to this source code. In place of
5 ** a legal notice, here is a blessing:
7 ** May you do good and not evil.
8 ** May you find forgiveness for yourself and forgive others.
9 ** May you share freely, never taking more than you give.
11 *************************************************************************
12 ** This file contains code used to help implement virtual tables.
14 ** $Id: vtab.c,v 1.76 2008/08/20 16:35:10 drh Exp $
16 #ifndef SQLITE_OMIT_VIRTUALTABLE
17 #include "sqliteInt.h"
19 static int createModule(
20 sqlite3 *db, /* Database in which module is registered */
21 const char *zName, /* Name assigned to this module */
22 const sqlite3_module *pModule, /* The definition of the module */
23 void *pAux, /* Context pointer for xCreate/xConnect */
24 void (*xDestroy)(void *) /* Module destructor function */
29 sqlite3_mutex_enter(db->mutex);
30 nName = strlen(zName);
31 pMod = (Module *)sqlite3DbMallocRaw(db, sizeof(Module) + nName + 1);
34 char *zCopy = (char *)(&pMod[1]);
35 memcpy(zCopy, zName, nName+1);
37 pMod->pModule = pModule;
39 pMod->xDestroy = xDestroy;
40 pDel = (Module *)sqlite3HashInsert(&db->aModule, zCopy, nName, (void*)pMod);
41 if( pDel && pDel->xDestroy ){
42 pDel->xDestroy(pDel->pAux);
44 sqlite3DbFree(db, pDel);
48 sqlite3ResetInternalSchema(db, 0);
50 rc = sqlite3ApiExit(db, SQLITE_OK);
51 sqlite3_mutex_leave(db->mutex);
57 ** External API function used to create a new virtual-table module.
59 SQLITE_EXPORT int sqlite3_create_module(
60 sqlite3 *db, /* Database in which module is registered */
61 const char *zName, /* Name assigned to this module */
62 const sqlite3_module *pModule, /* The definition of the module */
63 void *pAux /* Context pointer for xCreate/xConnect */
65 return createModule(db, zName, pModule, pAux, 0);
69 ** External API function used to create a new virtual-table module.
71 SQLITE_EXPORT int sqlite3_create_module_v2(
72 sqlite3 *db, /* Database in which module is registered */
73 const char *zName, /* Name assigned to this module */
74 const sqlite3_module *pModule, /* The definition of the module */
75 void *pAux, /* Context pointer for xCreate/xConnect */
76 void (*xDestroy)(void *) /* Module destructor function */
78 return createModule(db, zName, pModule, pAux, xDestroy);
82 ** Lock the virtual table so that it cannot be disconnected.
83 ** Locks nest. Every lock should have a corresponding unlock.
84 ** If an unlock is omitted, resources leaks will occur.
86 ** If a disconnect is attempted while a virtual table is locked,
87 ** the disconnect is deferred until all locks have been removed.
89 void sqlite3VtabLock(sqlite3_vtab *pVtab){
94 ** Unlock a virtual table. When the last lock is removed,
95 ** disconnect the virtual table.
97 void sqlite3VtabUnlock(sqlite3 *db, sqlite3_vtab *pVtab){
100 assert( sqlite3SafetyCheckOk(db) );
101 if( pVtab->nRef==0 ){
102 if( db->magic==SQLITE_MAGIC_BUSY ){
103 (void)sqlite3SafetyOff(db);
104 pVtab->pModule->xDisconnect(pVtab);
105 (void)sqlite3SafetyOn(db);
107 pVtab->pModule->xDisconnect(pVtab);
113 ** Clear any and all virtual-table information from the Table record.
114 ** This routine is called, for example, just before deleting the Table
117 void sqlite3VtabClear(Table *p){
118 sqlite3_vtab *pVtab = p->pVtab;
121 assert( p->pMod && p->pMod->pModule );
122 sqlite3VtabUnlock(db, pVtab);
125 if( p->azModuleArg ){
127 for(i=0; i<p->nModuleArg; i++){
128 sqlite3DbFree(db, p->azModuleArg[i]);
130 sqlite3DbFree(db, p->azModuleArg);
135 ** Add a new module argument to pTable->azModuleArg[].
136 ** The string is not copied - the pointer is stored. The
137 ** string will be freed automatically when the table is
140 static void addModuleArgument(sqlite3 *db, Table *pTable, char *zArg){
141 int i = pTable->nModuleArg++;
142 int nBytes = sizeof(char *)*(1+pTable->nModuleArg);
144 azModuleArg = sqlite3DbRealloc(db, pTable->azModuleArg, nBytes);
145 if( azModuleArg==0 ){
148 sqlite3DbFree(db, pTable->azModuleArg[j]);
150 sqlite3DbFree(db, zArg);
151 sqlite3DbFree(db, pTable->azModuleArg);
152 pTable->nModuleArg = 0;
154 azModuleArg[i] = zArg;
155 azModuleArg[i+1] = 0;
157 pTable->azModuleArg = azModuleArg;
161 ** The parser calls this routine when it first sees a CREATE VIRTUAL TABLE
162 ** statement. The module name has been parsed, but the optional list
163 ** of parameters that follow the module name are still pending.
165 void sqlite3VtabBeginParse(
166 Parse *pParse, /* Parsing context */
167 Token *pName1, /* Name of new table, or database name */
168 Token *pName2, /* Name of new table or NULL */
169 Token *pModuleName /* Name of the module for the virtual table */
171 int iDb; /* The database the table is being created in */
172 Table *pTable; /* The new virtual table */
173 sqlite3 *db; /* Database connection */
175 if( pParse->db->flags & SQLITE_SharedCache ){
176 sqlite3ErrorMsg(pParse, "Cannot use virtual tables in shared-cache mode");
180 sqlite3StartTable(pParse, pName1, pName2, 0, 0, 1, 0);
181 pTable = pParse->pNewTable;
182 if( pTable==0 || pParse->nErr ) return;
183 assert( 0==pTable->pIndex );
186 iDb = sqlite3SchemaToIndex(db, pTable->pSchema);
189 pTable->tabFlags |= TF_Virtual;
190 pTable->nModuleArg = 0;
191 addModuleArgument(db, pTable, sqlite3NameFromToken(db, pModuleName));
192 addModuleArgument(db, pTable, sqlite3DbStrDup(db, db->aDb[iDb].zName));
193 addModuleArgument(db, pTable, sqlite3DbStrDup(db, pTable->zName));
194 pParse->sNameToken.n = pModuleName->z + pModuleName->n - pName1->z;
196 #ifndef SQLITE_OMIT_AUTHORIZATION
197 /* Creating a virtual table invokes the authorization callback twice.
198 ** The first invocation, to obtain permission to INSERT a row into the
199 ** sqlite_master table, has already been made by sqlite3StartTable().
200 ** The second call, to obtain permission to create the table, is made now.
202 if( pTable->azModuleArg ){
203 sqlite3AuthCheck(pParse, SQLITE_CREATE_VTABLE, pTable->zName,
204 pTable->azModuleArg[0], pParse->db->aDb[iDb].zName);
210 ** This routine takes the module argument that has been accumulating
211 ** in pParse->zArg[] and appends it to the list of arguments on the
212 ** virtual table currently under construction in pParse->pTable.
214 static void addArgumentToVtab(Parse *pParse){
215 if( pParse->sArg.z && pParse->pNewTable ){
216 const char *z = (const char*)pParse->sArg.z;
217 int n = pParse->sArg.n;
218 sqlite3 *db = pParse->db;
219 addModuleArgument(db, pParse->pNewTable, sqlite3DbStrNDup(db, z, n));
224 ** The parser calls this routine after the CREATE VIRTUAL TABLE statement
225 ** has been completely parsed.
227 void sqlite3VtabFinishParse(Parse *pParse, Token *pEnd){
228 Table *pTab; /* The table being constructed */
229 sqlite3 *db; /* The database connection */
230 char *zModule; /* The module name of the table: USING modulename */
233 addArgumentToVtab(pParse);
236 /* Lookup the module name. */
237 pTab = pParse->pNewTable;
238 if( pTab==0 ) return;
240 if( pTab->nModuleArg<1 ) return;
241 zModule = pTab->azModuleArg[0];
242 pMod = (Module *)sqlite3HashFind(&db->aModule, zModule, strlen(zModule));
245 /* If the CREATE VIRTUAL TABLE statement is being entered for the
246 ** first time (in other words if the virtual table is actually being
247 ** created now instead of just being read out of sqlite_master) then
248 ** do additional initialization work and store the statement text
249 ** in the sqlite_master table.
251 if( !db->init.busy ){
257 /* Compute the complete text of the CREATE VIRTUAL TABLE statement */
259 pParse->sNameToken.n = pEnd->z - pParse->sNameToken.z + pEnd->n;
261 zStmt = sqlite3MPrintf(db, "CREATE VIRTUAL TABLE %T", &pParse->sNameToken);
263 /* A slot for the record has already been allocated in the
264 ** SQLITE_MASTER table. We just need to update that slot with all
265 ** the information we've collected.
267 ** The VM register number pParse->regRowid holds the rowid of an
268 ** entry in the sqlite_master table tht was created for this vtab
269 ** by sqlite3StartTable().
271 iDb = sqlite3SchemaToIndex(db, pTab->pSchema);
272 sqlite3NestedParse(pParse,
274 "SET type='table', name=%Q, tbl_name=%Q, rootpage=0, sql=%Q "
276 db->aDb[iDb].zName, SCHEMA_TABLE(iDb),
282 sqlite3DbFree(db, zStmt);
283 v = sqlite3GetVdbe(pParse);
284 sqlite3ChangeCookie(pParse, iDb);
286 sqlite3VdbeAddOp2(v, OP_Expire, 0, 0);
287 zWhere = sqlite3MPrintf(db, "name='%q'", pTab->zName);
288 sqlite3VdbeAddOp4(v, OP_ParseSchema, iDb, 1, 0, zWhere, P4_DYNAMIC);
289 sqlite3VdbeAddOp4(v, OP_VCreate, iDb, 0, 0,
290 pTab->zName, strlen(pTab->zName) + 1);
293 /* If we are rereading the sqlite_master table create the in-memory
294 ** record of the table. If the module has already been registered,
295 ** also call the xConnect method here.
299 Schema *pSchema = pTab->pSchema;
300 const char *zName = pTab->zName;
301 int nName = strlen(zName) + 1;
302 pOld = sqlite3HashInsert(&pSchema->tblHash, zName, nName, pTab);
304 db->mallocFailed = 1;
305 assert( pTab==pOld ); /* Malloc must have failed inside HashInsert() */
308 pSchema->db = pParse->db;
309 pParse->pNewTable = 0;
314 ** The parser calls this routine when it sees the first token
315 ** of an argument to the module name in a CREATE VIRTUAL TABLE statement.
317 void sqlite3VtabArgInit(Parse *pParse){
318 addArgumentToVtab(pParse);
324 ** The parser calls this routine for each token after the first token
325 ** in an argument to the module name in a CREATE VIRTUAL TABLE statement.
327 void sqlite3VtabArgExtend(Parse *pParse, Token *p){
328 Token *pArg = &pParse->sArg;
333 assert(pArg->z < p->z);
334 pArg->n = (p->z + p->n - pArg->z);
339 ** Invoke a virtual table constructor (either xCreate or xConnect). The
340 ** pointer to the function to invoke is passed as the fourth parameter
341 ** to this procedure.
343 static int vtabCallConstructor(
347 int (*xConstruct)(sqlite3*,void*,int,const char*const*,sqlite3_vtab**,char**),
352 sqlite3_vtab *pVtab = 0;
353 const char *const*azArg = (const char *const*)pTab->azModuleArg;
354 int nArg = pTab->nModuleArg;
356 char *zModuleName = sqlite3MPrintf(db, "%s", pTab->zName);
362 assert( !db->pVTab );
363 assert( xConstruct );
366 rc = sqlite3SafetyOff(db);
367 assert( rc==SQLITE_OK );
368 rc = xConstruct(db, pMod->pAux, nArg, azArg, &pVtab, &zErr);
369 rc2 = sqlite3SafetyOn(db);
370 if( rc==SQLITE_OK && pVtab ){
371 pVtab->pModule = pMod->pModule;
378 *pzErr = sqlite3MPrintf(db, "vtable constructor failed: %s", zModuleName);
380 *pzErr = sqlite3MPrintf(db, "%s", zErr);
381 sqlite3DbFree(db, zErr);
383 }else if( db->pVTab ){
384 const char *zFormat = "vtable constructor did not declare schema: %s";
385 *pzErr = sqlite3MPrintf(db, zFormat, pTab->zName);
392 sqlite3DbFree(db, zModuleName);
394 /* If everything went according to plan, loop through the columns
395 ** of the table to see if any of them contain the token "hidden".
396 ** If so, set the Column.isHidden flag and remove the token from
401 for(iCol=0; iCol<pTab->nCol; iCol++){
402 char *zType = pTab->aCol[iCol].zType;
405 if( !zType ) continue;
406 nType = strlen(zType);
407 if( sqlite3StrNICmp("hidden", zType, 6) || (zType[6] && zType[6]!=' ') ){
408 for(i=0; i<nType; i++){
409 if( (0==sqlite3StrNICmp(" hidden", &zType[i], 7))
410 && (zType[i+7]=='\0' || zType[i+7]==' ')
419 int nDel = 6 + (zType[i+6] ? 1 : 0);
420 for(j=i; (j+nDel)<=nType; j++){
421 zType[j] = zType[j+nDel];
423 if( zType[i]=='\0' && i>0 ){
424 assert(zType[i-1]==' ');
427 pTab->aCol[iCol].isHidden = 1;
435 ** This function is invoked by the parser to call the xConnect() method
436 ** of the virtual table pTab. If an error occurs, an error code is returned
437 ** and an error left in pParse.
439 ** This call is a no-op if table pTab is not a virtual table.
441 int sqlite3VtabCallConnect(Parse *pParse, Table *pTab){
445 if( !pTab || (pTab->tabFlags & TF_Virtual)==0 || pTab->pVtab ){
451 const char *zModule = pTab->azModuleArg[0];
452 sqlite3ErrorMsg(pParse, "no such module: %s", zModule);
456 sqlite3 *db = pParse->db;
457 rc = vtabCallConstructor(db, pTab, pMod, pMod->pModule->xConnect, &zErr);
459 sqlite3ErrorMsg(pParse, "%s", zErr);
461 sqlite3DbFree(db, zErr);
468 ** Add the virtual table pVtab to the array sqlite3.aVTrans[].
470 static int addToVTrans(sqlite3 *db, sqlite3_vtab *pVtab){
471 const int ARRAY_INCR = 5;
473 /* Grow the sqlite3.aVTrans array if required */
474 if( (db->nVTrans%ARRAY_INCR)==0 ){
475 sqlite3_vtab **aVTrans;
476 int nBytes = sizeof(sqlite3_vtab *) * (db->nVTrans + ARRAY_INCR);
477 aVTrans = sqlite3DbRealloc(db, (void *)db->aVTrans, nBytes);
481 memset(&aVTrans[db->nVTrans], 0, sizeof(sqlite3_vtab *)*ARRAY_INCR);
482 db->aVTrans = aVTrans;
485 /* Add pVtab to the end of sqlite3.aVTrans */
486 db->aVTrans[db->nVTrans++] = pVtab;
487 sqlite3VtabLock(pVtab);
492 ** This function is invoked by the vdbe to call the xCreate method
493 ** of the virtual table named zTab in database iDb.
495 ** If an error occurs, *pzErr is set to point an an English language
496 ** description of the error and an SQLITE_XXX error code is returned.
497 ** In this case the caller must call sqlite3DbFree(db, ) on *pzErr.
499 int sqlite3VtabCallCreate(sqlite3 *db, int iDb, const char *zTab, char **pzErr){
505 pTab = sqlite3FindTable(db, zTab, db->aDb[iDb].zName);
506 assert(pTab && (pTab->tabFlags & TF_Virtual)!=0 && !pTab->pVtab);
508 zModule = pTab->azModuleArg[0];
510 /* If the module has been registered and includes a Create method,
511 ** invoke it now. If the module has not been registered, return an
512 ** error. Otherwise, do nothing.
515 *pzErr = sqlite3MPrintf(db, "no such module: %s", zModule);
518 rc = vtabCallConstructor(db, pTab, pMod, pMod->pModule->xCreate, pzErr);
521 if( rc==SQLITE_OK && pTab->pVtab ){
522 rc = addToVTrans(db, pTab->pVtab);
529 ** This function is used to set the schema of a virtual table. It is only
530 ** valid to call this function from within the xCreate() or xConnect() of a
531 ** virtual table module.
533 SQLITE_EXPORT int sqlite3_declare_vtab(sqlite3 *db, const char *zCreateTable){
540 sqlite3_mutex_enter(db->mutex);
543 sqlite3Error(db, SQLITE_MISUSE, 0);
544 sqlite3_mutex_leave(db->mutex);
545 return SQLITE_MISUSE;
547 assert((pTab->tabFlags & TF_Virtual)!=0 && pTab->nCol==0 && pTab->aCol==0);
549 memset(&sParse, 0, sizeof(Parse));
550 sParse.declareVtab = 1;
554 SQLITE_OK == sqlite3RunParser(&sParse, zCreateTable, &zErr) &&
556 !sParse.pNewTable->pSelect &&
557 (sParse.pNewTable->tabFlags & TF_Virtual)==0
559 pTab->aCol = sParse.pNewTable->aCol;
560 pTab->nCol = sParse.pNewTable->nCol;
561 sParse.pNewTable->nCol = 0;
562 sParse.pNewTable->aCol = 0;
565 sqlite3Error(db, SQLITE_ERROR, zErr);
566 sqlite3DbFree(db, zErr);
569 sParse.declareVtab = 0;
571 sqlite3_finalize((sqlite3_stmt*)sParse.pVdbe);
572 sqlite3DeleteTable(sParse.pNewTable);
573 sParse.pNewTable = 0;
575 assert( (rc&0xff)==rc );
576 rc = sqlite3ApiExit(db, rc);
577 sqlite3_mutex_leave(db->mutex);
582 ** This function is invoked by the vdbe to call the xDestroy method
583 ** of the virtual table named zTab in database iDb. This occurs
584 ** when a DROP TABLE is mentioned.
586 ** This call is a no-op if zTab is not a virtual table.
588 int sqlite3VtabCallDestroy(sqlite3 *db, int iDb, const char *zTab)
593 pTab = sqlite3FindTable(db, zTab, db->aDb[iDb].zName);
596 int (*xDestroy)(sqlite3_vtab *pVTab) = pTab->pMod->pModule->xDestroy;
597 rc = sqlite3SafetyOff(db);
598 assert( rc==SQLITE_OK );
600 rc = xDestroy(pTab->pVtab);
602 (void)sqlite3SafetyOn(db);
605 for(i=0; i<db->nVTrans; i++){
606 if( db->aVTrans[i]==pTab->pVtab ){
607 db->aVTrans[i] = db->aVTrans[--db->nVTrans];
619 ** This function invokes either the xRollback or xCommit method
620 ** of each of the virtual tables in the sqlite3.aVTrans array. The method
621 ** called is identified by the second argument, "offset", which is
622 ** the offset of the method to call in the sqlite3_module structure.
624 ** The array is cleared after invoking the callbacks.
626 static void callFinaliser(sqlite3 *db, int offset){
629 for(i=0; i<db->nVTrans && db->aVTrans[i]; i++){
630 sqlite3_vtab *pVtab = db->aVTrans[i];
631 int (*x)(sqlite3_vtab *);
632 x = *(int (**)(sqlite3_vtab *))((char *)pVtab->pModule + offset);
634 sqlite3VtabUnlock(db, pVtab);
636 sqlite3DbFree(db, db->aVTrans);
643 ** Invoke the xSync method of all virtual tables in the sqlite3.aVTrans
644 ** array. Return the error code for the first error that occurs, or
645 ** SQLITE_OK if all xSync operations are successful.
647 ** Set *pzErrmsg to point to a buffer that should be released using
648 ** sqlite3DbFree() containing an error message, if one is available.
650 int sqlite3VtabSync(sqlite3 *db, char **pzErrmsg){
654 sqlite3_vtab **aVTrans = db->aVTrans;
656 rc = sqlite3SafetyOff(db);
658 for(i=0; rc==SQLITE_OK && i<db->nVTrans && aVTrans[i]; i++){
659 sqlite3_vtab *pVtab = aVTrans[i];
660 int (*x)(sqlite3_vtab *);
661 x = pVtab->pModule->xSync;
664 sqlite3DbFree(db, *pzErrmsg);
665 *pzErrmsg = pVtab->zErrMsg;
669 db->aVTrans = aVTrans;
670 rcsafety = sqlite3SafetyOn(db);
679 ** Invoke the xRollback method of all virtual tables in the
680 ** sqlite3.aVTrans array. Then clear the array itself.
682 int sqlite3VtabRollback(sqlite3 *db){
683 callFinaliser(db, offsetof(sqlite3_module,xRollback));
688 ** Invoke the xCommit method of all virtual tables in the
689 ** sqlite3.aVTrans array. Then clear the array itself.
691 int sqlite3VtabCommit(sqlite3 *db){
692 callFinaliser(db, offsetof(sqlite3_module,xCommit));
697 ** If the virtual table pVtab supports the transaction interface
698 ** (xBegin/xRollback/xCommit and optionally xSync) and a transaction is
699 ** not currently open, invoke the xBegin method now.
701 ** If the xBegin call is successful, place the sqlite3_vtab pointer
702 ** in the sqlite3.aVTrans array.
704 int sqlite3VtabBegin(sqlite3 *db, sqlite3_vtab *pVtab){
706 const sqlite3_module *pModule;
708 /* Special case: If db->aVTrans is NULL and db->nVTrans is greater
709 ** than zero, then this function is being called from within a
710 ** virtual module xSync() callback. It is illegal to write to
711 ** virtual module tables in this case, so return SQLITE_LOCKED.
713 if( 0==db->aVTrans && db->nVTrans>0 ){
714 return SQLITE_LOCKED;
719 pModule = pVtab->pModule;
721 if( pModule->xBegin ){
725 /* If pVtab is already in the aVTrans array, return early */
726 for(i=0; (i<db->nVTrans) && 0!=db->aVTrans[i]; i++){
727 if( db->aVTrans[i]==pVtab ){
732 /* Invoke the xBegin method */
733 rc = pModule->xBegin(pVtab);
735 rc = addToVTrans(db, pVtab);
742 ** The first parameter (pDef) is a function implementation. The
743 ** second parameter (pExpr) is the first argument to this function.
744 ** If pExpr is a column in a virtual table, then let the virtual
745 ** table implementation have an opportunity to overload the function.
747 ** This routine is used to allow virtual table implementations to
748 ** overload MATCH, LIKE, GLOB, and REGEXP operators.
750 ** Return either the pDef argument (indicating no change) or a
751 ** new FuncDef structure that is marked as ephemeral using the
752 ** SQLITE_FUNC_EPHEM flag.
754 FuncDef *sqlite3VtabOverloadFunction(
755 sqlite3 *db, /* Database connection for reporting malloc problems */
756 FuncDef *pDef, /* Function to possibly overload */
757 int nArg, /* Number of arguments to the function */
758 Expr *pExpr /* First argument to the function */
762 sqlite3_module *pMod;
763 void (*xFunc)(sqlite3_context*,int,sqlite3_value**);
771 /* Check to see the left operand is a column in a virtual table */
772 if( pExpr==0 ) return pDef;
773 if( pExpr->op!=TK_COLUMN ) return pDef;
775 if( pTab==0 ) return pDef;
776 if( (pTab->tabFlags & TF_Virtual)==0 ) return pDef;
779 assert( pVtab->pModule!=0 );
780 pMod = (sqlite3_module *)pVtab->pModule;
781 if( pMod->xFindFunction==0 ) return pDef;
783 /* Call the xFindFunction method on the virtual table implementation
784 ** to see if the implementation wants to overload this function
786 zLowerName = sqlite3DbStrDup(db, pDef->zName);
788 for(z=(unsigned char*)zLowerName; *z; z++){
789 *z = sqlite3UpperToLower[*z];
791 rc = pMod->xFindFunction(pVtab, nArg, zLowerName, &xFunc, &pArg);
792 sqlite3DbFree(db, zLowerName);
793 if( pVtab->zErrMsg ){
794 sqlite3Error(db, rc, "%s", pVtab->zErrMsg);
795 sqlite3DbFree(db, pVtab->zErrMsg);
803 /* Create a new ephemeral function definition for the overloaded
805 pNew = sqlite3DbMallocZero(db, sizeof(*pNew) + strlen(pDef->zName) );
810 pNew->zName = (char *)&pNew[1];
811 memcpy(pNew->zName, pDef->zName, strlen(pDef->zName)+1);
813 pNew->pUserData = pArg;
814 pNew->flags |= SQLITE_FUNC_EPHEM;
819 ** Make sure virtual table pTab is contained in the pParse->apVirtualLock[]
820 ** array so that an OP_VBegin will get generated for it. Add pTab to the
821 ** array if it is missing. If pTab is already in the array, this routine
824 void sqlite3VtabMakeWritable(Parse *pParse, Table *pTab){
826 assert( IsVirtual(pTab) );
827 for(i=0; i<pParse->nVtabLock; i++){
828 if( pTab==pParse->apVtabLock[i] ) return;
830 n = (pParse->nVtabLock+1)*sizeof(pParse->apVtabLock[0]);
831 pParse->apVtabLock = sqlite3_realloc(pParse->apVtabLock, n);
832 if( pParse->apVtabLock ){
833 pParse->apVtabLock[pParse->nVtabLock++] = pTab;
835 pParse->db->mallocFailed = 1;
839 #endif /* SQLITE_OMIT_VIRTUALTABLE */