From 879fa084c9bea87f655dc3025928a251a845980a Mon Sep 17 00:00:00 2001 From: Jason Rossman Date: Thu, 27 Aug 2015 12:45:47 -0600 Subject: fix GetParentPosts() query --- store/sql_post_store.go | 4 ++-- store/sql_post_store_test.go | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'store') diff --git a/store/sql_post_store.go b/store/sql_post_store.go index 81405c620..78361270e 100644 --- a/store/sql_post_store.go +++ b/store/sql_post_store.go @@ -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 diff --git a/store/sql_post_store_test.go b/store/sql_post_store_test.go index 336a20d98..5855607fd 100644 --- a/store/sql_post_store_test.go +++ b/store/sql_post_store_test.go @@ -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") } -- cgit v1.2.3-1-g7c22