(self)
| 1467 | yield ("value", deref(value)) |
| 1468 | |
| 1469 | def to_string(self): |
| 1470 | if not self.is_valid: |
| 1471 | return self._format_null() |
| 1472 | return f"{self._format_type()}" |
| 1473 | |
| 1474 | |
| 1475 | class SparseUnionScalarPrinter(ScalarPrinter): |
nothing calls this directly
no test coverage detected