BUG: fix read_parquet failing with TimedeltaIndex column (#59692)#65117
Open
tianlangqin wants to merge 2 commits intopandas-dev:mainfrom
Open
BUG: fix read_parquet failing with TimedeltaIndex column (#59692)#65117tianlangqin wants to merge 2 commits intopandas-dev:mainfrom
tianlangqin wants to merge 2 commits intopandas-dev:mainfrom
Conversation
jbrockmendel
reviewed
Apr 9, 2026
|
|
||
| from pandas._libs.tslibs import is_unitless | ||
|
|
||
| if is_unitless(dtype): |
Member
There was a problem hiding this comment.
We excluded support for this intentionally.
Contributor
Author
There was a problem hiding this comment.
Thanks for the review. Since the error originates from pyarrow calling level.astype(dtype) with a unitless dtype during column reconstruction, where would you suggest handling this instead?
jbrockmendel
reviewed
Apr 9, 2026
| return DatetimeArray._from_sequence(self, dtype=dtype, copy=copy) | ||
|
|
||
| elif lib.is_np_dtype(dtype, "m"): | ||
| from pandas._libs.tslibs import is_unitless |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
doc/source/whatsnew/vX.X.X.rstfile if fixing a bug or adding a new feature.AGENTS.md.When writing a dataframe with
TimedeltaIndexas column names to parquet with pyarrow and then reading it back, pyarrow reconstructs the column index by callinglevel.astype(dtype)with a unitlesstimedelta64dtype, which causesValueErrorto be thrown since Pandas doesn't know the unit.I fixed it by default replacing the unitless
timedelta64withtimedelta64[ns]inExtensionArray.astypebefore callingTimedeltaArray._from_sequence. Then I added two short circuit checks in_astype_nansafeandTimedeltaArray.astypeso if the source array already has a valid timedelta or datetime resolution and the requested target is unitless, it now returns the array as it is instead of attempting an invalid conversion.The change in
TimedeltaArray.astyperelaxes the previous behavior whereidx.astype("timedelta64")automatically raised aValueError. Which was introduced in #13149 to prevent silent data corruptions. This concern doesn't apply here since the cast request fromtimedelta64[ns]totimedelta64results in the identical array to be returned. The validation for the opposite direction remains unchanged.