11 lines
134 B
PL/PgSQL
11 lines
134 B
PL/PgSQL
-- Verify numerus:invoice_status on pg
|
|
|
|
begin;
|
|
|
|
select invoice_status
|
|
, name
|
|
from numerus.invoice_status
|
|
where false;
|
|
|
|
rollback;
|