summaryrefslogtreecommitdiffstats
path: root/src/com
diff options
context:
space:
mode:
authorDaniel Lehmann <lehmannd@google.com>2011-08-26 15:09:35 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2011-08-26 15:09:35 -0700
commite291c7c5222ccdfc8c0832d7c3bd7f989030dfb1 (patch)
treee5b0d1052349efc93ca7ada850442d9c37592fcf /src/com
parent0fa55000b5c92dd26828178ed4e3d1013c80721a (diff)
parent2c4caaa35be9f8909e8eee26142c4747bbf65aac (diff)
downloadpackages_providers_ContactsProvider-e291c7c5222ccdfc8c0832d7c3bd7f989030dfb1.zip
packages_providers_ContactsProvider-e291c7c5222ccdfc8c0832d7c3bd7f989030dfb1.tar.gz
packages_providers_ContactsProvider-e291c7c5222ccdfc8c0832d7c3bd7f989030dfb1.tar.bz2
Merge "Fix the creation of the search_index table when the aggregation mode changes"
Diffstat (limited to 'src/com')
-rw-r--r--src/com/android/providers/contacts/ContactsDatabaseHelper.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/com/android/providers/contacts/ContactsDatabaseHelper.java b/src/com/android/providers/contacts/ContactsDatabaseHelper.java
index f7847dd..4fefb79 100644
--- a/src/com/android/providers/contacts/ContactsDatabaseHelper.java
+++ b/src/com/android/providers/contacts/ContactsDatabaseHelper.java
@@ -2241,6 +2241,7 @@ import java.util.Locale;
}
if (upgradeSearchIndex) {
+ createSearchIndexTable(db);
setProperty(db, SearchIndexManager.PROPERTY_SEARCH_INDEX_VERSION, "0");
}