В postgres я могу установить и прочитать часовой пояс:
dev=> set timezone to 'UTC';
SET
dev=> select current_setting( 'timezone' );
current_setting
-----------------
UTC
(1 row)
Существует EEST
часовой пояс:
select exists( select 1 from pg_timezone_names where abbrev = 'EEST' );
exists
--------
t
(1 row)
Почему я не могу его настроить?
dev=> set timezone to 'EEST';
ERROR: invalid value for parameter "TimeZone": "EEST"