17 lines
717 B
MySQL
17 lines
717 B
MySQL
|
-- Verify camper:season_calendar on pg
|
||
|
|
||
|
begin;
|
||
|
|
||
|
select season_id
|
||
|
, season_range
|
||
|
from camper.season_calendar
|
||
|
where false;
|
||
|
|
||
|
select 1 / count(*) from pg_class where oid = 'camper.season_calendar'::regclass and relrowsecurity;
|
||
|
select 1 / count(*) from pg_policy where polname = 'guest_ok' and polrelid = 'camper.season_calendar'::regclass;
|
||
|
select 1 / count(*) from pg_policy where polname = 'insert_to_company' and polrelid = 'camper.season_calendar'::regclass;
|
||
|
select 1 / count(*) from pg_policy where polname = 'update_company' and polrelid = 'camper.season_calendar'::regclass;
|
||
|
select 1 / count(*) from pg_policy where polname = 'delete_from_company' and polrelid = 'camper.season_calendar'::regclass;
|
||
|
|
||
|
rollback;
|