Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(957)

Side by Side Diff: third_party/sqlite/README.chromium

Issue 174232: Chromium side patch for DB support on Linux. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Final version, including changes to the DEPS file. Created 11 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/renderer/renderer_webkitclient_impl.cc ('k') | third_party/sqlite/src/os_unix.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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.
OLDNEW
« no previous file with comments | « chrome/renderer/renderer_webkitclient_impl.cc ('k') | third_party/sqlite/src/os_unix.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698