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

Unified Diff: third_party/sqlite/test/tkt3357.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/tkt3346.test ('k') | third_party/sqlite/test/tkt3419.test » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/sqlite/test/tkt3357.test
===================================================================
--- third_party/sqlite/test/tkt3357.test (revision 56608)
+++ third_party/sqlite/test/tkt3357.test (working copy)
@@ -1,64 +0,0 @@
-# 2008 September 1
-#
-# The author disclaims copyright to this source code. In place of
-# a legal notice, here is a blessing:
-#
-# May you do good and not evil.
-# May you find forgiveness for yourself and forgive others.
-# May you share freely, never taking more than you give.
-#
-#***********************************************************************
-#
-# This file implements regression tests for SQLite library. The
-# focus of this file is testing the fix for ticket #3357.
-#
-# $Id: tkt3357.test,v 1.2 2009/06/05 17:09:12 drh Exp $
-
-set testdir [file dirname $argv0]
-source $testdir/tester.tcl
-
-do_test tkt3357-1.1 {
- execsql {
- create table a(id integer primary key, b_id integer, myvalue varchar);
- create table b(id integer primary key, bvalue varchar);
- insert into a(b_id, myvalue) values(1,'Test');
- insert into a(b_id, myvalue) values(1,'Test2');
- insert into a(b_id, myvalue) values(1,'Test3');
- insert into b(bvalue) values('btest');
- }
-} {}
-
-do_test tkt3357-1.2 {
- execsql {
- SELECT cc.id, cc.b_id, cc.myvalue, dd.bvalue
- FROM (
- SELECT DISTINCT a.id, a.b_id, a.myvalue FROM a
- INNER JOIN b ON a.b_id = b.id WHERE b.bvalue = 'btest'
- ) cc
- LEFT OUTER JOIN b dd ON cc.b_id = dd.id
- }
-} {1 1 Test btest 2 1 Test2 btest 3 1 Test3 btest}
-
-do_test tkt3357-1.3 {
- execsql {
- SELECT cc.id, cc.b_id, cc.myvalue
- FROM (
- SELECT a.id, a.b_id, a.myvalue
- FROM a, b WHERE a.b_id = b.id
- ) cc
- LEFT OUTER JOIN b dd ON cc.b_id = dd.id
- }
-} {1 1 Test 2 1 Test2 3 1 Test3}
-
-do_test tkt3357-1.4 {
- execsql {
- SELECT cc.id, cc.b_id, cc.myvalue
- FROM (
- SELECT DISTINCT a.id, a.b_id, a.myvalue
- FROM a, b WHERE a.b_id = b.id
- ) cc
- LEFT OUTER JOIN b dd ON cc.b_id = dd.id
- }
-} {1 1 Test 2 1 Test2 3 1 Test3}
-
-finish_test
« no previous file with comments | « third_party/sqlite/test/tkt3346.test ('k') | third_party/sqlite/test/tkt3419.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698