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

Incorrect handling of IANA time zone data #373

Closed
jskeet opened this issue May 6, 2016 · 6 comments
Closed

Incorrect handling of IANA time zone data #373

jskeet opened this issue May 6, 2016 · 6 comments
Labels

Comments

@jskeet
Copy link

jskeet commented May 6, 2016

Key information

  • Joda-Time version: 2.9.3
  • Result of TimeZone.getDefault(): sun.util.calendar.ZoneInfo[id="Europe/London", [...]]
  • Result of DateTimeZone.getDefault(): Europe/London

Problem description

My tzvalidate project aims to make it easy to validate that code intepreting the IANA time zone data all does it in the same way. Joda Time appears to have some discrepancies. (Without looking into the code, it's hard to guess how many code changes would be required.)

Test case

As a single example, using the 2016d data release, Joda Time claims America/Argentina/Catamarca had a transition at 1999-10-03T04:00:00Z; I believe this transition should be at 1999-10-03T03:00:00Z. (This was just a change from standard to daylight, but without any overall offset change.

http://www.timeanddate.com/time/zone/argentina/catamarca confirms that this would have been at 3am UTC (midnight local)

Sample code:

import java.io.*;
import java.util.*;
import org.joda.time.*;
import org.joda.time.tz.*;

public class Test
{
    public static void main(String[] args) throws Exception
    {
        ZoneInfoCompiler compiler = new ZoneInfoCompiler();
        File[] files = { new File("southamerica") }; // From 2016d
        Map<String, DateTimeZone> zones = compiler.compile(null, files);
        DateTimeZone zone = zones.get("America/Argentina/Catamarca");

        DateTime midJune = new DateTime(1999, 6, 15, 0, 0, 0, DateTimeZone.UTC);
        long millis = zone.nextTransition(midJune.getMillis());
        DateTime transition = new DateTime(millis, DateTimeZone.UTC);
        System.out.println(transition);
    }
}

Expected output: 1999-10-03T03:00:00.000Z
Actual output: 1999-10-03T04:00:00.000Z

I'm very happy to provide the full tzvalidate files for 2016d - the one I'm treating as "canonical" agrees with both zic and Noda Time, as well as a third party implementation. I haven't attached the files here as they're rather large.

@jodastephen
Copy link
Member

Thanks for raising this. I'm just acknowledging this is probably wrong, but I'm unlikely to have the time to look into why. The work on establishing a standard format for validation seems like a great idea though - just wish it had existed 10 years ago!

@jskeet
Copy link
Author

jskeet commented Jun 13, 2016

I was surprised to find it didn't exist, too :) I haven't yet filed bugs for java.util.TimeZone or java.time.ZoneId, though they had issues too, last I looked - if there are any particular tips on filing JRE bugs, please drop me a line... otherwise I'll wait until I've got enough time/patience to see what's required.

@jodastephen
Copy link
Member

Filing a JDK bug is nigh on impossible. However, I have the rights to JIRA. So if you send me the details I can post it for you!

@jskeet
Copy link
Author

jskeet commented Jun 13, 2016

Wonderful - thanks very much, will follow up by email.

jodastephen added a commit that referenced this issue Aug 18, 2016
@jodastephen
Copy link
Member

Dhaka is out by a millisecond, but there was probably a deliberate reason for that. Anyway, I've fixed everything else. Thanks for the tool.

@gsmet
Copy link

gsmet commented Oct 27, 2016

Hi @jodastephen!

We are currently having issues with Elasticsearch (2.4.1 and 5, it's a regression from previous versions) due to this bug (see elastic/elasticsearch#20911) and it would be nice to get it fixed in a release.

Any plan for the 2.9.5 release?

Thanks for your feedback!

tlrx added a commit to tlrx/elasticsearch that referenced this issue Nov 10, 2016
This commit updates JodaTime to version 2.9.5 that contain a fix for a bug when parsing time zonesi (see yrodiere/joda-time@eaaff1d or JodaOrg/joda-time#373).

It also remove the joda-convert dependency that seems to be unused.

closes elastic#20911
tlrx added a commit to elastic/elasticsearch that referenced this issue Nov 10, 2016
This commit updates JodaTime to version 2.9.5 that contain a fix for a bug when parsing time zones (see JodaOrg/joda-time#332, JodaOrg/joda-time#386 and JodaOrg/joda-time#373).

It also remove the joda-convert dependency that seems to be unused.
    
closes #20911

Here is the changelog for 2.9.5:
```
Changes in 2.9.5
----------------
 - Add Norwegian period translations [#378]

 - Add Duration.dividedBy(long,RoundingMode) [#69, #379]

 - DateTimeZone data updated to version 2016i

 - Fixed bug where clock read twice when comparing two nulls in DateTimeComparator [#404]

 - Fixed minor issues with historic time-zone data [#373]

 - Fix bug in time-zone binary search [#332, #386]
  The fix in v2.9.2 caused problems when the time-zone being parsed
  was not the last element in the input string. New approach uses a
  different approach to the problem.

 - Update tests for JDK 9 [#394]

 - Close buffered reader correctly in zone info compiler [#396]

 - Handle locale correctly zone info compiler [#397]
```
tlrx added a commit to elastic/elasticsearch that referenced this issue Nov 10, 2016
This commit updates JodaTime to version 2.9.5 that contain a fix for a bug when parsing time zones (see JodaOrg/joda-time#332, JodaOrg/joda-time#386 and JodaOrg/joda-time#373).

It also remove the joda-convert dependency that seems to be unused.

closes #20911

Here is the changelog for 2.9.5:
```
Changes in 2.9.5
----------------
 - Add Norwegian period translations [#378]

 - Add Duration.dividedBy(long,RoundingMode) [#69, #379]

 - DateTimeZone data updated to version 2016i

 - Fixed bug where clock read twice when comparing two nulls in DateTimeComparator [#404]

 - Fixed minor issues with historic time-zone data [#373]

 - Fix bug in time-zone binary search [#332, #386]
  The fix in v2.9.2 caused problems when the time-zone being parsed
  was not the last element in the input string. New approach uses a
  different approach to the problem.

 - Update tests for JDK 9 [#394]

 - Close buffered reader correctly in zone info compiler [#396]

 - Handle locale correctly zone info compiler [#397]
```

(cherry picked from commit 2e53190)
tlrx added a commit to elastic/elasticsearch that referenced this issue Nov 10, 2016
This commit updates JodaTime to version 2.9.5 that contain a fix for a bug when parsing time zones (see JodaOrg/joda-time#332, JodaOrg/joda-time#386 and JodaOrg/joda-time#373).

It also remove the joda-convert dependency that seems to be unused.

closes #20911

Here is the changelog for 2.9.5:
```
Changes in 2.9.5
----------------
 - Add Norwegian period translations [#378]

 - Add Duration.dividedBy(long,RoundingMode) [#69, #379]

 - DateTimeZone data updated to version 2016i

 - Fixed bug where clock read twice when comparing two nulls in DateTimeComparator [#404]

 - Fixed minor issues with historic time-zone data [#373]

 - Fix bug in time-zone binary search [#332, #386]
  The fix in v2.9.2 caused problems when the time-zone being parsed
  was not the last element in the input string. New approach uses a
  different approach to the problem.

 - Update tests for JDK 9 [#394]

 - Close buffered reader correctly in zone info compiler [#396]

 - Handle locale correctly zone info compiler [#397]
```

(cherry picked from commit 2e53190)
tlrx added a commit to tlrx/elasticsearch that referenced this issue Nov 14, 2016
This commit updates JodaTime to version 2.9.5 that contain a fix for a bug when parsing time zones (see JodaOrg/joda-time#332, JodaOrg/joda-time#386 and JodaOrg/joda-time#373).

It also remove the joda-convert dependency that seems to be unused.
tlrx added a commit to elastic/elasticsearch that referenced this issue Nov 15, 2016
This commit updates JodaTime to version 2.9.5 that contain a fix for a bug when parsing time zones (see JodaOrg/joda-time#332, JodaOrg/joda-time#386 and JodaOrg/joda-time#373).

It also remove the joda-convert dependency that seems to be unused.
fixmebot bot referenced this issue in VectorXz/elasticsearch Apr 22, 2021

Verified

This commit was created on github.com and signed with GitHub’s verified signature. The key has expired.
fixmebot bot referenced this issue in VectorXz/elasticsearch May 28, 2021

Verified

This commit was created on github.com and signed with GitHub’s verified signature. The key has expired.
fixmebot bot referenced this issue in VectorXz/elasticsearch Aug 4, 2021

Verified

This commit was created on github.com and signed with GitHub’s verified signature. The key has expired.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Development

No branches or pull requests

3 participants