12 lines
154 B
MySQL
12 lines
154 B
MySQL
|
-- Verify numerus:currency on pg
|
||
|
|
||
|
begin;
|
||
|
|
||
|
select currency_code
|
||
|
, currency_symbol
|
||
|
, decimal_digits
|
||
|
from numerus.currency
|
||
|
where false;
|
||
|
|
||
|
rollback;
|