Hijack an unused projection.

This was unused, and I want to write a query in Exchange
that wants to get a message's mailbox key, so I'm taking
this over.

Change-Id: I142394bfd30df8c88c5e1b48347a8532a4758857
This commit is contained in:
Yu Ping Hu 2013-07-18 11:54:10 -07:00
parent 765dc3d552
commit 966f237e77
1 changed files with 3 additions and 4 deletions

View File

@ -683,10 +683,9 @@ public abstract class EmailContent {
RECORD_ID, SyncColumns.SERVER_ID
};
public static final int ID_MAILBOX_COLUMN_ID = 0;
public static final int ID_MAILBOX_COLUMN_MAILBOX_KEY = 1;
public static final String[] ID_MAILBOX_PROJECTION = new String[] {
RECORD_ID, MessageColumns.MAILBOX_KEY
public static final int MAILBOX_COLUMN_MAILBOX_KEY = 0;
public static final String[] MAILBOX_PROJECTION = new String[] {
MessageColumns.MAILBOX_KEY
};
public static final String[] ID_COLUMN_PROJECTION = new String[] { RECORD_ID };