You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// To get the results of all statements in a multi-statement query, enumerate the child jobs. Related public docs: https://cloud.google.com/bigquery/docs/multi-statement-queries#get_all_executed_statements.
90
+
// Can filter by StatementType and EvaluationKind. Related public docs: https://cloud.google.com/bigquery/docs/reference/rest/v2/Job#jobstatistics2, https://cloud.google.com/bigquery/docs/reference/rest/v2/Job#evaluationkind
Optional. Sets the [maxStreamCount](https://cloud.google.com/dotnet/docs/reference/Google.Cloud.BigQuery.Storage.V1/latest/Google.Cloud.BigQuery.Storage.V1.BigQueryReadClient#Google_Cloud_BigQuery_Storage_V1_BigQueryReadClient_CreateReadSession_System_String_Google_Cloud_BigQuery_Storage_V1_ReadSession_System_Int32_Google_Api_Gax_Grpc_CallSettings_) for the CreateReadSession method. If not set, defaults to 1.
Optional. When executing multiple statements, limit the type of statement returned. If not set, all types of statements are returned.
Optional. When executing multiple statements, specify the result of the statement to be returned (Minimum value is 1). If not set, the result of the first statement is returned.
Optional. When executing multiple statements, limit the evaluation kind returned. If not set, all evaluation kinds are returned.
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"`.
Copy file name to clipboardExpand all lines: csharp/test/Drivers/BigQuery/readme.md
+3
Original file line number
Diff line number
Diff line change
@@ -47,6 +47,9 @@ The following values can be setup in the configuration
47
47
-**scopes** - Comma separated list (string) of scopes applied during the test.
48
48
-**queryTimeout** - The timeout (in seconds) for a query. Similar to a CommandTimeout.
49
49
-**maxStreamCount** - The max stream count.
50
+
-**statementType** - When executing multiple statements, limit the type of statement returned.
51
+
-**statementIndex** - When executing multiple statements, specify the result of the statement to be returned.
52
+
-**evaluationKind** - When executing multiple statements, limit the evaluation kind returned.
50
53
-**includeTableConstraints** - Whether to include table constraints in the GetObjects query.
51
54
-**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/6c415c73788b848711e47c6dd33c2f93c76faf97/Src/Generated/Google.Apis.Bigquery.v2/Google.Apis.Bigquery.v2.cs#L9348) class.
52
55
-**allowLargeResults** - Whether to allow large results .
0 commit comments