MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / _raw_row_iterator

Method _raw_row_iterator

lib/sqlalchemy/engine/result.py:847–854  ·  view source on GitHub ↗

Return a safe iterator that yields raw row data. This is used by the :meth:`_engine.Result.merge` method to merge multiple compatible results together.

(self)

Source from the content-addressed store, hash-verified

845 return self # type: ignore
846
847 def _raw_row_iterator(self) -> Iterator[_RowData]:
848 """Return a safe iterator that yields raw row data.
849
850 This is used by the :meth:`_engine.Result.merge` method
851 to merge multiple compatible results together.
852
853 """
854 raise NotImplementedError()
855
856 def __iter__(self) -> Iterator[Row[Unpack[_Ts]]]:
857 return self._iter_impl()

Callers 2

__init__Method · 0.45
__init__Method · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected