12 lines
147 B
MySQL
12 lines
147 B
MySQL
|
-- Verify numerus:invoice_amount on pg
|
||
|
|
||
|
begin;
|
||
|
|
||
|
select invoice_id
|
||
|
, subtotal
|
||
|
, total
|
||
|
from numerus.invoice_amount
|
||
|
where false;
|
||
|
|
||
|
rollback;
|