numerus/verify/country.sql

12 lines
143 B
PL/PgSQL

-- Verify numerus:country on pg
begin;
select country_code
, name
, postal_code_regex
from numerus.country
where false;
rollback;