(self)
| 2244 | return 'map' |
| 2245 | |
| 2246 | def children(self): |
| 2247 | for field, col in zip(self.schema.fields, |
| 2248 | self.columnar.columns): |
| 2249 | yield ("name", field.name.string_literal()) |
| 2250 | yield ("value", col) |
| 2251 | |
| 2252 | def to_string(self): |
| 2253 | num_fields = len(self.schema.fields) |
nothing calls this directly
no test coverage detected