LoadDataResults contains the results of a load data operation, including the number of rows loaded.
| 42 | // including how many rows were inserted. |
| 43 | Finish(ctx *sql.Context) (*LoadDataResults, error) |
| 44 | } |
| 45 | |
| 46 | // LoadDataResults contains the results of a load data operation, including the number of rows loaded. |
| 47 | type LoadDataResults struct { |
| 48 | // RowsLoaded contains the total number of rows inserted during a load data operation. |
| 49 | RowsLoaded int32 |
| 50 | } |
nothing calls this directly
no outgoing calls
no test coverage detected