Nikhil Sontakke 6b819de329 Fix error in show_chunks
If "created_after/before" is used with a "time" type partitioning
column then show_chunks was not showing appropriate list due to a
mismatch in the comparison of the "creation_time" metadata (which is
stored as a timestamptz) with the internally converted epoch based
input argument value. This is now fixed by not doing the unnecessary
conversion into the internal format for cases where it's not needed.

Fixes #6611
2024-03-07 19:04:00 +05:30

3 lines
207 B
Plaintext

Fixes: #6617 Fix error in show_chunks
Thanks: @kevcenteno for reporting an issue with the show_chunks API showing incorrect output when 'created_before/created_after' was used with time-partitioned columns.