AWS redshift->hdb pg(Greenplum), CONVERT_TIMEZONE 时区转换函数兼容
背景
redshift 时区转换函数
https://docs.amazonaws.cn/redshift/latest/dg/CONVERT_TIMEZONE.html
CONVERT_TIMEZONE 函数
CONVERT_TIMEZONE 将时间戳从一个时区转换为另一个时区。
语法
CONVERT_TIMEZONE ( ['source_timezone',] 'target_timezone', 'timestamp')
参数
source_timezone
(可选)当前时间戳的时区。默认值为 UTC。有关更多信息,请参阅 时区使用说明。
target_timezone
新时间戳的时区。有关更多信息,请参阅 时区使用说明。
timestamp
时间戳列,或隐式转换为时间戳的表达式。
hdb pg 自定义UDF兼容CONVERT_TIMEZONE
https://www.postgresql.org/docs/devel/static/functions-datetime.html
自定义函数如下
create or replace function CONVERT_TIMEZONE (text,text,timestamp) returns timestamp as $$
select timezone($2, timezone ($1,$3));
$$ language sql strict ;
create or replace function CONVERT_TIMEZONE (text,timestamp) returns timestamp as $$
select timezone($1, timezone ('UTC',$2));
$$ language sql strict ;
数据库时区代码
select * from pg_timezone_abbrevs ;
abbrev | utc_offset | is_dst
--------+------------+--------
ACDT | 10:30:00 | t
ACSST | 10:30:00 | t
ACST | 09:30:00 | f
ACT | -05:00:00 | f
CDT | -05:00:00 | t
CEST | 02:00:00 | t
CET | 01:00:00 | f
CETDST | 02:00:00 | t
CHADT | 13:45:00 | t
CHAST | 12:45:00 | f
CHUT | 10:00:00 | f
CKT | -10:00:00 | f
CLST | -03:00:00 | t
CLT | -03:00:00 | t
COT | -05:00:00 | f
UT | 00:00:00 | f
UTC | 00:00:00 | f
....
验证如下
postgres=# select CONVERT_TIMEZONE('CLT','UTC','2018-01-01');
convert_timezone
---------------------
2018-01-01 03:00:00
(1 row)
postgres=# select CONVERT_TIMEZONE('CLT','CET','2018-01-01');
convert_timezone
---------------------
2018-01-01 04:00:00
(1 row)
postgres=# select CONVERT_TIMEZONE('CET','2018-01-01');
convert_timezone
---------------------
2018-01-01 01:00:00
(1 row)
postgres=# select CONVERT_TIMEZONE('CLT','2018-01-01');
convert_timezone
---------------------
2017-12-31 21:00:00
(1 row)
参考
https://www.postgresql.org/docs/devel/static/functions-datetime.html
https://docs.amazonaws.cn/redshift/latest/dg/CONVERT_TIMEZONE.html