OLD | NEW |
1 Instructions for importing a new release of sqlite from sqlite.org. | 1 Instructions for importing a new release of sqlite from sqlite.org. |
2 | 2 |
3 First, you need to be on Linux. | 3 First, you need to be on Linux. |
4 | 4 |
5 Find the release you want at: | 5 Find the release you want at: |
6 http://www.sqlite.org/cvstrac/timeline | 6 http://www.sqlite.org/cvstrac/timeline |
7 | 7 |
8 Search for "Milestone", and find the appropriate release. Click | 8 Search for "Milestone", and find the appropriate release. Click |
9 through, and snag the "Date" for use in DATE line below. | 9 through, and snag the "Date" for use in DATE line below. |
10 Unfortunately, the actual displayed date string on that page will not | 10 Unfortunately, the actual displayed date string on that page will not |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 hasn't been tested to verify it works right). Update: Seems this is an | 96 hasn't been tested to verify it works right). Update: Seems this is an |
97 issue we get because we're using fts2 instead of fts3. | 97 issue we get because we're using fts2 instead of fts3. |
98 - shell_icu.c is a Chrome-specific file used to load our ICU data. shell.c | 98 - shell_icu.c is a Chrome-specific file used to load our ICU data. shell.c |
99 has been modifed to call into shell_icu.c. | 99 has been modifed to call into shell_icu.c. |
100 - fts2_icu.c has a critical bug. U8_NEXT is used over a UTF-16 string. It's | 100 - fts2_icu.c has a critical bug. U8_NEXT is used over a UTF-16 string. It's |
101 rep$ by U16_NEXT (jungshik) | 101 rep$ by U16_NEXT (jungshik) |
102 - Added a new function sqlite3Preload we use to prime the database cache. It | 102 - Added a new function sqlite3Preload we use to prime the database cache. It |
103 allows much faster performance by reading the file in one contiguous | 103 allows much faster performance by reading the file in one contiguous |
104 operation rather than bringing it in organically, which involves a lot of | 104 operation rather than bringing it in organically, which involves a lot of |
105 seeking. | 105 seeking. |
OLD | NEW |