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/test_schema.c | |
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/test_schema.c')
-rw-r--r-- | src/test_schema.c | 3 |
1 files changed, 2 insertions, 1 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 */ }; |