Commit a8e5bf5c authored by Ivan A. Shmakov's avatar Ivan A. Shmakov

Update JdbcPersistenceManager.java

parent eb4371d7
......@@ -629,6 +629,7 @@ public class JdbcPersistenceManager implements PersistenceManager {
}
}
querySB.append(" )");
querySB.append(SELECT_CONVERSATIONS_GROUP_BY);
querySB.append(" ORDER BY ").append(CONVERSATION_END_TIME);
Connection con = null;
......@@ -686,6 +687,8 @@ public class JdbcPersistenceManager implements PersistenceManager {
querySB.append(CONVERSATION_START_TIME).append(" = ? ");
}
}
querySB.append(SELECT_CONVERSATIONS_GROUP_BY);
try {
con = DbConnectionManager.getConnection();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment