summaryrefslogtreecommitdiff
path: root/test/view.test
diff options
context:
space:
mode:
authorHans-Christoph Steiner <hans@eds.org>2014-10-16 22:51:35 -0400
committerHans-Christoph Steiner <hans@eds.org>2014-10-16 22:51:35 -0400
commit569c6676a6ddb0ff73821d7693b5e18ddef809b9 (patch)
tree833538da7bba39105daff45e265aef386a200acd /test/view.test
parent08119c361d1181b3e8f1abb429236e488a664753 (diff)
Imported Upstream version 3.2.0upstream
Diffstat (limited to 'test/view.test')
-rw-r--r--test/view.test13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/view.test b/test/view.test
index 779f77b..3ba6c0b 100644
--- a/test/view.test
+++ b/test/view.test
@@ -611,4 +611,17 @@ ifcapable progress {
} {1 interrupted}
}
+db close
+sqlite3 db :memory:
+do_execsql_test view-22.1 {
+ CREATE VIEW x1 AS SELECT 123 AS '', 234 AS '', 345 AS '';
+ SELECT * FROM x1;
+} {123 234 345}
+do_test view-22.2 {
+ unset -nocomplain x
+ db eval {SELECT * FROM x1} x break
+ lsort [array names x]
+} {{} * :1 :2}
+
+
finish_test