We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
It was noticed that there is a difference between the schemas that go arrow flight adbc driver expects (in the response on get-db-schemas-request):
https://github.com/apache/arrow-go/blob/a62d36fba3b2df5be1d61a4a34fbd9bf0756676e/arrow/flight/flightsql/schema_ref/reference_schemas.go#L26-L29
Here catalog_name is nullable, but in rust we have non-nullable field:
catalog_name
arrow-rs/arrow-flight/src/sql/metadata/db_schemas.rs
Lines 177 to 183 in 5f0aed6
Obviously, one can return any schema from the server, but want to figure out, who is actually right and where the source of truth.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Uh oh!
There was an error while loading. Please reload this page.
It was noticed that there is a difference between the schemas that go arrow flight adbc driver expects (in the response on get-db-schemas-request):
https://github.com/apache/arrow-go/blob/a62d36fba3b2df5be1d61a4a34fbd9bf0756676e/arrow/flight/flightsql/schema_ref/reference_schemas.go#L26-L29
Here
catalog_name
is nullable, but in rust we have non-nullable field:arrow-rs/arrow-flight/src/sql/metadata/db_schemas.rs
Lines 177 to 183 in 5f0aed6
Obviously, one can return any schema from the server, but want to figure out, who is actually right and where the source of truth.
The text was updated successfully, but these errors were encountered: