3 # The author disclaims copyright to this source code. In place of
4 # a legal notice, here is a blessing:
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.
10 #***********************************************************************
12 # This file implements tests to verify the "testable statements" in the
16 set testdir [file dirname $argv0]
17 source $testdir/tester.tcl
19 # If this build does not include FTS3, skip the tests in this file.
21 ifcapable !fts3 { finish_test ; return }
22 source $testdir/fts3_common.tcl
23 source $testdir/malloc_common.tcl
25 # Procs used to make the tests in this file easier to read.
27 proc ddl_test {tn ddl} {
28 uplevel [list do_write_test e_fts3-$tn sqlite_master $ddl]
30 proc write_test {tn tbl sql} {
31 uplevel [list do_write_test e_fts3-$tn $tbl $sql]
33 proc read_test {tn sql result} {
34 uplevel [list do_select_test e_fts3-$tn $sql $result]
36 proc error_test {tn sql result} {
37 uplevel [list do_error_test e_fts3-$tn $sql $result]
41 #-------------------------------------------------------------------------
42 # The body of the following [foreach] block contains test cases to verify
43 # that the example code in fts3.html works as expected. The tests run three
44 # times, with different values for DO_MALLOC_TEST.
46 # DO_MALLOC_TEST=0: Run tests with no OOM errors.
47 # DO_MALLOC_TEST=1: Run tests with transient OOM errors.
48 # DO_MALLOC_TEST=2: Run tests with persistent OOM errors.
50 foreach {DO_MALLOC_TEST enc} {
57 #if {$DO_MALLOC_TEST} break
59 # Reset the database and database connection. If this iteration of the
60 # [foreach] loop is testing with OOM errors, disable the lookaside buffer.
63 forcedelete test.db test.db-journal
65 if {$DO_MALLOC_TEST} { sqlite3_db_config_lookaside db 0 0 0 }
66 db eval "PRAGMA encoding = '$enc'"
69 set scan(littleEndian) i*
70 set scan(bigEndian) I*
71 binary scan $blob $scan($::tcl_platform(byteOrder)) r
76 ##########################################################################
77 # Test the example CREATE VIRTUAL TABLE statements in section 1.1
80 ddl_test 1.1.1.1 {CREATE VIRTUAL TABLE data USING fts3()}
81 read_test 1.1.1.2 {PRAGMA table_info(data)} {0 content {} 0 {} 0}
84 CREATE VIRTUAL TABLE pages USING fts3(title, keywords, body)
87 PRAGMA table_info(pages)
88 } {0 title {} 0 {} 0 1 keywords {} 0 {} 0 2 body {} 0 {} 0}
91 CREATE VIRTUAL TABLE mail USING fts3(
92 subject VARCHAR(256) NOT NULL,
93 body TEXT CHECK(length(body)<10240)
97 PRAGMA table_info(mail)
98 } {0 subject {} 0 {} 0 1 body {} 0 {} 0}
100 # A very large string. Used to test if the constraint on column "body" of
101 # table "mail" is enforced (it should not be - FTS3 tables do not support
103 set largetext [string repeat "the quick brown fox " 5000]
104 write_test 1.1.3.3 mail_content { INSERT INTO mail VALUES(NULL, $largetext) }
106 SELECT subject IS NULL, length(body) FROM mail
110 CREATE VIRTUAL TABLE papers USING fts3(author, document, tokenize=porter)
113 PRAGMA table_info(papers)
114 } {0 author {} 0 {} 0 1 document {} 0 {} 0}
117 CREATE VIRTUAL TABLE simpledata USING fts3(tokenize=simple)
120 PRAGMA table_info(simpledata)
121 } {0 content {} 0 {} 0}
125 CREATE VIRTUAL TABLE names USING fts3(a, b, tokenize=icu en_AU)
128 PRAGMA table_info(names)
129 } {0 a {} 0 {} 0 1 b {} 0 {} 0}
132 ddl_test 1.1.7.1 {DROP TABLE data}
133 ddl_test 1.1.7.2 {DROP TABLE pages}
134 ddl_test 1.1.7.3 {DROP TABLE mail}
135 ddl_test 1.1.7.4 {DROP TABLE papers}
136 ddl_test 1.1.7.5 {DROP TABLE simpledata}
137 read_test 1.1.7.6 {SELECT * FROM sqlite_master} {}
139 # The following is not one of the examples in section 1.1. It tests
140 # specifying an FTS3 table with no module arguments using a slightly
142 ddl_test 1.1.8.1 {CREATE VIRTUAL TABLE data USING fts3;}
143 read_test 1.1.8.2 {PRAGMA table_info(data)} {0 content {} 0 {} 0}
144 ddl_test 1.1.8.3 {DROP TABLE data}
146 ##########################################################################
147 # Test the examples in section 1.2 (populating fts3 tables)
150 CREATE VIRTUAL TABLE pages USING fts3(title, body);
152 write_test 1.2.1.2 pages_content {
153 INSERT INTO pages(docid, title, body)
154 VALUES(53, 'Home Page', 'SQLite is a software...');
157 SELECT docid, * FROM pages
158 } {53 {Home Page} {SQLite is a software...}}
160 write_test 1.2.1.4 pages_content {
161 INSERT INTO pages(title, body)
162 VALUES('Download', 'All SQLite source code...');
165 SELECT docid, * FROM pages
166 } {53 {Home Page} {SQLite is a software...} 54 Download {All SQLite source code...}}
168 write_test 1.2.1.6 pages_content {
169 UPDATE pages SET title = 'Download SQLite' WHERE rowid = 54
172 SELECT docid, * FROM pages
173 } {53 {Home Page} {SQLite is a software...} 54 {Download SQLite} {All SQLite source code...}}
175 write_test 1.2.1.8 pages_content { DELETE FROM pages }
176 read_test 1.2.1.9 { SELECT docid, * FROM pages } {}
178 do_error_test fts3-1.2.1.10 {
179 INSERT INTO pages(rowid, docid, title, body) VALUES(1, 2, 'A title', 'A document body');
182 # Test the optimize() function example:
183 ddl_test 1.2.2.1 { CREATE VIRTUAL TABLE docs USING fts3 }
184 write_test 1.2.2.2 docs_content {
185 INSERT INTO docs VALUES('Others translate the first clause as');
187 write_test 1.2.2.3 docs_content {
188 INSERT INTO docs VALUES('"which is for Solomon," meaning that');
190 write_test 1.2.2.4 docs_content {
191 INSERT INTO docs VALUES('the book is dedicated to Solomon.');
193 read_test 1.2.2.5 { SELECT count(*) FROM docs_segdir } {3}
194 write_test 1.2.2.6 docs_segdir {
195 INSERT INTO docs(docs) VALUES('optimize');
197 read_test 1.2.2.7 { SELECT count(*) FROM docs_segdir } {1}
198 ddl_test 1.2.2.8 { DROP TABLE docs }
200 ##########################################################################
201 # Test the examples in section 1.3 (querying FTS3 tables)
203 ddl_test 1.3.1.1 { CREATE VIRTUAL TABLE mail USING fts3(subject, body) }
205 SELECT * FROM mail WHERE rowid = 15; -- Fast. Rowid lookup.
206 SELECT * FROM mail WHERE body MATCH 'sqlite'; -- Fast. Full-text query.
207 SELECT * FROM mail WHERE mail MATCH 'search'; -- Fast. Full-text query.
208 SELECT * FROM mail WHERE rowid BETWEEN 15 AND 20; -- Slow. Linear scan.
209 SELECT * FROM mail WHERE subject = 'database'; -- Slow. Linear scan.
210 SELECT * FROM mail WHERE subject MATCH 'database'; -- Fast. Full-text query.
212 ddl_test 1.3.1.3 { DROP TABLE mail }
214 ddl_test 1.3.2.1 { CREATE VIRTUAL TABLE mail USING fts3(subject, body) }
216 write_test 1.3.2.2 mail_content {
217 INSERT INTO mail(docid, subject, body)
218 VALUES(1, 'software feedback', 'found it too slow')
220 write_test 1.3.2.3 mail_content {
221 INSERT INTO mail(docid, subject, body)
222 VALUES(2, 'software feedback', 'no feedback')
224 write_test 1.3.2.4 mail_content {
225 INSERT INTO mail(docid, subject, body)
226 VALUES(3, 'slow lunch order', 'was a software problem')
229 SELECT * FROM mail WHERE subject MATCH 'software'
230 } {{software feedback} {found it too slow} {software feedback} {no feedback}}
232 SELECT * FROM mail WHERE body MATCH 'feedback'
233 } {{software feedback} {no feedback}}
235 SELECT * FROM mail WHERE mail MATCH 'software'
236 } {{software feedback} {found it too slow} {software feedback} {no feedback} {slow lunch order} {was a software problem}}
238 SELECT * FROM mail WHERE mail MATCH 'slow'
239 } {{software feedback} {found it too slow} {slow lunch order} {was a software problem}}
240 ddl_test 1.3.2.8 { DROP TABLE mail }
242 ddl_test 1.3.3.1 { CREATE VIRTUAL TABLE docs USING fts3(content) }
243 read_test 1.3.3.2 { SELECT * FROM docs WHERE docs MATCH 'sqlite' } {}
244 read_test 1.3.3.3 { SELECT * FROM docs WHERE docs.docs MATCH 'sqlite' } {}
245 read_test 1.3.3.4 { SELECT * FROM docs WHERE main.docs.docs MATCH 'sqlite' } {}
246 do_error_test e_fts3-1.3.3.5 {
247 SELECT * FROM docs WHERE main.docs MATCH 'sqlite'
248 } {no such column: main.docs}
249 ddl_test 1.3.2.8 { DROP TABLE docs }
251 ##########################################################################
252 # Test the examples in section 3 (full-text index queries).
254 ddl_test 1.4.1.1 { CREATE VIRTUAL TABLE docs USING fts3(title, body) }
256 foreach {tn title body} {
257 2 "linux driver" "a device"
258 3 "driver" "linguistic trick"
259 4 "problems" "linux problems"
260 5 "linux" "big problems"
261 6 "linux driver" "a device driver problem"
262 7 "good times" "applications for linux"
263 8 "not so good" "linux applications"
264 9 "alternative" "linoleum appliances"
265 10 "no L I N" "to be seen"
267 write_test 1.4.1.$tn docs_content { INSERT INTO docs VALUES($title,$body) }
268 set R($tn) [list $title $body]
272 SELECT * FROM docs WHERE docs MATCH 'linux'
273 } [concat $R(2) $R(4) $R(5) $R(6) $R(7) $R(8)]
275 SELECT * FROM docs WHERE docs MATCH 'lin*'
276 } [concat $R(2) $R(3) $R(4) $R(5) $R(6) $R(7) $R(8) $R(9)]
278 SELECT * FROM docs WHERE docs MATCH 'title:linux problems'
281 SELECT * FROM docs WHERE body MATCH 'title:linux driver'
284 SELECT * FROM docs WHERE docs MATCH '"linux applications"'
287 SELECT * FROM docs WHERE docs MATCH '"lin* app*"'
288 } [concat $R(8) $R(9)]
289 ddl_test 1.4.1.17 { DROP TABLE docs }
292 ddl_test 1.4.2.1 { CREATE VIRTUAL TABLE docs USING fts3() }
293 write_test 1.4.2.2 docs_content {
294 INSERT INTO docs VALUES(
295 'SQLite is an ACID compliant embedded relational database management system')
297 foreach {tn query hit} {
298 3 {SELECT * FROM docs WHERE docs MATCH 'sqlite NEAR database'} 1
299 4 {SELECT * FROM docs WHERE docs MATCH 'database NEAR/6 sqlite'} 1
300 5 {SELECT * FROM docs WHERE docs MATCH 'database NEAR/5 sqlite'} 0
301 6 {SELECT * FROM docs WHERE docs MATCH 'database NEAR/2 "ACID compliant"'} 1
302 7 {SELECT * FROM docs WHERE docs MATCH '"ACID compliant" NEAR/2 sqlite'} 1
303 8 {SELECT * FROM docs WHERE docs MATCH 'sqlite NEAR/2 acid NEAR/2 relational'} 1
304 9 {SELECT * FROM docs WHERE docs MATCH 'acid NEAR/2 sqlite NEAR/2 relational'} 0
306 set res [db eval {SELECT * FROM docs WHERE $hit}]
307 read_test 1.4.2.$tn $query $res
309 ddl_test 1.4.2.10 { DROP TABLE docs }
311 ##########################################################################
312 # Test the example in section 3.1 (set operators with enhanced syntax).
314 set sqlite_fts3_enable_parentheses 1
315 ddl_test 1.5.1.1 { CREATE VIRTUAL TABLE docs USING fts3() }
316 foreach {tn docid content} {
317 2 1 "a database is a software system"
318 3 2 "sqlite is a software system"
319 4 3 "sqlite is a database"
321 set R($docid) $content
322 write_test 1.5.1.$tn docs_content {
323 INSERT INTO docs(docid, content) VALUES($docid, $content)
327 SELECT * FROM docs WHERE docs MATCH 'sqlite AND database'
330 SELECT * FROM docs WHERE docs MATCH 'database sqlite'
333 SELECT * FROM docs WHERE docs MATCH 'sqlite OR database'
334 } [list $R(1) $R(2) $R(3)]
336 SELECT * FROM docs WHERE docs MATCH 'database NOT sqlite'
339 SELECT * FROM docs WHERE docs MATCH 'database and sqlite'
342 write_test 1.5.2.1 docs_content {
344 SELECT 'sqlite is also a library' UNION ALL
345 SELECT 'library software'
348 SELECT docid FROM docs WHERE docs MATCH 'sqlite AND database OR library'
351 SELECT docid FROM docs WHERE docs MATCH 'sqlite AND database'
353 SELECT docid FROM docs WHERE docs MATCH 'library'
355 write_test 1.5.2.4 docs_content {
357 SELECT 'the sqlite library runs on linux' UNION ALL
358 SELECT 'as does the sqlite database (on linux)' UNION ALL
359 SELECT 'the sqlite database is accessed by the sqlite library'
362 SELECT docid FROM docs
363 WHERE docs MATCH '("sqlite database" OR "sqlite library") AND linux';
366 SELECT docid FROM docs WHERE docs MATCH 'linux'
369 SELECT docid FROM docs WHERE docs MATCH '"sqlite library"'
371 SELECT docid FROM docs WHERE docs MATCH '"sqlite database"'
375 ##########################################################################
376 # Test the examples in section 3.2 (set operators with standard syntax).
377 # These tests reuse the table populated by the block above.
379 set sqlite_fts3_enable_parentheses 0
381 SELECT * FROM docs WHERE docs MATCH 'sqlite -database'
382 } {{sqlite is a software system} {sqlite is also a library} {the sqlite library runs on linux}}
384 SELECT * FROM docs WHERE docs MATCH 'sqlite OR database library'
385 } {{sqlite is also a library} {the sqlite library runs on linux} {the sqlite database is accessed by the sqlite library}}
387 set sqlite_fts3_enable_parentheses 1
389 SELECT * FROM docs WHERE docs MATCH 'sqlite OR database library'
390 } {{sqlite is a software system} {sqlite is a database} {sqlite is also a library} {the sqlite library runs on linux} {as does the sqlite database (on linux)} {the sqlite database is accessed by the sqlite library}}
392 SELECT * FROM docs WHERE docs MATCH '(sqlite OR database) library'
393 } {{sqlite is also a library} {the sqlite library runs on linux} {the sqlite database is accessed by the sqlite library}}
394 set sqlite_fts3_enable_parentheses 0
395 ddl_test 1.6.1.5 { DROP TABLE docs }
397 ##########################################################################
398 # Test the examples in section 4 (auxillary functions).
400 ddl_test 1.7.1.1 { CREATE VIRTUAL TABLE mail USING fts3(subject, body) }
402 write_test 1.7.1.2 mail_content {
403 INSERT INTO mail VALUES(
404 'hello world', 'This message is a hello world message.');
406 write_test 1.7.1.3 mail_content {
407 INSERT INTO mail VALUES(
408 'urgent: serious', 'This mail is seen as a more serious mail');
412 SELECT offsets(mail) FROM mail WHERE mail MATCH 'world';
413 } {{0 0 6 5 1 0 24 5}}
415 SELECT offsets(mail) FROM mail WHERE mail MATCH 'message'
416 } {{1 0 5 7 1 0 30 7}}
418 SELECT offsets(mail) FROM mail WHERE mail MATCH '"serious mail"'
419 } {{1 0 28 7 1 1 36 4}}
421 ddl_test 1.7.2.1 { CREATE VIRTUAL TABLE text USING fts3() }
423 write_test 1.7.2.2 text_content {
424 INSERT INTO text VALUES('
425 During 30 Nov-1 Dec, 2-3oC drops. Cool in the upper portion, minimum temperature 14-16oC and cool elsewhere, minimum temperature 17-20oC. Cold to very cold on mountaintops, minimum temperature 6-12oC. Northeasterly winds 15-30 km/hr. After that, temperature increases. Northeasterly winds 15-30 km/hr.
430 SELECT snippet(text) FROM text WHERE text MATCH 'cold'
431 } {{<b>...</b>cool elsewhere, minimum temperature 17-20oC. <b>Cold</b> to very <b>cold</b> on mountaintops, minimum temperature 6<b>...</b>}}
434 SELECT snippet(text, '[', ']', '...') FROM text WHERE text MATCH '"min* tem*"'
435 } {{...the upper portion, [minimum] [temperature] 14-16oC and cool elsewhere, [minimum] [temperature] 17-20oC. Cold...}}
437 ddl_test 1.7.3.1 { DROP TABLE IF EXISTS t1 }
438 ddl_test 1.7.3.2 { CREATE VIRTUAL TABLE t1 USING fts3(a, b) }
439 write_test 1.7.3.3 t1_content {
440 INSERT INTO t1 VALUES(
441 'transaction default models default', 'Non transaction reads');
443 write_test 1.7.3.4 t1_content {
444 INSERT INTO t1 VALUES('the default transaction', 'these semantics present');
446 write_test 1.7.3.5 t1_content {
447 INSERT INTO t1 VALUES('single request', 'default data');
450 SELECT mit(matchinfo(t1)) FROM t1
451 WHERE t1 MATCH 'default transaction "these semantics"';
452 } {{3 2 1 3 2 0 1 1 1 2 2 0 1 1 0 0 0 1 1 1}}
454 ##########################################################################
455 # Test the example in section 5 (custom tokenizers).
457 ddl_test 1.8.1.1 { CREATE VIRTUAL TABLE simple USING fts3(tokenize=simple) }
458 write_test 1.8.1.2 simple_content {
459 INSERT INTO simple VALUES('Right now they''re very frustrated')
461 read_test 1.8.1.3 {SELECT docid FROM simple WHERE simple MATCH 'Frustrated'} {1}
462 read_test 1.8.1.4 {SELECT docid FROM simple WHERE simple MATCH 'Frustration'} {}
464 ddl_test 1.8.2.1 { CREATE VIRTUAL TABLE porter USING fts3(tokenize=porter) }
465 write_test 1.8.2.2 porter_content {
466 INSERT INTO porter VALUES('Right now they''re very frustrated')
469 SELECT docid FROM porter WHERE porter MATCH 'Frustration'
473 # End of tests of example code in fts3.html
474 #-------------------------------------------------------------------------
476 #-------------------------------------------------------------------------
477 # Test that errors in the arguments passed to the snippet and offsets
478 # functions are handled correctly.
481 ddl_test 2.1.0 { DROP TABLE IF EXISTS t1 }
482 ddl_test 2.1.1 { CREATE VIRTUAL TABLE t1 USING fts3(a, b) }
483 write_test 2.1.2 t1_content {
484 INSERT INTO t1 VALUES('one two three', x'A1B2C3D4E5F6');
487 SELECT offsets(a) FROM t1 WHERE a MATCH 'one'
488 } {illegal first argument to offsets}
490 SELECT offsets(b) FROM t1 WHERE a MATCH 'one'
491 } {illegal first argument to offsets}
493 SELECT optimize(a) FROM t1 LIMIT 1
494 } {illegal first argument to optimize}
496 SELECT snippet(a) FROM t1 WHERE a MATCH 'one'
497 } {illegal first argument to snippet}
499 SELECT snippet() FROM t1 WHERE a MATCH 'one'
500 } {unable to use function snippet in the requested context}
502 SELECT snippet(a, b, 'A', 'B', 'C', 'D', 'E') FROM t1 WHERE a MATCH 'one'
503 } {wrong number of arguments to function snippet()}
504 #-------------------------------------------------------------------------
506 #-------------------------------------------------------------------------
507 # Test the effect of an OOM error while installing the FTS3 module (i.e.
508 # opening a database handle). This case was not tested by the OOM testing
509 # of the document examples above.
511 do_malloc_test e_fts3-3 -tclbody {
512 if {[catch {sqlite3 db test.db}]} { error "out of memory" }
514 #-------------------------------------------------------------------------
516 #-------------------------------------------------------------------------
517 # Verify the return values of the optimize() function. If no error occurs,
518 # the returned value should be "Index optimized" if the data structure
519 # was modified, or "Index already optimal" if it were not.
522 ddl_test 4.1 { CREATE VIRTUAL TABLE t4 USING fts3(a, b) }
523 write_test 4.2 t4_content {
524 INSERT INTO t4 VALUES('In Xanadu', 'did Kubla Khan');
526 write_test 4.3 t4_content {
527 INSERT INTO t4 VALUES('a stately pleasure', 'dome decree');
530 execsql { SELECT optimize(t4) FROM t4 LIMIT 1 }
531 } {{Index optimized}}
533 execsql { SELECT optimize(t4) FROM t4 LIMIT 1 }
534 } {{Index already optimal}}
535 #-------------------------------------------------------------------------
537 #-------------------------------------------------------------------------
538 # Test that the snippet function appears to work correctly with 1, 2, 3
539 # or 4 arguments passed to it.
542 ddl_test 5.1 { CREATE VIRTUAL TABLE t5 USING fts3(x) }
543 write_test 5.2 t5_content {
544 INSERT INTO t5 VALUES('In Xanadu did Kubla Khan A stately pleasure-dome decree Where Alph, the sacred river, ran Through caverns measureless to man Down to a sunless sea. So twice five miles of fertile ground With walls and towers were girdled round : And there were gardens bright with sinuous rills, Where blossomed many an incense-bearing tree ; And here were forests ancient as the hills, Enfolding sunny spots of greenery.');
547 SELECT snippet(t5) FROM t5 WHERE t5 MATCH 'miles'
548 } {{<b>...</b>to a sunless sea. So twice five <b>miles</b> of fertile ground With walls and towers<b>...</b>}}
550 SELECT snippet(t5, '<i>') FROM t5 WHERE t5 MATCH 'miles'
551 } {{<b>...</b>to a sunless sea. So twice five <i>miles</b> of fertile ground With walls and towers<b>...</b>}}
553 SELECT snippet(t5, '<i>', '</i>') FROM t5 WHERE t5 MATCH 'miles'
554 } {{<b>...</b>to a sunless sea. So twice five <i>miles</i> of fertile ground With walls and towers<b>...</b>}}
556 SELECT snippet(t5, '<i>', '</i>', 'XXX') FROM t5 WHERE t5 MATCH 'miles'
557 } {{XXXto a sunless sea. So twice five <i>miles</i> of fertile ground With walls and towersXXX}}
558 #-------------------------------------------------------------------------
560 #-------------------------------------------------------------------------
561 # Test that an empty MATCH expression returns an empty result set. As
562 # does passing a NULL value as a MATCH expression.
565 ddl_test 6.1 { CREATE VIRTUAL TABLE t6 USING fts3(x) }
566 write_test 6.2 t5_content { INSERT INTO t6 VALUES('a'); }
567 write_test 6.3 t5_content { INSERT INTO t6 VALUES('b'); }
568 write_test 6.4 t5_content { INSERT INTO t6 VALUES('c'); }
569 read_test 6.5 { SELECT * FROM t6 WHERE t6 MATCH '' } {}
570 read_test 6.6 { SELECT * FROM t6 WHERE x MATCH '' } {}
571 read_test 6.7 { SELECT * FROM t6 WHERE t6 MATCH NULL } {}
572 read_test 6.8 { SELECT * FROM t6 WHERE x MATCH NULL } {}
573 #-------------------------------------------------------------------------
575 #-------------------------------------------------------------------------
576 # Test a few facets of the FTS3 xFilter() callback implementation:
578 # 1. That the sqlite3_index_constraint.usable flag is respected.
580 # 2. That it is an error to use the "docid" or "rowid" column of
581 # an FTS3 table as the LHS of a MATCH operator.
583 # 3. That it is an error to AND together two MATCH expressions in
584 # that refer to a single FTS3 table in a WHERE clause.
588 ddl_test 7.1.1 { CREATE VIRTUAL TABLE t7 USING fts3(a) }
589 ddl_test 7.1.2 { CREATE VIRTUAL TABLE t8 USING fts3(b) }
590 write_test 7.1.3 t7_content { INSERT INTO t7(docid, a) VALUES(4,'number four') }
591 write_test 7.1.4 t7_content { INSERT INTO t7(docid, a) VALUES(5,'number five') }
592 write_test 7.1.5 t8_content { INSERT INTO t8(docid, b) VALUES(4,'letter D') }
593 write_test 7.1.6 t8_content { INSERT INTO t8(docid, b) VALUES(5,'letter E') }
595 SELECT a || ':' || b FROM t7 JOIN t8 USING(docid)
596 } {{number four:letter D} {number five:letter E}}
599 SELECT * FROM t7 WHERE docid MATCH 'number'
600 } {unable to use function MATCH in the requested context}
602 SELECT * FROM t7 WHERE rowid MATCH 'number'
603 } {unable to use function MATCH in the requested context}
606 SELECT * FROM t7 WHERE a MATCH 'number' AND a MATCH 'four'
607 } {unable to use function MATCH in the requested context}
609 SELECT * FROM t7, t8 WHERE a MATCH 'number' AND a MATCH 'four'
610 } {unable to use function MATCH in the requested context}
612 SELECT * FROM t7, t8 WHERE b MATCH 'letter' AND b MATCH 'd'
613 } {unable to use function MATCH in the requested context}
615 SELECT * FROM t7, t8 WHERE a MATCH 'number' AND b MATCH 'letter'
616 } {{number four} {letter D} {number four} {letter E} {number five} {letter D} {number five} {letter E}}
618 SELECT * FROM t7 WHERE a MATCH 'number' AND docid = 4
621 #-------------------------------------------------------------------------
622 # Test the quoting of FTS3 table column names. Names may be quoted using
623 # any of "", '', ``` or [].
626 ddl_test 8.1.1 { CREATE VIRTUAL TABLE t9a USING fts3("c1", [c2]) }
627 ddl_test 8.1.2 { CREATE VIRTUAL TABLE t9b USING fts3('c1', `c2`) }
628 read_test 8.1.3 { PRAGMA table_info(t9a) } {0 c1 {} 0 {} 0 1 c2 {} 0 {} 0}
629 read_test 8.1.4 { PRAGMA table_info(t9b) } {0 c1 {} 0 {} 0 1 c2 {} 0 {} 0}
630 ddl_test 8.2.1 { CREATE VIRTUAL TABLE t9c USING fts3("c""1", 'c''2') }
631 read_test 8.2.2 { PRAGMA table_info(t9c) } {0 c\"1 {} 0 {} 0 1 c'2 {} 0 {} 0}
632 #-------------------------------------------------------------------------
634 #-------------------------------------------------------------------------
635 # Test that FTS3 tables can be renamed using the ALTER RENAME command.
636 # OOM errors are tested during ALTER RENAME commands also.
638 foreach DO_MALLOC_TEST {0 1 2} {
640 forcedelete test.db test.db-journal
642 if {$DO_MALLOC_TEST} { sqlite3_db_config_lookaside db 0 0 0 }
644 ddl_test 9.1.1 { CREATE VIRTUAL TABLE t10 USING fts3(x) }
645 write_test 9.1.2 t10_content { INSERT INTO t10 VALUES('fts3 tables') }
646 write_test 9.1.3 t10_content { INSERT INTO t10 VALUES('are renameable') }
649 SELECT * FROM t10 WHERE t10 MATCH 'table*'
652 SELECT * FROM t10 WHERE x MATCH 'rename*'
655 ddl_test 9.1.6 { ALTER TABLE t10 RENAME TO t11 }
658 SELECT * FROM t11 WHERE t11 MATCH 'table*'
661 SELECT * FROM t11 WHERE x MATCH 'rename*'
664 #-------------------------------------------------------------------------
666 #-------------------------------------------------------------------------
667 # Test a couple of cases involving corrupt data structures:
669 # 1) A case where a document referenced by the full-text index is
670 # not present in the %_content table.
672 # 2) A badly formatted b-tree segment node.
675 ddl_test 10.1.1 { CREATE VIRTUAL TABLE ta USING fts3 }
676 write_test 10.1.2 ta_content {
677 INSERT INTO ta VALUES('During a summer vacation in 1790') }
678 write_test 10.1.3 ta_content {
679 INSERT INTO ta VALUES('Wordsworth went on a walking tour') }
680 write_test 10.1.4 ta_content { DELETE FROM ta_content WHERE rowid = 2 }
682 SELECT * FROM ta WHERE ta MATCH 'summer'
683 } {{During a summer vacation in 1790}}
685 SELECT * FROM ta WHERE ta MATCH 'walking'
686 } {database disk image is malformed}
688 write_test 10.2.1 ta_content { DELETE FROM ta }
689 write_test 10.2.2 ta_content {
690 INSERT INTO ta VALUES('debate demonstrated the rising difficulty') }
691 write_test 10.2.3 ta_content {
692 INSERT INTO ta VALUES('Google released its browser beta') }
694 set blob [db one {SELECT root FROM ta_segdir WHERE rowid = 2}]
695 binary scan $blob "a6 a3 a*" start middle end
696 set middle "\x0E\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\x06\x06"
697 set blob [binary format "a6 a* a*" $start $middle $end]
698 write_test 10.2.4 ta_segdir {
699 UPDATE ta_segdir SET root = $blob WHERE rowid = 2
702 SELECT * FROM ta WHERE ta MATCH 'beta'
703 } {database disk image is malformed}