Skip to content
New issue

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

[Dev]: ICU 2024a TimeZones #10544

Merged
merged 1 commit into from Feb 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion extension/icu/scripts/makedata.sh
Expand Up @@ -26,7 +26,7 @@ find ${data_path/version/$data_version} -type f ! -iname "*.txt" -delete
cp -r ${data_path/version/$data_version} ${source_path/version/$code_version}

# download IANA and copy the latest Time Zone Data
tz_version=2023d
tz_version=2024a
rm -rf icu-data
git clone git@github.com:unicode-org/icu-data.git
cp icu-data/tzdata/icunew/${tz_version}/44/*.txt ${data_path/version/$code_version}/misc
Expand Down
2 changes: 1 addition & 1 deletion extension/icu/third_party/icu/stubdata/stubdata.cpp

Large diffs are not rendered by default.

11 changes: 11 additions & 0 deletions test/sql/timezone/test_icu_timezone.test
Expand Up @@ -901,3 +901,14 @@ query II
SELECT '2024-03-31 00:59:00-01'::TIMESTAMPTZ, '2024-03-31 01:00:00-01'::TIMESTAMPTZ;
----
2024-03-31 00:59:00-01 2024-03-31 01:00:00-01


# 2024a
# Kazakhstan unifies on UTC+5 beginning 2024-03-01.
statement ok
SET TimeZone = 'Asia/Almaty';

query II
select '2024-02-29 00:00:00+06'::TIMESTAMPTZ, '2024-03-01 01:00:00+06'::TIMESTAMPTZ;
----
2024-02-29 00:00:00+06 2024-03-01 00:00:00+05