(self)
| 1331 | """ |
| 1332 | |
| 1333 | def to_string(self): |
| 1334 | if not self.is_valid: |
| 1335 | return self._format_null() |
| 1336 | value = self.val['value'] |
| 1337 | return f"{self._format_type()} of value {format_date64(value)}" |
| 1338 | |
| 1339 | |
| 1340 | class TimestampScalarPrinter(ScalarPrinter): |
nothing calls this directly
no test coverage detected