mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-21 22:27:08 +00:00
fmt
This commit is contained in:
parent
0066a4b42b
commit
a5bcd0834b
|
@ -288,12 +288,16 @@ unused_person_aggregates_update_result AS (
|
||||||
|
|
||||||
CALL r.create_triggers ('post', $$ WITH post_group AS (
|
CALL r.create_triggers ('post', $$ WITH post_group AS (
|
||||||
SELECT
|
SELECT
|
||||||
(post).community_id, (post).creator_id, (post).local, coalesce(sum(count_diff), 0) AS posts,
|
(post).community_id, (post).creator_id, (post).local, coalesce(sum(count_diff), 0) AS posts, coalesce(sum(count_diff * (
|
||||||
coalesce(sum(count_diff * (SELECT comments FROM post_aggregates WHERE post_id = (post).id LIMIT 1)), 0) AS comments FROM combined_transition_tables
|
SELECT
|
||||||
WHERE
|
comments
|
||||||
NOT ((post).deleted
|
FROM post_aggregates
|
||||||
OR (post).removed)
|
WHERE
|
||||||
GROUP BY GROUPING SETS ((post).community_id, (post).creator_id, (post).local)
|
post_id = (post).id LIMIT 1)), 0) AS comments FROM combined_transition_tables
|
||||||
|
WHERE
|
||||||
|
NOT ((post).deleted
|
||||||
|
OR (post).removed)
|
||||||
|
GROUP BY GROUPING SETS ((post).community_id, (post).creator_id, (post).local)
|
||||||
), unused_person_aggregates_update_result AS ( UPDATE
|
), unused_person_aggregates_update_result AS ( UPDATE
|
||||||
person_aggregates AS a
|
person_aggregates AS a
|
||||||
SET
|
SET
|
||||||
|
|
Loading…
Reference in a new issue