We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad5f841 commit a7d37cdCopy full SHA for a7d37cd
pandas/io/json/_json.py
@@ -945,6 +945,7 @@ def read(self) -> DataFrame | Series:
945
fields = [
946
(field, pandas_dtype(dtype).pyarrow_dtype)
947
for field, dtype in self.dtype.items()
948
+ if isinstance(pandas_dtype(dtype), ArrowDtype)
949
]
950
schema = pa.schema(fields)
951
pa_table = pyarrow_json.read_json(
0 commit comments