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

Unified Diff: third_party/sqlite/sqlite-src-3080704/test/collate9.test

Issue 2363173002: [sqlite] Remove obsolete reference version 3.8.7.4. (Closed)
Patch Set: Created 4 years, 3 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
Index: third_party/sqlite/sqlite-src-3080704/test/collate9.test
diff --git a/third_party/sqlite/sqlite-src-3080704/test/collate9.test b/third_party/sqlite/sqlite-src-3080704/test/collate9.test
deleted file mode 100644
index 5a07773a1ce2fbf999c29b290ac52badb43bed87..0000000000000000000000000000000000000000
--- a/third_party/sqlite/sqlite-src-3080704/test/collate9.test
+++ /dev/null
@@ -1,178 +0,0 @@
-#
-# 2007 November 12
-#
-# 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 script is making sure that the names of collation
-# sequences may be quoted using double quotes in SQL statements.
-#
-# $Id: collate9.test,v 1.2 2008/07/10 00:32:42 drh Exp $
-
-set testdir [file dirname $argv0]
-source $testdir/tester.tcl
-
-proc reverse_sort {lhs rhs} {
- return [string compare $rhs $lhs]
-}
-db collate "reverse sort" reverse_sort
-
-# This procedure executes the SQL. Then it checks to see if the OP_Sort
-# opcode was executed. If an OP_Sort did occur, then "sort" is appended
-# to the result. If no OP_Sort happened, then "nosort" is appended.
-#
-# This procedure is used to check to make sure sorting is or is not
-# occurring as expected.
-#
-proc cksort {sql} {
- set ::sqlite_sort_count 0
- set data [execsql $sql]
- if {$::sqlite_sort_count} {set x sort} {set x nosort}
- lappend data $x
- return $data
-}
-
-# Test plan:
-#
-# collate9-1.* - Test collation sequences attached to table columns
-# collate9-2.* - Test collation sequences attached to expressions
-# collate9-3.* - Test collation sequences attached to an index
-# collate9-4.* - Test collation sequences as an argument to REINDEX
-#
-
-do_test collate9-1.1 {
- execsql {
- CREATE TABLE xy(x COLLATE "reverse sort", y COLLATE binary);
- INSERT INTO xy VALUES('one', 'one');
- INSERT INTO xy VALUES('two', 'two');
- INSERT INTO xy VALUES('three', 'three');
- }
-} {}
-do_test collate9-1.2 {
- execsql {
- SELECT x FROM xy ORDER BY x
- }
-} {two three one}
-do_test collate9-1.3 {
- execsql {
- SELECT y FROM xy ORDER BY y
- }
-} {one three two}
-do_test collate9-1.4 {
- cksort {
- SELECT x FROM xy ORDER BY x
- }
-} {two three one sort}
-do_test collate9-1.5 {
- execsql {
- CREATE INDEX xy_i ON xy(x)
- }
-} {}
-do_test collate9-1.6 {
- cksort {
- SELECT x FROM xy ORDER BY x
- }
-} {two three one nosort}
-
-do_test collate9-2.1 {
- execsql {
- SELECT x, x < 'seven' FROM xy ORDER BY x
- }
-} {two 1 three 1 one 0}
-do_test collate9-2.2 {
- execsql {
- SELECT y, y < 'seven' FROM xy ORDER BY x
- }
-} {two 0 three 0 one 1}
-do_test collate9-2.3 {
- execsql {
- SELECT y, y COLLATE "reverse sort" < 'seven' FROM xy ORDER BY x
- }
-} {two 1 three 1 one 0}
-do_test collate9-2.4 {
- execsql {
- SELECT y FROM xy ORDER BY y
- }
-} {one three two}
-do_test collate9-2.5 {
- execsql {
- SELECT y FROM xy ORDER BY y COLLATE "reverse sort"
- }
-} {two three one}
-do_test collate9-2.6 {
- execsql {
- SELECT y COLLATE "reverse sort" AS aaa FROM xy ORDER BY aaa
- }
-} {two three one}
-
-do_test collate9-3.1 {
- execsql {
- CREATE INDEX xy_i2 ON xy(y COLLATE "reverse sort");
- }
-} {}
-do_test collate9-3.2 {
- cksort {
- SELECT y FROM xy ORDER BY y
- }
-} {one three two sort}
-do_test collate9-3.3 {
- cksort {
- SELECT y FROM xy ORDER BY y COLLATE "reverse sort"
- }
-} {two three one nosort}
-do_test collate9-3.4 {
- cksort {
- SELECT y AS aaa FROM xy ORDER BY aaa
- }
-} {one three two sort}
-do_test collate9-3.5 {
- cksort {
- SELECT y COLLATE "reverse sort" AS aaa FROM xy ORDER BY aaa
- }
-} {two three one nosort}
-
-ifcapable reindex {
- do_test collate9-4.1 {
- execsql {
- REINDEX "reverse sort"
- }
- } {}
-
- # Modify the "reverse sort" collation so that it now sorts in the same
- # order as binary.
- proc reverse_sort {lhs rhs} {
- return [string compare $lhs $rhs]
- }
-
- # The integrity check should now fail because the indexes created using
- # "reverse sort" are no longer in sync with the collation sequence
- # implementation.
- do_test collate9-4.2 {
- expr {"ok" eq [execsql { PRAGMA integrity_check }]}
- } {0}
-
- do_test collate9-4.3 {
- execsql {
- REINDEX "reverse sort"
- }
- } {}
-
- # Integrity check should now pass.
- do_test collate9-4.4 {
- expr {"ok" eq [execsql { PRAGMA integrity_check }]}
- } {1}
-
- do_test collate9-4.5 {
- cksort {
- SELECT x FROM xy ORDER BY x COLLATE "reverse sort"
- }
- } {one three two nosort}
-}
-
-finish_test
« no previous file with comments | « third_party/sqlite/sqlite-src-3080704/test/collate8.test ('k') | third_party/sqlite/sqlite-src-3080704/test/collateA.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698