camper/verify/invoice_product_amount.sql

12 lines
169 B
PL/PgSQL

-- Verify camper:invoice_product_amount on pg
begin;
select invoice_product_id
, subtotal
, total
from camper.invoice_product_amount
where false;
rollback;