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 efbdafe commit 3024432Copy full SHA for 3024432
bindings/python/pymongoarrow/context.py
@@ -64,7 +64,10 @@ def _parse_builder_map(builder_map):
64
full_names = []
65
for candidate in list(builder_map):
66
if candidate.startswith(key + "."):
67
- names.append(candidate[len(key) + 1 :])
+ name = candidate[len(key) + 1 :]
68
+ if "." in name or "[" in name:
69
+ continue
70
+ names.append(name)
71
full_names.append(candidate)
72
arrs = [builder_map[c] for c in full_names]
73
builder_map[key] = StructArray.from_arrays(arrs, names=names)
0 commit comments