2023-07-17 09:05:55 +00:00
|
|
|
-- Your SQL goes here
|
2023-08-02 16:44:51 +00:00
|
|
|
CREATE INDEX idx_community_aggregates_nonzero_hotrank ON community_aggregates (published)
|
|
|
|
WHERE
|
|
|
|
hot_rank != 0;
|
|
|
|
|
|
|
|
CREATE INDEX idx_comment_aggregates_nonzero_hotrank ON comment_aggregates (published)
|
|
|
|
WHERE
|
|
|
|
hot_rank != 0;
|
|
|
|
|
|
|
|
CREATE INDEX idx_post_aggregates_nonzero_hotrank ON post_aggregates (published DESC)
|
|
|
|
WHERE
|
|
|
|
hot_rank != 0 OR hot_rank_active != 0;
|
|
|
|
|