1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-05 15:55:57 +03:00

Implement xRename() for fts2 so that it is possible to rename fts2 tables. (CVS 4143)

FossilOrigin-Name: 488474fde753c5a7a14ed8f2fad7f16efd236491
This commit is contained in:
danielk1977
2007-06-27 16:26:07 +00:00
parent 182c4ba979
commit c033b64276
6 changed files with 57 additions and 13 deletions

View File

@@ -13,7 +13,7 @@
** is not included in the SQLite library. It is used for automated
** testing of the SQLite library.
**
** $Id: test_schema.c,v 1.11 2006/09/11 00:34:22 drh Exp $
** $Id: test_schema.c,v 1.12 2007/06/27 16:26:07 danielk1977 Exp $
*/
/* The code in this file defines a sqlite3 virtual-table module that
@@ -288,6 +288,7 @@ static sqlite3_module schemaModule = {
0, /* xCommit */
0, /* xRollback */
0, /* xFindMethod */
0, /* xRename */
};