]> Untitled Git - lemmy.git/commitdiff
remove performance-problematic and buggy duplicate site aggregates (#3732)
authorphiresky <phireskyde+git@gmail.com>
Thu, 27 Jul 2023 21:35:53 +0000 (23:35 +0200)
committerGitHub <noreply@github.com>
Thu, 27 Jul 2023 21:35:53 +0000 (23:35 +0200)
migrations/2023-07-26-222023_site-aggregates-one/down.sql [new file with mode: 0644]
migrations/2023-07-26-222023_site-aggregates-one/up.sql [new file with mode: 0644]

diff --git a/migrations/2023-07-26-222023_site-aggregates-one/down.sql b/migrations/2023-07-26-222023_site-aggregates-one/down.sql
new file mode 100644 (file)
index 0000000..f384785
--- /dev/null
@@ -0,0 +1,11 @@
+create or replace function site_aggregates_site()
+returns trigger language plpgsql
+as $$
+begin
+  IF (TG_OP = 'INSERT') THEN
+    insert into site_aggregates (site_id) values (NEW.id);
+  ELSIF (TG_OP = 'DELETE') THEN
+    delete from site_aggregates where site_id = OLD.id;
+  END IF;
+  return null;
+end $$;
\ No newline at end of file
diff --git a/migrations/2023-07-26-222023_site-aggregates-one/up.sql b/migrations/2023-07-26-222023_site-aggregates-one/up.sql
new file mode 100644 (file)
index 0000000..7ed4031
--- /dev/null
@@ -0,0 +1,15 @@
+create or replace function site_aggregates_site()
+returns trigger language plpgsql
+as $$
+begin
+  -- we only ever want to have a single value in site_aggregate because the site_aggregate triggers update all rows in that table.
+  -- a cleaner check would be to insert it for the local_site but that would break assumptions at least in the tests
+  IF (TG_OP = 'INSERT') AND NOT EXISTS (select id from site_aggregates limit 1) THEN
+    insert into site_aggregates (site_id) values (NEW.id);
+  ELSIF (TG_OP = 'DELETE') THEN
+    delete from site_aggregates where site_id = OLD.id;
+  END IF;
+  return null;
+end $$;
+
+delete from site_aggregates a where not exists (select id from local_site s where s.site_id = a.site_id);
\ No newline at end of file