summaryrefslogtreecommitdiff
path: root/test/tkt-2a5629202f.test
diff options
context:
space:
mode:
Diffstat (limited to 'test/tkt-2a5629202f.test')
-rw-r--r--test/tkt-2a5629202f.test7
1 files changed, 6 insertions, 1 deletions
diff --git a/test/tkt-2a5629202f.test b/test/tkt-2a5629202f.test
index 037f100..8f09c31 100644
--- a/test/tkt-2a5629202f.test
+++ b/test/tkt-2a5629202f.test
@@ -46,6 +46,12 @@ do_execsql_test 1.3 {
SELECT coalesce(b, 'null') || '/' || c FROM t8 x ORDER BY x.b, x.c
} {null/four null/three a/one b/two}
+do_execsql_test 1.4 {
+ DROP INDEX i1;
+ CREATE UNIQUE INDEX i1 ON t8(b, c);
+ SELECT coalesce(b, 'null') || '/' || c FROM t8 x ORDER BY x.b, x.c
+} {null/four null/three a/one b/two}
+
#-------------------------------------------------------------------------
#
@@ -68,4 +74,3 @@ do_test 2.4 {
} {sort}
finish_test
-