ROUNDTRIP localDate            = 2026-03-15
ROUNDTRIP localDateTime         = 2026-03-15T10:30:45
ROUNDTRIP localTime             = 10:30:45
ROUNDTRIP instant               = 2026-03-15T10:30:45Z
ROUNDTRIP offsetDateTime        = 2026-03-15T10:30:45+05:30
ROUNDTRIP zonedDateTime         = 2026-03-15T10:30:45+01:00
ROUNDTRIP legacyDateAsDate      = 2026-03-15
ROUNDTRIP legacyDateAsTimestamp = 2026-03-15 10:30:45.0
ROUNDTRIP legacyDateNoTemporal  = 2026-03-15 10:30:45.0 (class=class java.sql.Timestamp)
ROUNDTRIP legacyCalendar        = Sun Mar 15 10:30:45 IST 2026
JVM default timezone during this run = Asia/Calcutta
create table temporal_types (id bigint generated by default as identity, instant timestamp(6) with time zone, legacy_calendar timestamp(6), legacy_date_as_date date, legacy_date_as_timestamp timestamp(6), legacy_date_no_temporal timestamp(6), local_date date, local_date_time timestamp(6), local_time time(0), offset_date_time timestamp(6) with time zone, zoned_date_time timestamp(6) with time zone, primary key (id))
