19 lines
705 B
PL/PgSQL
19 lines
705 B
PL/PgSQL
-- Verify camper:location on pg
|
|
|
|
begin;
|
|
|
|
select company_id
|
|
, directions
|
|
, map_embed
|
|
, opening_dates
|
|
from camper.location
|
|
where false;
|
|
|
|
select 1 / count(*) from pg_class where oid = 'camper.location'::regclass and relrowsecurity;
|
|
select 1 / count(*) from pg_policy where polname = 'guest_ok' and polrelid = 'camper.location'::regclass;
|
|
select 1 / count(*) from pg_policy where polname = 'insert_to_company' and polrelid = 'camper.location'::regclass;
|
|
select 1 / count(*) from pg_policy where polname = 'update_company' and polrelid = 'camper.location'::regclass;
|
|
select 1 / count(*) from pg_policy where polname = 'delete_from_company' and polrelid = 'camper.location'::regclass;
|
|
|
|
rollback;
|