mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
fix GetParentPosts() query
This commit is contained in:
@@ -331,7 +331,7 @@ func TestGetPosts(t *testing.T) {
|
||||
t.Fatal("wrong order")
|
||||
}
|
||||
|
||||
if len(r1.Posts) != 4 {
|
||||
if len(r1.Posts) != 2 { // 3a1 and 3; 3a1's parent already there
|
||||
t.Fatal("wrong size")
|
||||
}
|
||||
|
||||
@@ -345,7 +345,7 @@ func TestGetPosts(t *testing.T) {
|
||||
t.Fatal("wrong order")
|
||||
}
|
||||
|
||||
if len(r2.Posts) != 4 {
|
||||
if len(r2.Posts) != 3 { // 2 and 1a1; + 1a1's parent
|
||||
t.Log(r2.Posts)
|
||||
t.Fatal("wrong size")
|
||||
}
|
||||
|
||||
@@ -343,9 +343,9 @@ func (s SqlPostStore) getParentsPosts(channelId string, offset int, limit int) S
|
||||
WHERE
|
||||
ChannelId = :ChannelId1
|
||||
AND DeleteAt = 0
|
||||
AND RootId <> ''
|
||||
ORDER BY CreateAt DESC
|
||||
LIMIT :Limit OFFSET :Offset) q3) q1 ON q1.RootId = q2.RootId
|
||||
LIMIT :Limit OFFSET :Offset) q3
|
||||
WHERE q3.RootId != '') q1 ON q1.RootId = q2.Id
|
||||
WHERE
|
||||
ChannelId = :ChannelId2
|
||||
AND DeleteAt = 0
|
||||
|
||||
@@ -374,7 +374,7 @@ func TestPostStoreGetPostsWtihDetails(t *testing.T) {
|
||||
t.Fatal("invalid order")
|
||||
}
|
||||
|
||||
if len(r1.Posts) != 6 {
|
||||
if len(r1.Posts) != 5 { //the last 4, + o1 (o3 and o2a's parent)
|
||||
t.Fatal("wrong size")
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user