-
-
Notifications
You must be signed in to change notification settings - Fork 2k
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: Parquet decoding of nested dictionary values #19605
fix: Parquet decoding of nested dictionary values #19605
Conversation
@@ -147,18 +147,18 @@ def test_cse_9630() -> None: | |||
|
|||
@pytest.mark.write_disk | |||
def test_schema_row_index_cse() -> None: | |||
csv_a = NamedTemporaryFile() # noqa: SIM115 |
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.
pass-by: this still threw an error on my ruff
@@ -29,15 +29,15 @@ def test_count_csv(io_files_path: Path, path: str, n_rows: int) -> None: | |||
|
|||
@pytest.mark.write_disk | |||
def test_commented_csv() -> None: | |||
csv_a = NamedTemporaryFile() # noqa: SIM115 |
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.
pass-by: still threw an error on my ruff
@@ -42,10 +42,11 @@ def PortableTemporaryFile( | |||
"errors": errors, | |||
}, | |||
) | |||
tmp = NamedTemporaryFile(**params) # noqa: SIM115 |
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.
pass-by: still threw an error
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #19605 +/- ##
==========================================
+ Coverage 79.84% 79.85% +0.01%
==========================================
Files 1536 1536
Lines 211405 211375 -30
Branches 2445 2445
==========================================
+ Hits 168790 168791 +1
+ Misses 42060 42029 -31
Partials 555 555 ☔ View full report in Codecov by Sentry. |
No description provided.