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 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
99 our ICU data. shell.c has been modifed to call into these files. | 99 our ICU data. shell.c has been modifed to call into these files. |
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. |
106 - Added a new function chromium_sqlite3_initialize_win_sqlite3_file() | 106 - Added a new function chromium_sqlite3_initialize_win_sqlite3_file() |
107 at the end of os_win.c. It allows the Windows-specific Chromium VFS | 107 at the end of os_win.c. It allows the Windows-specific Chromium VFS |
108 to reuse most of the win32 SQLite VFS. | 108 to reuse most of the win32 SQLite VFS. |
| 109 - Added a new function initUnixFile() and made fillInUnixFile() |
| 110 non-static in os_unix.c. It allows the Linux-specific Chromium VFS |
| 111 to reuse most of the unix SQLite VFS. |
OLD | NEW |