- 07 Apr, 2010 1 commit
-
-
Vasu Nori authored
sqlite doesn't think corruption when it detects bad file header. on android, there should be no reason to try to open a database file and find a bad header. so, add android patch to sqlite to assume corruption when this occurs. Change-Id: I6b26613852b5247799af35a9c8e166b32ba697ff
-
- 23 Mar, 2010 1 commit
-
-
Vasu Nori authored
applying the following bug fixes http://www.sqlite.org/src/info/82dd61fccf Sync the database file after a rollback http://www.sqlite.org/src/info/6f368b5448 Modify the sqlite3_log() interface and implementation so that it never uses dynamic memory allocation - to avoid deadlocking when called while holding the memory allocator mutex. Change-Id: I93929d2dacd399ae9bd291404bcdf2c512691254
-
- 18 Mar, 2010 1 commit
-
-
Daisuke Miyakawa authored
in ja_JP locale. In the future, we may able to use PHONEBOOK_COLLATOR in the other locales, but we don't use the other phonebook collator now since we cannot estimate how impactful the change is. Now we have a customized phonebook collator in Japanese and we need it in ContactsProvider, we'll use only the collator. Do not use this collator in the other packages and locales now. We may decide revert it in the near future after furter investigatons. Need to submit I4dd1b047 to make this change actually effective. Without the change, we will have a phonebook collator for "previous" locale, not the current one. Bug: 2514026 Bug: 2373557 Bug: 2373553 Change-Id: If6f548c0a80fe01e779b4dfc46f74224003f1798
-
- 17 Mar, 2010 1 commit
-
-
Daisuke Miyakawa authored
Remove getPhoneticallySortableString() and its SQLite variant, both of which are now obsolete because we already have icu's collator. Remain getNormalizedString() but remove SQLite variant since the C function is used internally. Change-Id: If1e4b8388087b78e0f6418ac3c7be4c23f67ee0e
-
- 12 Mar, 2010 1 commit
-
-
Ray Chen authored
Change-Id: I9d5bd02f23882dd85e91075e897150cafa33ffe5
-
- 11 Mar, 2010 1 commit
-
-
Vasu Nori authored
-
- 10 Mar, 2010 1 commit
-
-
Vasu Nori authored
after the following CL is submitted, check this in Change-Id: If07d4f67facf9b5806b8cd11879bae51f8daf322 Change-Id: Ie3c20489265aebdb83657343d25f1e9ecb7f2d84
-
- 09 Mar, 2010 1 commit
-
-
Jean-Baptiste Queru authored
Change-Id: I9115b7d737cdcaa30d06beb750797b90986443cd
-
- 04 Mar, 2010 1 commit
-
-
Dmitri Plotnikov authored
Bug: 2487471 Change-Id: I90cef4eb2468c0a58067df984ee98da438aa0e5a
-
- 03 Mar, 2010 5 commits
-
-
Dmitri Plotnikov authored
-
Dmitri Plotnikov authored
Bug: 2407129 Change-Id: I8d83f9012846f61484b76f718e8127090eba39ec
-
-
-
Dmitri Plotnikov authored
This function will produce a normalized upper case first letter from a given string. Bug: 2407129 Change-Id: Idfafca04342d43ef43cfdff0e431e0a6a8cf5c68
-
- 02 Mar, 2010 1 commit
-
-
Vasu Nori authored
this is redoing the reverted CL https://android-git.corp.google.com/g/#change,42672
-
- 01 Mar, 2010 3 commits
-
-
Vasu Nori authored
-
Vasu Nori authored
sqlite3 from DRH broke mac builds.
-
Vasu Nori authored
this will remove a lot of android specific code from sqlite in external/sqlite/dist. we are getting closer to using the public domain sqlite. ******* NOTE TO REVIEWERS ********* to compare, don't use gerrit. that will compare this sqlite3.c with the currently-checkin version, showing you the differences between this sqlite version and the previous sqlite version. you may not care about that. if you just need to see what android changes to sqlite are, then compare the following two files in this CL sqlite3.c.orig sqlite3.c
-
- 23 Feb, 2010 1 commit
-
-
Vasu Nori authored
log a message until sqlite guy gives me a fix to implement logging of such events in a more elegant way (like sqlite3_trace)
-
- 18 Feb, 2010 3 commits
-
-
Vasu Nori authored
-
Vasu Nori authored
-
Vasu Nori authored
this STOPSHIP CL is adding to the previous STOPSHIP CL for this class of bugs https://android-git.corp.google.com/g/#change,40395
-
- 11 Feb, 2010 1 commit
-
-
Vasu Nori authored
this CL wil have to be reverted before shipping. thats why the STOPSHIP comment all over this CL. goal is to get stacktrace to help debug http://b/2419869 because it is intermittently occuring bug and sqlite3 doesn't give enough info when this error occurs. Richard Hipp of sqlite is going to send a patch that will provide additional info when this error occurs.
-
- 06 Feb, 2010 1 commit
-
-
Vasu Nori authored
that CL isn't so useful. and it introduced a bug too: http://b/issue?id=2418478 plus, it added code to sqlite3.c. need to avoid doing that wherever possible
-
- 05 Feb, 2010 5 commits
-
-
Vasu Nori authored
-
Vasu Nori authored
patch from sqlite is http://www.sqlite.org/src/ci/26cb1df735
-
The Android Open Source Project authored
Merge commit 'c944e589' * commit 'c944e589': android-2.1_r1 snapshot
-
The Android Open Source Project authored
Merge commit 'fbe53add' into eclair-plus-aosp * commit 'fbe53add': android-2.1_r1 snapshot
-
The Android Open Source Project authored
-
- 02 Feb, 2010 1 commit
-
-
Vasu Nori authored
-
- 30 Jan, 2010 1 commit
-
-
Vasu Nori authored
When database close() fails, sqlite gives a cryptic message "unable to close due to unfinalised statements". Added more info to this message to help developer look at one of the sql statements that is not finalized and is causing this problem.
-
- 29 Jan, 2010 1 commit
-
-
The Android Open Source Project authored
-
- 28 Jan, 2010 1 commit
-
-
Vasu Nori authored
-
- 22 Jan, 2010 2 commits
-
-
Vasu Nori authored
it has 2 bugs (1) needs to be extended to return strings longer than 1K (2) the following bug create table a1 (i int, j varchar(5)); insert 2 rows with j = '' insert into a1 values(1,''); insert into a1 values(1,''); insert 2 rows with j = null insert into a1 (i) values (2); insert into a1 (i) values (2); with original sqlite3 groupConcat func select length(group_concat(j,' ')) from a1 where i = 1; result is 1 with android sqlite3 groupConcat func select length(group_concat(j,' ')) from a1 where i = 2; result is 0
-
Vasu Nori authored
unsupported file format error causes the database file NOT be deleted. and that makes the app not recoverable. by making it corruption error, db will get removed and app will get re-inited, even though removing the DB is on corruption is extreme. but that is a different issue..
-
- 21 Jan, 2010 2 commits
-
-
Vasu Nori authored
this should help in identifying the line of code in sqlite3.c reporting database corruption. this is a redo of this CL: https://android-git.corp.google.com/g/#change,37799 (because the old CL was submitted to master branch, but I meant to submit it to mr3)
- 20 Jan, 2010 2 commits
-
-
Vasu Nori authored
you should notice the following from the Android changes in 3.5.9 1. Android Changes are grouped wherever possible. To Do 1. sqlite3_get_pager_stats() needs to be completed 2. Android change lines 63480-63482 on master branch in sqlite3.c is not ported yet. can't see where it goes in 3.6.22 code.
-
Vasu Nori authored
this should help in identifying the line of code in sqlite3.c reporting database corruption.
-
- 12 Jan, 2010 1 commit
-
-
The Android Open Source Project authored
-