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 6b0b7d5 commit fcf5883Copy full SHA for fcf5883
bindings/python/pymongoarrow/schema.py
@@ -82,7 +82,7 @@ def _get_field_projection_value(self, fname, ftype, projection):
82
return fname, ftype, projection
83
if isinstance(ftype, pa.StructType):
84
for nested_ftype in ftype:
85
- fname, ftype, projection = self._get_field_projection_value(fname + "." + nested_ftype.name, nested_ftype.type)
+ fname, ftype, projection = self._get_field_projection_value(fname + "." + nested_ftype.name, nested_ftype.type, projection)
86
87
projection[fname] = value
88
0 commit comments