You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[Hotfix] Fix incorrect Last Commit Time showing year 58000+ in partition view (#4083)
The last_updated_at column from Iceberg PARTITIONS metadata table stores
timestamps in microseconds, but it was passed directly to the frontend
which expects milliseconds. This caused the displayed year to be ~58000.
Convert microseconds to milliseconds by dividing by 1000, consistent
with how snapshot.timestampMillis() is used elsewhere.
Signed-off-by: Jiwon Park <[email protected]>
0 commit comments