(self)
| 78 | return self |
| 79 | |
| 80 | def _get_next_row(self): |
| 81 | if self._done_streaming is True: |
| 82 | return |
| 83 | |
| 84 | row = next(self._streaming_result) |
| 85 | if isinstance(row, PycbcCoreException): |
| 86 | raise ErrorMapper.build_exception(row) |
| 87 | |
| 88 | # should only be None once query request is complete and _no_ errors found |
| 89 | if row is None: |
| 90 | raise StopIteration |
| 91 | |
| 92 | return self.serializer.deserialize(row) |
| 93 | |
| 94 | def __next__(self): |
| 95 | return stream_next(self) |
nothing calls this directly
no test coverage detected