14 lines
361 B
MySQL
14 lines
361 B
MySQL
|
-- Verify numerus:expense_payment on pg
|
||
|
|
||
|
begin;
|
||
|
|
||
|
select expense_id
|
||
|
, payment_id
|
||
|
from numerus.expense_payment
|
||
|
where false;
|
||
|
|
||
|
select 1 / count(*) from pg_class where oid = 'numerus.expense_payment'::regclass and relrowsecurity;
|
||
|
select 1 / count(*) from pg_policy where polname = 'company_policy' and polrelid = 'numerus.expense_payment'::regclass;
|
||
|
|
||
|
rollback;
|