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_tclvar.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_tclvar.c')
-rw-r--r-- | src/test_tclvar.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/test_tclvar.c b/src/test_tclvar.c index ba233d15a..025bc9026 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.6 2006/06/27 12:25:00 danielk1977 Exp $ +** $Id: test_tclvar.c,v 1.7 2006/07/08 17:06:44 drh Exp $ */ #include "sqliteInt.h" #include "tcl.h" @@ -267,7 +267,8 @@ static sqlite3_module tclvarModule = { 0, /* xBegin */ 0, /* xSync */ 0, /* xCommit */ - 0 /* xRollback */ + 0, /* xRollback */ + 0, /* xFindMethod */ }; /* |