HomeSort by relevance Sort by last modified time
    Searched full:agg_exceptions (Results 1 - 5 of 5) sorted by null

  /packages/providers/ContactsProvider/tests/assets/upgradeTest/
contacts2_1108.sql 41 CREATE TABLE agg_exceptions (_id INTEGER PRIMARY KEY AUTOINCREMENT,type INTEGER NOT NULL, raw_contact_id1 INTEGER REFERENCES raw_contacts(_id), raw_contact_id2 INTEGER REFERENCES raw_contacts(_id)); table
88 INSERT INTO "sqlite_stat1" VALUES('agg_exceptions',NULL,'10');
134 CREATE UNIQUE INDEX aggregation_exception_index1 ON agg_exceptions (raw_contact_id1, raw_contact_id2);
135 CREATE UNIQUE INDEX aggregation_exception_index2 ON agg_exceptions (raw_contact_id2, raw_contact_id1);
149 CREATE TRIGGER raw_contacts_deleted BEFORE DELETE ON raw_contacts BEGIN DELETE FROM data WHERE raw_contact_id=OLD._id; DELETE FROM agg_exceptions WHERE raw_contact_id1=OLD._id OR raw_contact_id2=OLD._id; DELETE FROM visible_contacts WHERE _id=OLD.contact_id AND (SELECT COUNT(*) FROM raw_contacts WHERE contact_id=OLD.contact_id )=1; DELETE FROM default_directory WHERE _id=OLD.contact_id AND (SELECT COUNT(*) FROM raw_contacts WHERE contact_id=OLD.contact_id )=1; DELETE FROM contacts WHERE _id=OLD.contact_id AND (SELECT COUNT(*) FROM raw_contacts WHERE contact_id=OLD.contact_id )=1; END;
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
ContactAggregator.java 525 + " ON (agg_exceptions.raw_contact_id1 = raw_contacts1._id) "
527 + " ON (agg_exceptions.raw_contact_id2 = raw_contacts2._id) ";
    [all...]
AbstractContactAggregator.java     [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactsDatabaseHelper.java 141 public static final String AGGREGATION_EXCEPTIONS = "agg_exceptions";
    [all...]
ContactsProvider2.java     [all...]

Completed in 1110 milliseconds