mirror of
https://github.com/sqlite/sqlite.git
synced 2025-07-29 08:01:23 +03:00
Changes to allow FTS4 tables to be created without the underlying %_docsize table (in order to save space).
FossilOrigin-Name: 31989b18f53d97eddfb39660ef04fbf9463583e0
This commit is contained in:
@ -233,6 +233,13 @@ foreach {tn setup} {
|
||||
execsql "INSERT INTO t1(t1) VALUES('optimize')"
|
||||
execsql $zero_long_doclists
|
||||
}
|
||||
5 {
|
||||
set dmt_modes 0
|
||||
execsql { CREATE VIRTUAL TABLE t1 USING FTS4(matchinfo=fts3) }
|
||||
foreach doc $data { execsql { INSERT INTO t1 VALUES($doc) } }
|
||||
add_empty_records 1000
|
||||
execsql $zero_long_doclists
|
||||
}
|
||||
} {
|
||||
|
||||
execsql { DROP TABLE IF EXISTS t1 }
|
||||
|
Reference in New Issue
Block a user