Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(176)

Unified Diff: third_party/sqlite/src/ext/rtree/rtree6.test

Issue 5626002: Update sqlite to 3.7.3. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/third_party/sqlite/src
Patch Set: Remove misc change. Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/sqlite/src/ext/rtree/rtree5.test ('k') | third_party/sqlite/src/ext/rtree/rtree7.test » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/sqlite/src/ext/rtree/rtree6.test
diff --git a/third_party/sqlite/src/ext/rtree/rtree6.test b/third_party/sqlite/src/ext/rtree/rtree6.test
index affa8fe127270313301870149f4d3c0c64bf7c62..0a65c15f50f675d88190be53409933c0eb16f24e 100644
--- a/third_party/sqlite/src/ext/rtree/rtree6.test
+++ b/third_party/sqlite/src/ext/rtree/rtree6.test
@@ -8,12 +8,11 @@
# May you share freely, never taking more than you give.
#
#***********************************************************************
-#
-# $Id: rtree6.test,v 1.1 2008/09/01 12:47:00 danielk1977 Exp $
+#
#
if {![info exists testdir]} {
- set testdir [file join [file dirname $argv0] .. .. test]
+ set testdir [file join [file dirname [info script]] .. .. test]
}
source $testdir/tester.tcl
@@ -89,8 +88,8 @@ do_test rtree6.2.2 {
do_test rtree6.2.3 {
query_plan {SELECT * FROM t1,t2 WHERE k=ii}
} [list \
- {TABLE t2} \
- {TABLE t1 VIRTUAL TABLE INDEX 1:} \
+ {TABLE t1 VIRTUAL TABLE INDEX 2:} \
+ {TABLE t2 USING PRIMARY KEY} \
]
do_test rtree6.2.4 {
@@ -103,9 +102,8 @@ do_test rtree6.2.4 {
do_test rtree6.2.5 {
query_plan {SELECT * FROM t1,t2 WHERE k=ii AND x1<v}
} [list \
- {TABLE t2} \
- {TABLE t1 VIRTUAL TABLE INDEX 1:} \
+ {TABLE t1 VIRTUAL TABLE INDEX 2:} \
+ {TABLE t2 USING PRIMARY KEY} \
]
finish_test
-
« no previous file with comments | « third_party/sqlite/src/ext/rtree/rtree5.test ('k') | third_party/sqlite/src/ext/rtree/rtree7.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698