(context.Context, string, ...any)
| 484 | type dbQueryCtx interface { |
| 485 | QueryContext(context.Context, string, ...any) (*sql.Rows, error) |
| 486 | } |
| 487 | |
| 488 | func doGetQuery(ctx context.Context, db *sql.DB, query string, schema *arrow.Schema, args ...interface{}) (*arrow.Schema, <-chan flight.StreamChunk, error) { |
| 489 |
no outgoing calls