Merge "update carrierIdProvider index with IccId"
diff --git a/src/com/android/providers/telephony/TelephonyProvider.java b/src/com/android/providers/telephony/TelephonyProvider.java
index c33f485..8ae3475 100644
--- a/src/com/android/providers/telephony/TelephonyProvider.java
+++ b/src/com/android/providers/telephony/TelephonyProvider.java
@@ -2569,9 +2569,7 @@
SQLiteDatabase db = getWritableDatabase();
try {
- // Replace on conflict so that if same APN is present in db with edited
- // as UNEDITED or USER/CARRIER_DELETED, it is replaced with
- // edited USER/CARRIER_EDITED
+ // Abort on conflict of unique fields and attempt merge
long rowID = db.insertWithOnConflict(CARRIERS_TABLE, null, values,
SQLiteDatabase.CONFLICT_ABORT);
if (rowID >= 0) {