annotate schema/updates/1424/01.add_axis_rls.sql @ 5559:ce9a9a1bf92f

Make invalid output of ISRSrange_area() less likely, next try Since ST_MakeValid() might return a collection of lower-to-equal dimension geometries, distill only the polygons from it. This should prevent respective errors when trying to save the result to a column of type MultiPolygon.
author Tom Gottfried <tom@intevation.de>
date Thu, 02 Dec 2021 12:37:33 +0100
parents 7dff1015283d
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
5013
7dff1015283d Add row level security policies for waterway axis
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
1 CREATE POLICY hide_nothing ON waterway.waterway_axis
7dff1015283d Add row level security policies for waterway axis
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
2 FOR SELECT TO waterway_user USING (true);
7dff1015283d Add row level security policies for waterway axis
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
3 CREATE POLICY sys_admin ON waterway.waterway_axis
7dff1015283d Add row level security policies for waterway axis
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
4 FOR ALL TO sys_admin USING (true);
7dff1015283d Add row level security policies for waterway axis
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
5
7dff1015283d Add row level security policies for waterway axis
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
6 CREATE POLICY responsibility_area_insert ON waterway.waterway_axis
7dff1015283d Add row level security policies for waterway axis
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
7 FOR INSERT TO waterway_admin
7dff1015283d Add row level security policies for waterway axis
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
8 WITH CHECK (users.utm_covers(wtwaxs));
7dff1015283d Add row level security policies for waterway axis
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
9 CREATE POLICY responsibility_area_update ON waterway.waterway_axis
7dff1015283d Add row level security policies for waterway axis
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
10 FOR UPDATE TO waterway_admin
7dff1015283d Add row level security policies for waterway axis
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
11 USING (users.utm_covers(wtwaxs));
7dff1015283d Add row level security policies for waterway axis
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
12 CREATE POLICY responsibility_area_delete ON waterway.waterway_axis
7dff1015283d Add row level security policies for waterway axis
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
13 FOR DELETE TO waterway_admin
7dff1015283d Add row level security policies for waterway axis
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
14 USING (users.utm_covers(wtwaxs));
7dff1015283d Add row level security policies for waterway axis
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
15
7dff1015283d Add row level security policies for waterway axis
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
16 ALTER TABLE waterway.waterway_axis ENABLE ROW LEVEL SECURITY;