fts3defer2.test 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. # 2010 October 23
  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. set testdir [file dirname $argv0]
  13. source $testdir/tester.tcl
  14. source $testdir/malloc_common.tcl
  15. ifcapable !fts3||!fts4_deferred {
  16. finish_test
  17. return
  18. }
  19. set testprefix fts3defer2
  20. proc mit {blob} {
  21. set scan(littleEndian) i*
  22. set scan(bigEndian) I*
  23. binary scan $blob $scan($::tcl_platform(byteOrder)) r
  24. return $r
  25. }
  26. db func mit mit
  27. #-----------------------------------------------------------------------------
  28. # This block of tests - fts3defer2-1.* - test the interaction of deferred NEAR
  29. # expressions and the snippet, offsets and matchinfo functions.
  30. #
  31. do_execsql_test 1.1.1 {
  32. CREATE VIRTUAL TABLE t1 USING fts4;
  33. }
  34. do_execsql_test 1.1.2 "INSERT INTO t1 VALUES('[string repeat {a } 20000]')"
  35. do_execsql_test 1.1.3 "INSERT INTO t1 VALUES('[string repeat {z } 20000]')"
  36. do_execsql_test 1.1.4 {
  37. INSERT INTO t1 VALUES('a b c d e f a x y');
  38. INSERT INTO t1 VALUES('');
  39. INSERT INTO t1 VALUES('');
  40. INSERT INTO t1 VALUES('');
  41. INSERT INTO t1 VALUES('');
  42. INSERT INTO t1 VALUES('');
  43. INSERT INTO t1(t1) VALUES('optimize');
  44. }
  45. do_execsql_test 1.1.4 {
  46. SELECT count(*) FROM t1_segments WHERE length(block)>10000;
  47. UPDATE t1_segments SET block = zeroblob(length(block)) WHERE length(block)>10000;
  48. } {2}
  49. do_execsql_test 1.2.0 {
  50. SELECT content FROM t1 WHERE t1 MATCH 'f (e a)';
  51. } {{a b c d e f a x y}}
  52. do_execsql_test 1.2.1 {
  53. SELECT content FROM t1 WHERE t1 MATCH 'f (e NEAR/2 a)';
  54. } {{a b c d e f a x y}}
  55. do_execsql_test 1.2.2 {
  56. SELECT snippet(t1, '[', ']'), offsets(t1), mit(matchinfo(t1, 'pcxnal'))
  57. FROM t1 WHERE t1 MATCH 'f (e NEAR/2 a)';
  58. } [list \
  59. {a b c d [e] [f] [a] x y} \
  60. {0 1 8 1 0 0 10 1 0 2 12 1} \
  61. [list 3 1 1 1 1 1 1 1 1 1 1 8 5001 9]
  62. ]
  63. do_execsql_test 1.2.3 {
  64. SELECT snippet(t1, '[', ']'), offsets(t1), mit(matchinfo(t1, 'pcxnal'))
  65. FROM t1 WHERE t1 MATCH 'f (e NEAR/3 a)';
  66. } [list \
  67. {[a] b c d [e] [f] [a] x y} \
  68. {0 2 0 1 0 1 8 1 0 0 10 1 0 2 12 1} \
  69. [list 3 1 1 1 1 1 1 1 2 2 1 8 5001 9]
  70. ]
  71. do_execsql_test 1.3.1 { DROP TABLE t1 }
  72. #-----------------------------------------------------------------------------
  73. # Test cases fts3defer2-2.* focus specifically on the matchinfo function.
  74. #
  75. do_execsql_test 2.1.1 "CREATE VIRTUAL TABLE t2 USING fts4"
  76. do_execsql_test 2.1.2 "INSERT INTO t2 VALUES('[string repeat {a } 10000]')"
  77. do_execsql_test 2.1.3 "INSERT INTO t2 VALUES('b [string repeat {z } 10000]')"
  78. do_execsql_test 2.1.4 [string repeat "INSERT INTO t2 VALUES('x');" 50]
  79. do_execsql_test 2.1.5 {
  80. INSERT INTO t2 VALUES('a b c d e f g z');
  81. INSERT INTO t2 VALUES('a b c d e f g');
  82. }
  83. foreach {tn sql} {
  84. 1 {}
  85. 2 { INSERT INTO t2(t2) VALUES('optimize') }
  86. 3 { UPDATE t2_segments SET block = zeroblob(length(block))
  87. WHERE length(block)>10000;
  88. }
  89. } {
  90. execsql $sql
  91. do_execsql_test 2.2.$tn.1 {
  92. SELECT mit(matchinfo(t2, 'pcxnal')) FROM t2 WHERE t2 MATCH 'a b';
  93. } [list \
  94. [list 2 1 1 54 54 1 3 3 54 372 8] \
  95. [list 2 1 1 54 54 1 3 3 54 372 7] \
  96. ]
  97. do_execsql_test 2.2.$tn.2 {
  98. SELECT mit(matchinfo(t2, 'x')) FROM t2 WHERE t2 MATCH 'g z';
  99. } [list \
  100. [list 1 2 2 1 54 54] \
  101. ]
  102. set sqlite_fts3_enable_parentheses 1
  103. do_execsql_test 2.2.$tn.3 {
  104. SELECT mit(matchinfo(t2, 'x')) FROM t2 WHERE t2 MATCH 'g OR (g z)';
  105. } [list \
  106. [list 1 2 2 1 2 2 1 54 54] \
  107. [list 1 2 2 1 2 2 0 54 54] \
  108. ]
  109. set sqlite_fts3_enable_parentheses 0
  110. }
  111. do_execsql_test 2.3.1 {
  112. CREATE VIRTUAL TABLE t3 USING fts4;
  113. INSERT INTO t3 VALUES('a b c d e f');
  114. INSERT INTO t3 VALUES('x b c d e f');
  115. INSERT INTO t3 VALUES('d e f a b c');
  116. INSERT INTO t3 VALUES('b c d e f');
  117. INSERT INTO t3 VALUES('');
  118. INSERT INTO t3 VALUES('');
  119. INSERT INTO t3 VALUES('');
  120. INSERT INTO t3 VALUES('');
  121. INSERT INTO t3 VALUES('');
  122. INSERT INTO t3 VALUES('');
  123. }
  124. do_execsql_test 2.3.2 "
  125. INSERT INTO t3 VALUES('f e d c b [string repeat {a } 10000]')
  126. "
  127. foreach {tn sql} {
  128. 1 {}
  129. 2 { INSERT INTO t3(t3) VALUES('optimize') }
  130. 3 { UPDATE t3_segments SET block = zeroblob(length(block))
  131. WHERE length(block)>10000;
  132. }
  133. } {
  134. execsql $sql
  135. do_execsql_test 2.4.$tn {
  136. SELECT docid, mit(matchinfo(t3, 'pcxnal')) FROM t3 WHERE t3 MATCH '"a b c"';
  137. } {1 {1 1 1 4 4 11 912 6} 3 {1 1 1 4 4 11 912 6}}
  138. }
  139. finish_test