aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/test_schema.c3
-rw-r--r--src/test_tclvar.c3
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 */
};
/*