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