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

Unified Diff: third_party/sqlite/test/tkt3871.test

Issue 3108030: Move bundled copy of sqlite one level deeper to better separate it... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years, 4 months 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/test/tkt3841.test ('k') | third_party/sqlite/test/tkt3879.test » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/sqlite/test/tkt3871.test
===================================================================
--- third_party/sqlite/test/tkt3871.test (revision 56608)
+++ third_party/sqlite/test/tkt3871.test (working copy)
@@ -1,53 +0,0 @@
-
-set testdir [file dirname $argv0]
-source $testdir/tester.tcl
-
-ifcapable !vtab {
- finish_test
- return
-}
-
-register_echo_module [sqlite3_connection_pointer db]
-
-do_test tkt3871-1.1 {
- execsql {
- BEGIN;
- CREATE TABLE t1(a PRIMARY KEY, b UNIQUE);
- }
- for {set i 0} {$i < 500} {incr i} {
- execsql { INSERT INTO t1 VALUES($i, $i*$i) }
- }
- execsql COMMIT
- execsql {
- CREATE VIRTUAL TABLE e USING echo(t1);
- SELECT count(*) FROM e;
- }
-} {500}
-
-do_test tkt3871-1.2 {
- execsql { SELECT * FROM e WHERE a = 1 OR a = 2 }
-} {1 1 2 4}
-do_test tkt3871-1.3 {
- set echo_module ""
- execsql { SELECT * FROM e WHERE a = 1 OR a = 2 }
- set echo_module
-} [list \
- xFilter {SELECT rowid, * FROM 't1' WHERE a = ?} 1 \
- xFilter {SELECT rowid, * FROM 't1' WHERE a = ?} 2 \
-]
-
-do_test tkt3871-1.4 {
- execsql { SELECT * FROM e WHERE a = 1 OR a = 2 OR b = 9 }
-} {1 1 2 4 3 9}
-do_test tkt3871-1.5 {
- set echo_module ""
- execsql { SELECT * FROM e WHERE a = 1 OR a = 2 OR b = 9 }
- set echo_module
-} [list \
- xFilter {SELECT rowid, * FROM 't1' WHERE a = ?} 1 \
- xFilter {SELECT rowid, * FROM 't1' WHERE a = ?} 2 \
- xFilter {SELECT rowid, * FROM 't1' WHERE b = ?} 9
-]
-
-
-finish_test
« no previous file with comments | « third_party/sqlite/test/tkt3841.test ('k') | third_party/sqlite/test/tkt3879.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698