12 lines
142 B
PL/PgSQL
12 lines
142 B
PL/PgSQL
-- Verify camper:country_i18n on pg
|
|
|
|
begin;
|
|
|
|
select country_code
|
|
, lang_tag
|
|
, name
|
|
from camper.country_i18n
|
|
where false;
|
|
|
|
rollback;
|