(self)
| 730 | ) |
| 731 | |
| 732 | def __reduce__(self) -> Union[str, Tuple[Any, ...]]: |
| 733 | return ( |
| 734 | self.__class__, |
| 735 | ( |
| 736 | self.statement, |
| 737 | self.params, |
| 738 | self.orig, |
| 739 | self.hide_parameters, |
| 740 | self.connection_invalidated, |
| 741 | self.__dict__.get("code"), |
| 742 | self.ismulti, |
| 743 | ), |
| 744 | {"detail": self.detail}, |
| 745 | ) |
| 746 | |
| 747 | def __init__( |
| 748 | self, |