-
Notifications
You must be signed in to change notification settings - Fork 328
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix use_arrow_dtype
parameter for read_parquet
#2698
Conversation
if use_arrow_dtype is None: | ||
use_arrow_dtype = options.dataframe.use_arrow_dtype | ||
if use_arrow_dtype: | ||
dtypes = to_arrow_dtypes(dtypes) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Check why this line is not covered.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Seems covered from codecov
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
(cherry picked from commit c7d2bfb)
What do these changes do?
Make
use_arrow_dtype=True
work well for reading directory path forread_parquet
.Related issue number
Fixes #2697
Check code requirements