aboutsummaryrefslogtreecommitdiff
path: root/test/without_rowid1.test
diff options
context:
space:
mode:
Diffstat (limited to 'test/without_rowid1.test')
-rw-r--r--test/without_rowid1.test12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/without_rowid1.test b/test/without_rowid1.test
index 644c3da94..d794420ef 100644
--- a/test/without_rowid1.test
+++ b/test/without_rowid1.test
@@ -238,7 +238,7 @@ do_execsql_test 5.0 {
do_eqp_test 5.1 {
SELECT * FROM t45 WHERE b=? AND a>?
-} {/*USING INDEX i45 (b=? AND a>?)*/}
+} {USING INDEX i45 (b=? AND a>?)}
do_execsql_test 5.2 {
SELECT * FROM t45 WHERE b='two' AND a>4
@@ -257,11 +257,11 @@ do_execsql_test 5.4 {
}
set queries {
- 1 2 "c = 5 AND a = 1" {/*i46 (c=? AND a=?)*/}
- 2 6 "c = 4 AND a < 3" {/*i46 (c=? AND a<?)*/}
- 3 4 "c = 2 AND a >= 3" {/*i46 (c=? AND a>?)*/}
- 4 1 "c = 2 AND a = 1 AND b<10" {/*i46 (c=? AND a=? AND b<?)*/}
- 5 1 "c = 0 AND a = 0 AND b>5" {/*i46 (c=? AND a=? AND b>?)*/}
+ 1 2 "c = 5 AND a = 1" {i46 (c=? AND a=?)}
+ 2 6 "c = 4 AND a < 3" {i46 (c=? AND a<?)}
+ 3 4 "c = 2 AND a >= 3" {i46 (c=? AND a>?)}
+ 4 1 "c = 2 AND a = 1 AND b<10" {i46 (c=? AND a=? AND b<?)}
+ 5 1 "c = 0 AND a = 0 AND b>5" {i46 (c=? AND a=? AND b>?)}
}
foreach {tn cnt where eqp} $queries {