12 lines
148 B
PL/PgSQL
12 lines
148 B
PL/PgSQL
-- Verify numerus:quote_tax_amount on pg
|
|
|
|
begin;
|
|
|
|
select quote_id
|
|
, tax_id
|
|
, amount
|
|
from numerus.quote_tax_amount
|
|
where false;
|
|
|
|
rollback;
|