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