diff options
author | drh <drh@noemail.net> | 2006-07-08 17:06:43 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2006-07-08 17:06:43 +0000 |
commit | b7f6f68f3a161bdea15b435a1e6666e33f7865b2 (patch) | |
tree | c9a707e93523b2526e14e61d8c34962cf11ef312 /src/test_schema.c | |
parent | 4144905b531ccf12ee33a62a2f6de1331908a11d (diff) | |
download | sqlite-b7f6f68f3a161bdea15b435a1e6666e33f7865b2.tar.gz sqlite-b7f6f68f3a161bdea15b435a1e6666e33f7865b2.zip |
Allow virtual table implementations to overload function that use
a column of the virtual table as their first argument. Untested. (CVS 3322)
FossilOrigin-Name: 12cc7af4b6b8b4f1a43d962fbafde8cba683a907
Diffstat (limited to 'src/test_schema.c')
-rw-r--r-- | src/test_schema.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/test_schema.c b/src/test_schema.c index 17818aea0..bd9083987 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.8 2006/06/26 19:10:32 drh Exp $ +** $Id: test_schema.c,v 1.9 2006/07/08 17:06:44 drh Exp $ */ /* The code in this file defines a sqlite3 virtual-table module that @@ -281,6 +281,12 @@ static sqlite3_module schemaModule = { schemaEof, /* xEof */ schemaColumn, /* xColumn - read data */ schemaRowid, /* xRowid - read data */ + 0, /* xUpdate */ + 0, /* xBegin */ + 0, /* xSync */ + 0, /* xCommit */ + 0, /* xRollback */ + 0, /* xFindMethod */ }; |