query-debug-3
Some checks failed
Deploy on push / deploy (push) Failing after 6s

This commit is contained in:
Untone 2024-04-09 21:39:59 +03:00
parent 1b00086148
commit 23288d1f91

View File

@ -31,7 +31,9 @@ def add_topic_stat_columns(q):
aliased_authors.author == Author.id, aliased_authors.author == Author.id,
Topic.id.in_(select(ShoutTopic.topic).where(ShoutTopic.shout == aliased_shout.id)) Topic.id.in_(select(ShoutTopic.topic).where(ShoutTopic.shout == aliased_shout.id))
)) ))
q = q.add_columns(func.count(distinct(aliased_authors.author)).label('authors_stat')) q = q.select_from(join(Topic, Author)).add_columns(
func.count(distinct(aliased_authors.author)).label('authors_stat')
)
# followers # followers
q = q.outerjoin(aliased_followers, aliased_followers.topic == Topic.id) q = q.outerjoin(aliased_followers, aliased_followers.topic == Topic.id)