We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The UNIX_TIMESTAMP function parses 1970-01-01T08:00:00+08:00 incorrectly.
SQL: SELECT UNIX_TIMESTAMP('1970-01-01T08:00:00+08:00') as time_zone_foramt, UNIX_TIMESTAMP('1970-01-01 08:00:00') as general_format
time_zone_foramt: 0 general_format: 28800
time_zone_foramt: 28800 general_format: 28800
Version: 3.3 system_time_zone Asia/Shanghai time_zone +00:00
This is the execution result from Apache Druid and ClickHouse.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The UNIX_TIMESTAMP function parses 1970-01-01T08:00:00+08:00 incorrectly.
Steps to reproduce the behavior (Required)
SQL: SELECT UNIX_TIMESTAMP('1970-01-01T08:00:00+08:00') as time_zone_foramt, UNIX_TIMESTAMP('1970-01-01 08:00:00') as general_format
Expected behavior (Required)
time_zone_foramt: 0
general_format: 28800
Real behavior (Required)
time_zone_foramt: 28800
general_format: 28800
StarRocks version (Required)
Version: 3.3
system_time_zone Asia/Shanghai
time_zone +00:00
This is the execution result from Apache Druid and ClickHouse.
The text was updated successfully, but these errors were encountered: