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

Side by Side Diff: third_party/sqlite/sqlite-src-3170000/ext/fts5/test/fts5rank.test

Issue 2747283002: [sql] Import reference version of SQLite 3.17.. (Closed)
Patch Set: Created 3 years, 9 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
(Empty)
1 # 2014 Dec 20
2 #
3 # The author disclaims copyright to this source code. In place of
4 # a legal notice, here is a blessing:
5 #
6 # May you do good and not evil.
7 # May you find forgiveness for yourself and forgive others.
8 # May you share freely, never taking more than you give.
9 #
10 #***********************************************************************
11 #
12 # This file focuses on testing queries that use the "rank" column.
13 #
14
15 source [file join [file dirname [info script]] fts5_common.tcl]
16 set testprefix fts5rank
17
18 # If SQLITE_ENABLE_FTS5 is defined, omit this file.
19 ifcapable !fts5 {
20 finish_test
21 return
22 }
23
24
25 #-------------------------------------------------------------------------
26 # "ORDER BY rank" + highlight() + large poslists.
27 #
28 do_execsql_test 1.0 {
29 CREATE VIRTUAL TABLE xyz USING fts5(z);
30 }
31 do_test 1.1 {
32 set doc [string trim [string repeat "x y " 500]]
33 execsql { INSERT INTO xyz VALUES($doc) }
34 } {}
35 do_execsql_test 1.2 {
36 SELECT highlight(xyz, 0, '[', ']') FROM xyz WHERE xyz MATCH 'x' ORDER BY rank
37 } [list [string map {x [x]} $doc]]
38
39 do_execsql_test 1.3 {
40 SELECT highlight(xyz, 0, '[', ']') FROM xyz
41 WHERE xyz MATCH 'x AND y' ORDER BY rank
42 } [list [string map {x [x] y [y]} $doc]]
43
44 #-------------------------------------------------------------------------
45 # Check that the 'rank' option really is persistent.
46 #
47 do_execsql_test 2.0 {
48 CREATE VIRTUAL TABLE tt USING fts5(a);
49 INSERT INTO tt VALUES('a x x x x');
50 INSERT INTO tt VALUES('x x a a a');
51 INSERT INTO tt VALUES('x a a x x');
52 }
53
54 proc firstinst {cmd} {
55 foreach {p c o} [$cmd xInst 0] {}
56 return $o
57 }
58 sqlite3_fts5_create_function db firstinst firstinst
59
60 do_execsql_test 2.1 {
61 SELECT rowid FROM tt('a') ORDER BY rank;
62 } {2 3 1}
63
64 do_execsql_test 2.2 {
65 SELECT rowid FROM tt('a', 'firstinst()') ORDER BY rank;
66 } {1 3 2}
67
68 do_execsql_test 2.3 {
69 INSERT INTO tt(tt, rank) VALUES('rank', 'firstinst()');
70 SELECT rowid FROM tt('a') ORDER BY rank;
71 } {1 3 2}
72
73 do_test 2.4 {
74 sqlite3 db2 test.db
75 catchsql { SELECT rowid FROM tt('a') ORDER BY rank; } db2
76 } {1 {no such function: firstinst}}
77
78 do_test 2.5 {
79 db2 close
80 sqlite3 db2 test.db
81 sqlite3_fts5_create_function db2 firstinst firstinst
82 execsql { SELECT rowid FROM tt('a') ORDER BY rank; } db2
83 } {1 3 2}
84
85 do_test 2.6 {
86 execsql { SELECT rowid FROM tt('a') ORDER BY rank; } db2
87 } {1 3 2}
88
89 do_test 2.7 {
90 execsql { SELECT rowid FROM tt('a') ORDER BY rank; } db
91 } {1 3 2}
92
93
94 #--------------------------------------------------------------------------
95 # At one point there was a problem with queries such as:
96 #
97 # ... MATCH 'x OR y' ORDER BY rank;
98 #
99 # if there were zero occurrences of token 'y' in the dataset. The
100 # following tests verify that that problem has been addressed.
101 #
102 foreach_detail_mode $::testprefix {
103 do_execsql_test 3.1.0 {
104 CREATE VIRTUAL TABLE y1 USING fts5(z, detail=%DETAIL%);
105 INSERT INTO y1 VALUES('test xyz');
106 INSERT INTO y1 VALUES('test test xyz test');
107 INSERT INTO y1 VALUES('test test xyz');
108 }
109
110 do_execsql_test 3.1.1 {
111 SELECT rowid FROM y1('test OR tset');
112 } {1 2 3}
113
114 do_execsql_test 3.1.2 {
115 SELECT rowid FROM y1('test OR tset') ORDER BY bm25(y1)
116 } {2 3 1}
117
118 do_execsql_test 3.1.3 {
119 SELECT rowid FROM y1('test OR tset') ORDER BY +rank
120 } {2 3 1}
121
122 do_execsql_test 3.1.4 {
123 SELECT rowid FROM y1('test OR tset') ORDER BY rank
124 } {2 3 1}
125
126 do_execsql_test 3.1.5 {
127 SELECT rowid FROM y1('test OR xyz') ORDER BY rank
128 } {3 2 1}
129
130
131 do_execsql_test 3.2.1 {
132 CREATE VIRTUAL TABLE z1 USING fts5(a, detail=%DETAIL%);
133 INSERT INTO z1 VALUES('wrinkle in time');
134 SELECT * FROM z1 WHERE z1 MATCH 'wrinkle in time OR a wrinkle in time';
135 } {{wrinkle in time}}
136 }
137
138 do_execsql_test 4.1 {
139 DROP TABLE IF EXISTS VTest;
140 CREATE virtual TABLE VTest USING FTS5(
141 Title, AUthor, tokenize ='porter unicode61 remove_diacritics 1',
142 columnsize='1', detail=full
143 );
144 INSERT INTO VTest (Title, Author) VALUES ('wrinkle in time', 'Bill Smith');
145
146 SELECT * FROM VTest WHERE
147 VTest MATCH 'wrinkle in time OR a wrinkle in time' ORDER BY rank;
148 } {{wrinkle in time} {Bill Smith}}
149
150
151
152
153 finish_test
154
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698