Combined two sub queries

This commit is contained in:
M66B
2023-12-19 13:39:05 +01:00
parent be926fcc9a
commit 922b4dfb31
4 changed files with 57 additions and 29 deletions

View File

@@ -53,8 +53,7 @@ public class TupleMessageEx extends EntityMessage {
public String identityEmail;
public Integer identityColor;
public Boolean identitySynchronize;
public Address[] senders;
public Address[] recipients;
public Address[][] addresses;
public int count;
public int unseen;
public int unflagged;
@@ -160,8 +159,8 @@ public class TupleMessageEx extends EntityMessage {
Objects.equals(this.identityEmail, other.identityEmail) &&
Objects.equals(this.identityColor, other.identityColor) &&
Objects.equals(this.identitySynchronize, other.identitySynchronize) &&
MessageHelper.equal(this.senders, other.senders) &&
MessageHelper.equal(this.recipients, other.recipients) &&
MessageHelper.equal(this.addresses[0], other.addresses[0]) &&
MessageHelper.equal(this.addresses[1], other.addresses[1]) &&
this.count == other.count &&
this.unseen == other.unseen &&
this.unflagged == other.unflagged &&