| OLD | NEW |
| 1 | 1 |
| 2 | 2 |
| 3 #-------------------------------------------------------------------------- | 3 #-------------------------------------------------------------------------- |
| 4 # This script contains several sub-programs used to test FTS3/FTS4 | 4 # This script contains several sub-programs used to test FTS3/FTS4 |
| 5 # performance. It does not run the queries directly, but generates SQL | 5 # performance. It does not run the queries directly, but generates SQL |
| 6 # scripts that can be run using the shell tool. | 6 # scripts that can be run using the shell tool. |
| 7 # | 7 # |
| 8 # The following cases are tested: | 8 # The following cases are tested: |
| 9 # | 9 # |
| 10 # 1. Inserting documents into an FTS3 table. | 10 # 1. Inserting documents into an FTS3 table. |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 set ::fd [open fts3speed_optimize.sql w] | 113 set ::fd [open fts3speed_optimize.sql w] |
| 114 test_2 | 114 test_2 |
| 115 close $::fd | 115 close $::fd |
| 116 | 116 |
| 117 puts "Success. Created files:" | 117 puts "Success. Created files:" |
| 118 puts " fts3speed_insert.sql" | 118 puts " fts3speed_insert.sql" |
| 119 puts " fts3speed_select.sql" | 119 puts " fts3speed_select.sql" |
| 120 puts " fts3speed_select2.sql" | 120 puts " fts3speed_select2.sql" |
| 121 puts " fts3speed_optimize.sql" | 121 puts " fts3speed_optimize.sql" |
| 122 | 122 |
| OLD | NEW |