(self)
| 1780 | self.data = result.fetchall() |
| 1781 | |
| 1782 | def _rewrite_rows(self) -> Sequence[Sequence[Any]]: |
| 1783 | # used only by the orm fn merge_frozen_result |
| 1784 | if self._source_supports_scalars: |
| 1785 | return [[elem] for elem in self.data] |
| 1786 | else: |
| 1787 | return [list(row) for row in self.data] |
| 1788 | |
| 1789 | def with_new_rows( |
| 1790 | self, tuple_data: Sequence[Row[Unpack[_Ts]]] |
no outgoing calls
no test coverage detected