Proxy result rows to smooth over MySQL-Python driver inconsistencies.
(
self, rp: CursorResult[Unpack[TupleAny]], charset: Optional[str] = None
)
| 3000 | return False |
| 3001 | |
| 3002 | def _compat_fetchall( |
| 3003 | self, rp: CursorResult[Unpack[TupleAny]], charset: Optional[str] = None |
| 3004 | ) -> Union[Sequence[Row[Unpack[TupleAny]]], Sequence[_DecodingRow]]: |
| 3005 | """Proxy result rows to smooth over MySQL-Python driver |
| 3006 | inconsistencies.""" |
| 3007 | |
| 3008 | return [_DecodingRow(row, charset) for row in rp.fetchall()] |
| 3009 | |
| 3010 | def _compat_fetchone( |
| 3011 | self, rp: CursorResult[Unpack[TupleAny]], charset: Optional[str] = None |
no test coverage detected