| 15 | |
| 16 | type ArrowDataLoader struct { |
| 17 | PipeDataLoader |
| 18 | arrowName string |
| 19 | options string |
| 20 | } |
| 21 | |
| 22 | var _ DataLoader = (*ArrowDataLoader)(nil) |
| 23 | |
| 24 | func NewArrowDataLoader(ctx *sql.Context, handler *DuckHandler, schema string, table sql.InsertableTable, columns tree.NameList, options string) (DataLoader, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected