newStreamSetRowError defined the error message on the stream writer receiving the non-ascending row number.
(row int)
| 336 | // newStreamSetRowError defined the error message on the stream writer |
| 337 | // receiving the non-ascending row number. |
| 338 | func newStreamSetRowError(row int) error { |
| 339 | return fmt.Errorf("row %d has already been written", row) |
| 340 | } |
| 341 | |
| 342 | // newStreamSetRowOrderError defined the error message on calling the SetRow |
| 343 | // function before the order function. |
no outgoing calls