diff options
| author | Vasu Nori <vnori@google.com> | 2010-10-25 12:07:57 -0700 |
|---|---|---|
| committer | Android (Google) Code Review <android-gerrit@google.com> | 2010-10-25 12:07:57 -0700 |
| commit | ba42fb3a25fd1db834c6e4fa44ca326bd681ce64 (patch) | |
| tree | 6a73aaccc6337d00acf6562749d8ee968c2198e0 /core | |
| parent | 23f22430880876a076ad3ef0f624eba471a2f6dc (diff) | |
| parent | 74fb2685e229b3c68d16e6f2ad6635aad69ca3b8 (diff) | |
| download | frameworks_base-ba42fb3a25fd1db834c6e4fa44ca326bd681ce64.zip frameworks_base-ba42fb3a25fd1db834c6e4fa44ca326bd681ce64.tar.gz frameworks_base-ba42fb3a25fd1db834c6e4fa44ca326bd681ce64.tar.bz2 | |
Merge "when printing cache-full warning, print the sql statements in cache"
Diffstat (limited to 'core')
| -rw-r--r-- | core/java/android/database/sqlite/SQLiteDatabase.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/core/java/android/database/sqlite/SQLiteDatabase.java b/core/java/android/database/sqlite/SQLiteDatabase.java index 0e921e9..54cdba2 100644 --- a/core/java/android/database/sqlite/SQLiteDatabase.java +++ b/core/java/android/database/sqlite/SQLiteDatabase.java @@ -2130,6 +2130,11 @@ public class SQLiteDatabase extends SQLiteClosable { Log.w(TAG, "Reached MAX size for compiled-sql statement cache for database " + getPath() + ". Use setMaxSqlCacheSize() to increase cachesize. "); mCacheFullWarning = true; + // STOPSHIP enclose the following warnings with "if (SQLiteDebug.DEBUG_SQL_CACHE)" + Log.d(TAG, "Here are the SQL statements in Cache of database: " + mPath); + for (String s : mCompiledQueries.keySet()) { + Log.d(TAG, "Sql stament in Cache: " + s); + } } /* add the given SQLiteCompiledSql compiledStatement to cache. * no need to worry about the cache size - because {@link #mCompiledQueries} |
