scottlepp commented on issue #37633: URL: https://github.com/apache/arrow/issues/37633#issuecomment-1718368357
When I run the query, I don't see GetFlightInfoStatement called, but I do see [this](https://github.com/apache/arrow/blob/main/go/arrow/flight/flightsql/example/sqlite_server.go#L411) function is called. I tried adding Schema [here](https://github.com/apache/arrow/blob/main/go/arrow/flight/flightsql/example/sqlite_server.go#L432) but same issue. Tried adding this ( not sure if this is the right way ) ``` result.Handle = handle schema := &arrow.Schema{} field := arrow.Field{ Name: "id", Type: &arrow.Int64Type{}, } schema.AddField(0, field) result.DatasetSchema = schema result.ParameterSchema = schema ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
