From 74fb2685e229b3c68d16e6f2ad6635aad69ca3b8 Mon Sep 17 00:00:00 2001 From: Vasu Nori Date: Mon, 25 Oct 2010 11:48:24 -0700 Subject: [PATCH] when printing cache-full warning, print the sql statements in cache this should help debug developers in idetifying the sql statements taking up cache slots Change-Id: Ibc0140c273adc5c8d58ab359d2c4d4ce14b6b63b --- core/java/android/database/sqlite/SQLiteDatabase.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/core/java/android/database/sqlite/SQLiteDatabase.java b/core/java/android/database/sqlite/SQLiteDatabase.java index 0e921e941ad9f..54cdba2f5f8da 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}