Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -599,13 +599,13 @@ private void testDate(ZoneId sessionZone)
@Test
public void testTimeFromMySql()
{
testTimestampFromMySql(UTC);
testTimestampFromMySql(ZoneId.systemDefault());
testTimeFromMySql(UTC);
testTimeFromMySql(ZoneId.systemDefault());
// no DST in 1970, but has DST in later years (e.g. 2018)
testTimestampFromMySql(ZoneId.of("Europe/Vilnius"));
testTimeFromMySql(ZoneId.of("Europe/Vilnius"));
// minutes offset change since 1970-01-01, no DST
testTimestampFromMySql(ZoneId.of("Asia/Kathmandu"));
testTimestampFromMySql(TestingSession.DEFAULT_TIME_ZONE_KEY.getZoneId());
testTimeFromMySql(ZoneId.of("Asia/Kathmandu"));
testTimeFromMySql(TestingSession.DEFAULT_TIME_ZONE_KEY.getZoneId());
Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Relates to b561a33

}

private void testTimeFromMySql(ZoneId sessionZone)
Expand Down