(self)
| 1526 | """ |
| 1527 | |
| 1528 | def to_string(self): |
| 1529 | ext_type = ExtensionType(self.type) |
| 1530 | if not self.is_valid: |
| 1531 | return (f"{self._format_type()} of type " |
| 1532 | f"{ext_type.to_string().string_literal()}, null value") |
| 1533 | value = deref(self.val['value']) |
| 1534 | return (f"{self._format_type()} of type " |
| 1535 | f"{ext_type.to_string().string_literal()}, value {value}") |
| 1536 | |
| 1537 | |
| 1538 | class ArrayDataPrinter: |
nothing calls this directly
no test coverage detected