Method
__init__
(self, msg, *, schema=None, data_type=None, position=None)
Source from the content-addressed store, hash-verified
| 262 | """A value decoding error caused by a schema change before row fetching.""" |
| 263 | |
| 264 | def __init__(self, msg, *, schema=None, data_type=None, position=None): |
| 265 | super().__init__(msg) |
| 266 | self.schema_name = schema |
| 267 | self.data_type_name = data_type |
| 268 | self.position = position |
| 269 | |
| 270 | |
| 271 | class PostgresLogMessage(PostgresMessage): |
Callers
nothing calls this directly
Tested by
no test coverage detected