()
| 1598 | |
| 1599 | |
| 1600 | def null_dml_result() -> IteratorResult[Any]: |
| 1601 | it: IteratorResult[Any] = IteratorResult(_NoResultMetaData(), iter([])) |
| 1602 | it._soft_close() |
| 1603 | return it |
| 1604 | |
| 1605 | |
| 1606 | class CursorResult(Result[Unpack[_Ts]]): |
nothing calls this directly
no test coverage detected