public sealed class ExecutedQueryResult : IMessage<ExecutedQueryResult>, IEquatable<ExecutedQueryResult>, IDeepCloneable<ExecutedQueryResult>, IBufferMessage, IMessageReference documentation and code samples for the Data Analytics API with Gemini v1beta API class ExecutedQueryResult.
The result of a query execution. The design is generic for all dialects.
Implements
IMessageExecutedQueryResult, IEquatableExecutedQueryResult, IDeepCloneableExecutedQueryResult, IBufferMessage, IMessageNamespace
Google.Cloud.GeminiDataAnalytics.V1BetaAssembly
Google.Cloud.GeminiDataAnalytics.V1Beta.dll
Constructors
ExecutedQueryResult()
public ExecutedQueryResult()ExecutedQueryResult(ExecutedQueryResult)
public ExecutedQueryResult(ExecutedQueryResult other)| Parameter | |
|---|---|
| Name | Description |
other |
ExecutedQueryResult |
Properties
Columns
public RepeatedField<ExecutedQueryResult.Types.Column> Columns { get; }The columns in the result set, in order.
| Property Value | |
|---|---|
| Type | Description |
RepeatedFieldExecutedQueryResultTypesColumn |
|
PartialResult
public bool PartialResult { get; set; }Set to true if the returned rows in query_result are a subset of the
full result. This can happen, for example, if the query execution hits a
row limit. When true, the query_result does not contain all
rows. To retrieve the complete result, consider using the
generated_query in QueryDataResponse and executing it in your own
environment.
| Property Value | |
|---|---|
| Type | Description |
bool |
|
QueryExecutionError
public string QueryExecutionError { get; set; }The error message if the query execution failed.
| Property Value | |
|---|---|
| Type | Description |
string |
|
Rows
public RepeatedField<ExecutedQueryResult.Types.Row> Rows { get; }The rows returned by the query.
| Property Value | |
|---|---|
| Type | Description |
RepeatedFieldExecutedQueryResultTypesRow |
|
TotalRowCount
public long TotalRowCount { get; set; }The total number of rows in the full result set, if known. This may be an estimate or an exact count.
| Property Value | |
|---|---|
| Type | Description |
long |
|