The calendar appear force close.

Login a Gmail account A and a Exchange email account B
of qq type in calendar.
create new event ,and invite guests.
Receive invitation email and click the notification to check
the invitation email content,then back to email main interface
->enter the invitation email again->click the "VIEW IN CALENDAR"
option->long press the link->click the "COPY" button->press back
key ->observe,calendar anr.

The sqlite do not have the row name "ownerAccount".

CRs-fixed: 978600
Change-Id: I0b0ef044a2328de85c6f8a94195383d93565667a
diff --git a/src/com/android/calendar/GoogleCalendarUriIntentFilter.java b/src/com/android/calendar/GoogleCalendarUriIntentFilter.java
index fef89e8..f3d5002 100644
--- a/src/com/android/calendar/GoogleCalendarUriIntentFilter.java
+++ b/src/com/android/calendar/GoogleCalendarUriIntentFilter.java
@@ -148,8 +148,7 @@
                     final String syncId = eidParts[0];
                     final String ownerAccount = eidParts[1];
                     if (debug) Log.d(TAG, "eidParts=" + syncId + "/" + ownerAccount);
-                    final String selection = Events._SYNC_ID + " LIKE \"%" + syncId + "\" AND "
-                            + Calendars.OWNER_ACCOUNT + " LIKE \"" + ownerAccount + "\"";
+                    final String selection = Events._SYNC_ID + " LIKE \"%" + syncId + "\"";
 
                     if (debug) Log.d(TAG, "selection: " + selection);
                     Cursor eventCursor = getContentResolver().query(Events.CONTENT_URI,