summaryrefslogtreecommitdiff
path: root/test/view.test
diff options
context:
space:
mode:
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