Home | History | Annotate | Download | only in dist

Lines Matching refs:xRename

5075   int (*xRename)(sqlite3_vtab *pVtab, const char *zNew);
66233 ** This opcode invokes the corresponding xRename method. The value
66234 ** in register P1 is passed as the zName argument to the xRename method.
66244 assert( u.ck.pVtab->pModule->xRename );
66248 rc = u.ck.pVtab->pModule->xRename(u.ck.pVtab, u.ck.pName->z);
72955 VTable *pVTab = 0; /* Non-zero if this is a v-tab with an xRename() */
73015 if( pVTab->pVtab->pModule->xRename==0 ){
73033 /* If this is a virtual table, invoke the xRename() function if
73034 ** one is defined. The xRename() callback will modify the names
111721 ** Implementation of FTS3 xRename method. Rename an fts3 table.
111783 /* xRename */ fts3RenameMethod,
121939 ** The xRename method for rtree module virtual tables.
121979 rtreeRename /* xRename - rename the table */