2023-06-08 20:15:15 +00:00
|
|
|
-- Remove the new columns
|
2023-08-02 16:44:51 +00:00
|
|
|
ALTER TABLE post_aggregates
|
|
|
|
DROP COLUMN hot_rank;
|
2023-06-08 20:15:15 +00:00
|
|
|
|
2023-08-02 16:44:51 +00:00
|
|
|
ALTER TABLE post_aggregates
|
|
|
|
DROP COLUMN hot_rank_active;
|
2023-06-08 20:15:15 +00:00
|
|
|
|
2023-08-02 16:44:51 +00:00
|
|
|
ALTER TABLE comment_aggregates
|
|
|
|
DROP COLUMN hot_rank;
|
2023-06-08 20:15:15 +00:00
|
|
|
|
2023-08-02 16:44:51 +00:00
|
|
|
ALTER TABLE community_aggregates
|
|
|
|
DROP COLUMN hot_rank;
|
2023-06-08 20:15:15 +00:00
|
|
|
|
|
|
|
-- Drop some new indexes
|
2023-08-02 16:44:51 +00:00
|
|
|
DROP INDEX idx_post_aggregates_score;
|
|
|
|
|
|
|
|
DROP INDEX idx_post_aggregates_published;
|
|
|
|
|
|
|
|
DROP INDEX idx_post_aggregates_newest_comment_time;
|
|
|
|
|
|
|
|
DROP INDEX idx_post_aggregates_newest_comment_time_necro;
|
|
|
|
|
|
|
|
DROP INDEX idx_post_aggregates_featured_community;
|
|
|
|
|
|
|
|
DROP INDEX idx_post_aggregates_featured_local;
|
2023-06-08 20:15:15 +00:00
|
|
|
|
|
|
|
-- Recreate the old indexes
|
|
|
|
CREATE INDEX idx_post_aggregates_featured_local_newest_comment_time ON public.post_aggregates USING btree (featured_local DESC, newest_comment_time DESC);
|
2023-08-02 16:44:51 +00:00
|
|
|
|
2023-06-08 20:15:15 +00:00
|
|
|
CREATE INDEX idx_post_aggregates_featured_community_newest_comment_time ON public.post_aggregates USING btree (featured_community DESC, newest_comment_time DESC);
|
2023-08-02 16:44:51 +00:00
|
|
|
|
2023-06-08 20:15:15 +00:00
|
|
|
CREATE INDEX idx_post_aggregates_featured_local_comments ON public.post_aggregates USING btree (featured_local DESC, comments DESC);
|
2023-08-02 16:44:51 +00:00
|
|
|
|
2023-06-08 20:15:15 +00:00
|
|
|
CREATE INDEX idx_post_aggregates_featured_community_comments ON public.post_aggregates USING btree (featured_community DESC, comments DESC);
|
2023-08-02 16:44:51 +00:00
|
|
|
|
|
|
|
CREATE INDEX idx_post_aggregates_featured_local_hot ON public.post_aggregates USING btree (featured_local DESC, hot_rank ((score)::numeric, published) DESC, published DESC);
|
|
|
|
|
|
|
|
CREATE INDEX idx_post_aggregates_featured_community_hot ON public.post_aggregates USING btree (featured_community DESC, hot_rank ((score)::numeric, published) DESC, published DESC);
|
|
|
|
|
2023-06-08 20:15:15 +00:00
|
|
|
CREATE INDEX idx_post_aggregates_featured_local_score ON public.post_aggregates USING btree (featured_local DESC, score DESC);
|
2023-08-02 16:44:51 +00:00
|
|
|
|
2023-06-08 20:15:15 +00:00
|
|
|
CREATE INDEX idx_post_aggregates_featured_community_score ON public.post_aggregates USING btree (featured_community DESC, score DESC);
|
2023-08-02 16:44:51 +00:00
|
|
|
|
2023-06-08 20:15:15 +00:00
|
|
|
CREATE INDEX idx_post_aggregates_featured_local_published ON public.post_aggregates USING btree (featured_local DESC, published DESC);
|
2023-08-02 16:44:51 +00:00
|
|
|
|
2023-06-08 20:15:15 +00:00
|
|
|
CREATE INDEX idx_post_aggregates_featured_community_published ON public.post_aggregates USING btree (featured_community DESC, published DESC);
|
|
|
|
|
2023-08-02 16:44:51 +00:00
|
|
|
CREATE INDEX idx_post_aggregates_featured_local_active ON public.post_aggregates USING btree (featured_local DESC, hot_rank ((score)::numeric, newest_comment_time_necro) DESC, newest_comment_time_necro DESC);
|
|
|
|
|
|
|
|
CREATE INDEX idx_post_aggregates_featured_community_active ON public.post_aggregates USING btree (featured_community DESC, hot_rank ((score)::numeric, newest_comment_time_necro) DESC, newest_comment_time_necro DESC);
|
|
|
|
|
|
|
|
CREATE INDEX idx_comment_aggregates_hot ON public.comment_aggregates USING btree (hot_rank ((score)::numeric, published) DESC, published DESC);
|
|
|
|
|
|
|
|
CREATE INDEX idx_community_aggregates_hot ON public.community_aggregates USING btree (hot_rank ((subscribers)::numeric, published) DESC, published DESC);
|
2023-06-08 20:15:15 +00:00
|
|
|
|