Lines Matching refs:xRename
5068 int (*xRename)(sqlite3_vtab *pVtab, const char *zNew);
66226 ** This opcode invokes the corresponding xRename method. The value
66227 ** in register P1 is passed as the zName argument to the xRename method.
66237 assert( u.ck.pVtab->pModule->xRename );
66241 rc = u.ck.pVtab->pModule->xRename(u.ck.pVtab, u.ck.pName->z);
72948 VTable *pVTab = 0; /* Non-zero if this is a v-tab with an xRename() */
73008 if( pVTab->pVtab->pModule->xRename==0 ){
73026 /* If this is a virtual table, invoke the xRename() function if
73027 ** one is defined. The xRename() callback will modify the names
111693 ** Implementation of FTS3 xRename method. Rename an fts3 table.
111755 /* xRename */ fts3RenameMethod,
121908 ** The xRename method for rtree module virtual tables.
121948 rtreeRename /* xRename - rename the table */