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

Side by Side Diff: third_party/sqlite/src/test/tkt-91e2e8ba6f.test

Issue 901033002: Import SQLite 3.8.7.4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Chromium changes to support SQLite 3.8.7.4. Created 5 years, 10 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 unified diff | Download patch
OLDNEW
1 # 2011 June 23 1 # 2011 June 23
2 # 2 #
3 # May you do good and not evil. 3 # May you do good and not evil.
4 # May you find forgiveness for yourself and forgive others. 4 # May you find forgiveness for yourself and forgive others.
5 # May you share freely, never taking more than you give. 5 # May you share freely, never taking more than you give.
6 # 6 #
7 #*********************************************************************** 7 #***********************************************************************
8 # 8 #
9 # This file contains tests for SQLite. Specifically, it tests that SQLite 9 # This file contains tests for SQLite. Specifically, it tests that SQLite
10 # does not crash and an error is returned if localhost() fails. This 10 # does not crash and an error is returned if localhost() fails. This
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 (SELECT * FROM t1 LIMIT 5 OFFSET 0) AS a, t1 AS b WHERE a.x = b.x 43 (SELECT * FROM t1 LIMIT 5 OFFSET 0) AS a, t1 AS b WHERE a.x = b.x
44 LIMIT 5 OFFSET 0; 44 LIMIT 5 OFFSET 0;
45 } {1 1.1} 45 } {1 1.1}
46 46
47 do_execsql_test 1.7 { 47 do_execsql_test 1.7 {
48 CREATE VIEW v1 AS SELECT * FROM t1 LIMIT 5; 48 CREATE VIEW v1 AS SELECT * FROM t1 LIMIT 5;
49 SELECT a.x/10, a.y/10 FROM v1 AS a, t1 AS b WHERE a.x = b.x LIMIT 5 OFFSET 0; 49 SELECT a.x/10, a.y/10 FROM v1 AS a, t1 AS b WHERE a.x = b.x LIMIT 5 OFFSET 0;
50 } {1 1.1} 50 } {1 1.1}
51 51
52 finish_test 52 finish_test
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698