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 c767662 commit e5e3ef1Copy full SHA for e5e3ef1
bigframes/operations/blob.py
@@ -84,7 +84,7 @@ def metadata(self) -> bigframes.series.Series:
84
# Check if it's a struct series from a verbose operation
85
if dtypes.is_struct_like(series_to_check.dtype):
86
pyarrow_dtype = series_to_check.dtype.pyarrow_dtype
87
- if "content" in pyarrow_dtype.names:
+ if "content" in [field.name for field in pyarrow_dtype]:
88
content_field_type = pyarrow_dtype.field("content").type
89
content_bf_type = dtypes.arrow_dtype_to_bigframes_dtype(
90
content_field_type
0 commit comments