-
Notifications
You must be signed in to change notification settings - Fork 99
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(go/adbc/driver/flightsql): support stateless prepared statements #1796
Conversation
"github.com/apache/arrow/go/v17/arrow/flight/flightsql" | ||
"github.com/apache/arrow/go/v17/arrow/flight/flightsql/schema_ref" | ||
flightproto "github.com/apache/arrow/go/v17/arrow/flight/gen/flight" | ||
"github.com/apache/arrow/go/v17/arrow/memory" | ||
"github.com/golang/protobuf/ptypes/wrappers" | ||
"github.com/stretchr/testify/suite" | ||
"golang.org/x/exp/maps" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
as a separate change, we might be able to swap out golang.org/x/exp/maps
for just maps
now that we've updated the Go version
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We can't, they took out some of the exp features
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
sure, but are we using any of the features they removed?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we are, that's why we can't 😬
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Fixes #1657.