Snapshot of upstream SQLite 3.46.1
[sqlcipher.git] / ext / fts5 / test / fts5bigpl.test
blob2c9df11b1fc177f014be0591472250dbdc1ab638
1 # 2015 April 21
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 test is focused on really large position lists. Those that require
13 # 4 or 5 byte position-list size varints. Because of the amount of memory
14 # required, these tests only run on 64-bit platforms.
17 source [file join [file dirname [info script]] fts5_common.tcl]
18 set testprefix fts5bigpl
20 # If SQLITE_ENABLE_FTS5 is defined, omit this file.
21 ifcapable !fts5 {
22   finish_test
23   return
26 if { $tcl_platform(wordSize)<8 } {
27   finish_test
28   return
31 do_execsql_test 1.0 { CREATE VIRTUAL TABLE t1 USING fts5(x) }
33 do_test 1.1 {
34   foreach t {a b c d e f g h i j} {
35     set doc [string repeat "$t " 1200000]
36     execsql { INSERT INTO t1 VALUES($doc) }
37   }
38   execsql { INSERT INTO t1(t1) VALUES('integrity-check') }
39 } {}
41 do_test 1.2 {
42   execsql { DELETE FROM t1 }
43   foreach t {"a b" "b a" "c d" "d c"} {
44     set doc [string repeat "$t " 600000]
45     execsql { INSERT INTO t1 VALUES($doc) }
46   }
47   execsql { INSERT INTO t1(t1) VALUES('integrity-check') }
48 } {}
51 # 5-byte varint. This test takes 30 seconds or so on a 2014 workstation.
52 # The generated database is roughly 635MiB.
54 do_test 2.1...slow {
55   execsql { DELETE FROM t1 }
56   foreach t {a} {
57     set doc [string repeat "$t " 150000000]
58     execsql { INSERT INTO t1 VALUES($doc) }
59   }
60   execsql { INSERT INTO t1(t1) VALUES('integrity-check') }
61 } {}
63 finish_test