This is an automated email from the ASF dual-hosted git repository.

curth pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-adbc.git


The following commit(s) were added to refs/heads/main by this push:
     new 36f0cd32a fix(csharp/src/Drivers/BigQuery): update BigQuery documents 
(#2047)
36f0cd32a is described below

commit 36f0cd32af2e3f75b12d4397d1ed9b6ecbc1acce
Author: davidhcoe <[email protected]>
AuthorDate: Thu Aug 1 12:26:19 2024 -0400

    fix(csharp/src/Drivers/BigQuery): update BigQuery documents (#2047)
    
    Updates the readme docs for the new parameters.
    
    ---------
    
    Co-authored-by: David Coe <[email protected]>
    Co-authored-by: David Coe <[email protected]>
---
 csharp/src/Drivers/BigQuery/readme.md  | 3 +++
 csharp/test/Drivers/BigQuery/readme.md | 4 ++++
 2 files changed, 7 insertions(+)

diff --git a/csharp/src/Drivers/BigQuery/readme.md 
b/csharp/src/Drivers/BigQuery/readme.md
index c9cad1909..eafaf2c86 100644
--- a/csharp/src/Drivers/BigQuery/readme.md
+++ b/csharp/src/Drivers/BigQuery/readme.md
@@ -51,6 +51,9 @@ 
https://cloud.google.com/dotnet/docs/reference/Google.Cloud.BigQuery.V2/latest/G
 **adbc.bigquery.auth_json_credential**<br>
 &nbsp;&nbsp;&nbsp;&nbsp;Required if using `service` authentication. This value 
is passed to the 
[GoogleCredential.FromJson](https://cloud.google.com/dotnet/docs/reference/Google.Apis/latest/Google.Apis.Auth.OAuth2.GoogleCredential#Google_Apis_Auth_OAuth2_GoogleCredential_FromJson_System_String)
 method.
 
+**adbc.bigquery.get_query_results_options.timeout**<br>
+&nbsp;&nbsp;&nbsp;&nbsp;Optional. Sets the timeout (in minutes) for the 
GetQueryResultsOptions value. If not set, defaults to 5 minutes.
+
 **adbc.bigquery.include_constraints_getobjects**<br>
 &nbsp;&nbsp;&nbsp;&nbsp;Optional. Some callers do not need the constraint 
details when they get the table information and can improve the speed of 
obtaining the results. Setting this value to `"false"` will not include the 
constraint details. The default value is `"true"`.
 
diff --git a/csharp/test/Drivers/BigQuery/readme.md 
b/csharp/test/Drivers/BigQuery/readme.md
index 0770bb6d3..daffddc5f 100644
--- a/csharp/test/Drivers/BigQuery/readme.md
+++ b/csharp/test/Drivers/BigQuery/readme.md
@@ -38,6 +38,10 @@ The following values can be setup in the configuration
   - **expectedColumnCount** - Used by metadata tests to validate the number of 
columns that are returned.
 - **query** - The query to use.
 - **expectedResults** - The expected number of results from the query.
+- **timeoutMinutes** - The timeout (in minutes).
+- **includeTableConstraints** - Whether to include table constraints in the 
GetObjects query.
+- **largeResultsDestinationTable** - Sets the 
[DestinationTable](https://cloud.google.com/dotnet/docs/reference/Google.Cloud.BigQuery.V2/latest/Google.Cloud.BigQuery.V2.QueryOptions#Google_Cloud_BigQuery_V2_QueryOptions_DestinationTable)
 value of the QueryOptions if configured. Expects the format to be 
`{projectId}.{datasetId}.{tableId}` to set the corresponding values in the 
[TableReference](https://github.com/googleapis/google-api-dotnet-client/blob/6c415c73788b848711e47c6dd33c2f93c76f
 [...]
+- **allowLargeResults** - Whether to allow large results .
 
 ## Data
 This project contains a SQL script to generate BigQuery data in the 
`resources/BigQueryData.sql` file. This can be used to populate a table in your 
BigQuery instance with data.

Reply via email to