diff options
author | drh <drh@noemail.net> | 2017-08-10 17:53:11 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2017-08-10 17:53:11 +0000 |
commit | 4dd176eaabd42f2bc06a49f8119da7960308f9df (patch) | |
tree | 6989378f919d6579fc30727a8f72e916b18d0d0e /test/vtabH.test | |
parent | e3740f272bf8fc7439d64e211c3093ff55a8c21c (diff) | |
download | sqlite-4dd176eaabd42f2bc06a49f8119da7960308f9df.tar.gz sqlite-4dd176eaabd42f2bc06a49f8119da7960308f9df.zip |
Test case for writing to a WITHOUT ROWID virtual table. The TCLVAR virtual
table is modified to add a "fullname" column which is the primary key, and
to accept update operations against the primary key.
FossilOrigin-Name: 6997e00c3221f266f4d9187501d8a9e5bafb85551e88a744cdc8ffe3b75ec2a4
Diffstat (limited to 'test/vtabH.test')
-rw-r--r-- | test/vtabH.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/vtabH.test b/test/vtabH.test index 2ebc3f9cc..56c12544f 100644 --- a/test/vtabH.test +++ b/test/vtabH.test @@ -55,7 +55,7 @@ register_tclvar_module db set ::xyz 10 do_execsql_test 2.0 { CREATE VIRTUAL TABLE vars USING tclvar; - SELECT * FROM vars WHERE name = 'xyz'; + SELECT name, arrayname, value FROM vars WHERE name = 'xyz'; } {xyz {} 10} set x1 aback |