15 lines
321 B
PL/PgSQL
15 lines
321 B
PL/PgSQL
-- Verify numerus:tag on pg
|
|
|
|
begin;
|
|
|
|
select tag_id
|
|
, company_id
|
|
, name
|
|
from numerus.tag
|
|
where false;
|
|
|
|
select 1 / count(*) from pg_class where oid = 'numerus.tag'::regclass and relrowsecurity;
|
|
select 1 / count(*) from pg_policy where polname = 'company_policy' and polrelid = 'numerus.tag'::regclass;
|
|
|
|
rollback;
|