davidhcoe commented on code in PR #1507:
URL: https://github.com/apache/arrow-adbc/pull/1507#discussion_r1476591997
##########
csharp/src/Drivers/BigQuery/BigQueryConnection.cs:
##########
@@ -1014,6 +1032,10 @@ public override AdbcStatement CreateStatement()
{
options[keyValuePair.Key] = keyValuePair.Value;
}
+ if(keyValuePair.Key ==
BigQueryParameters.LargeResultsDestinationTable)
Review Comment:
resolved nit
##########
csharp/src/Drivers/BigQuery/BigQueryStatement.cs:
##########
@@ -185,6 +186,33 @@ static IArrowReader ReadChunk(BigQueryReadClient
readClient, string streamName)
{
options.AllowLargeResults = true ?
keyValuePair.Value.ToLower().Equals("true") : false;
}
+ if(keyValuePair.Key ==
BigQueryParameters.LargeResultsDestinationTable)
Review Comment:
resolved nit
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]