forked from apache/arrow-adbc
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(go/adbc/drivermgr): Implement Remaining CGO Wrapper Methods that…
… are Supported by SQLite Driver (apache#1304) # What? Implementations for the following methods in the CGO wrapper for `adbc_driver_manager`: - `GetTableSchema` - `GetTableTypes` - `Commit` - `Rollback` - `GetParameterSchema` - `BindStream` # Why? Functionality exists in C++ driver manager but not yet accessible via Go driver interface. # Notes Three methods in the wrapper remain unimplemented: `ExecutePartitions`, `ReadPartition`, and `SetSubstraitPlan`. These methods are not currently supported by the SQLite driver, which is the primary test target for these changes. It is still possible to implement them in the drivermgr wrapper without support in specific drivers, but it does make it more difficult to verify correct behavior. The effort to add those methods will likely involve some additional work to ensure we are able to test their behaviors, so they are being left out of this current round of implementations. Closes part of: apache#1291
- Loading branch information
Showing
2 changed files
with
244 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters