InfluxCommunity / influxdb3-go

The go package that provides a simple and convenient way to interact with InfluxDB 3.
https://pkg.go.dev/github.com/InfluxCommunity/influxdb3-go
MIT License
21 stars 11 forks source link

Add query method returning unprocessed result from flightsql client #33

Closed alespour closed 9 months ago

alespour commented 11 months ago

Use Case

Give the user option to process the result as deems best without any processing by the package itself. Such option exists in other client libs.

Expected behavior

Return "raw" query result.

Actual behavior

Only iterator over array(s) created by the implementation from flightsql reader is returned.

Additional info

No response

redbaron commented 9 months ago

There seem to be https://pkg.go.dev/github.com/InfluxCommunity/influxdb3-go@v0.3.0/influxdb3#QueryIterator.Raw now

bednar commented 9 months ago

@redbaron you are right, thanks!