diff options
author | danielk1977 <danielk1977@noemail.net> | 2007-06-27 16:26:07 +0000 |
---|---|---|
committer | danielk1977 <danielk1977@noemail.net> | 2007-06-27 16:26:07 +0000 |
commit | c033b64276e49807ccae8826c145eed02e2eb62b (patch) | |
tree | 7b411cd5b9f35a57061ec1a5eae67594318c6f5d /src | |
parent | 182c4ba9796639dde440a5fe0a96c0b2d0bd9bf2 (diff) | |
download | sqlite-c033b64276e49807ccae8826c145eed02e2eb62b.tar.gz sqlite-c033b64276e49807ccae8826c145eed02e2eb62b.zip |
Implement xRename() for fts2 so that it is possible to rename fts2 tables. (CVS 4143)
FossilOrigin-Name: 488474fde753c5a7a14ed8f2fad7f16efd236491
Diffstat (limited to 'src')
-rw-r--r-- | src/test_schema.c | 3 | ||||
-rw-r--r-- | src/test_tclvar.c | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/src/test_schema.c b/src/test_schema.c index b4bc4e6fa..a5aaf5b3b 100644 --- a/src/test_schema.c +++ b/src/test_schema.c @@ -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 */ }; diff --git a/src/test_tclvar.c b/src/test_tclvar.c index dcc1f7bb9..5563260a8 100644 --- a/src/test_tclvar.c +++ b/src/test_tclvar.c @@ -16,7 +16,7 @@ ** The emphasis of this file is a virtual table that provides ** access to TCL variables. ** -** $Id: test_tclvar.c,v 1.10 2006/09/11 00:34:22 drh Exp $ +** $Id: test_tclvar.c,v 1.11 2007/06/27 16:26:07 danielk1977 Exp $ */ #include "sqliteInt.h" #include "tcl.h" @@ -270,6 +270,7 @@ static sqlite3_module tclvarModule = { 0, /* xCommit */ 0, /* xRollback */ 0, /* xFindMethod */ + 0, /* xRename */ }; /* |