-
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
fix(csharp/src/Drivers/BigQuery): remove details to have type names match ODBC #2431
Conversation
davidhcoe
commented
Jan 10, 2025
•
edited
Loading
edited
- removes additional suffix details from data type names. For example, STRUCT<...> is just a STRUCT type, and NUMERIC(n,y) is just NUMERIC to match the ODBC type names.
- adds support for querying additional table types
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.
Thanks! Looks good overall. Although it's a preexisting condition, I think we should fix the consistency around the parsing of decimal types. The other suggestions are optional.
csharp/test/Apache.Arrow.Adbc.Tests/Metadata/GetObjectsParser.cs
Outdated
Show resolved
Hide resolved
Is this referring to the < vs ( parsing? Or something else? |
@@ -738,7 +743,7 @@ private StructArray GetConstraintsUsage( | |||
dataArrays, | |||
nullBitmapBuffer.Build()); | |||
} | |||
|
|||
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.
I think this is the trailing whitespace that the tooling is complaining about.
Yes. I see; I had the mistaken impression that this was being called from inside the |
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.
The trailing whitespace at line 746 of BigQueryConnection.cs will need to be removed to pass the checkin tests.