Data Analytics API with Gemini v1beta API - Class ExecutedQueryResult (1.0.0-beta11)

public sealed class ExecutedQueryResult : IMessage<ExecutedQueryResult>, IEquatable<ExecutedQueryResult>, IDeepCloneable<ExecutedQueryResult>, IBufferMessage, IMessage

Reference 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.

Inheritance

object > ExecutedQueryResult

Namespace

Google.Cloud.GeminiDataAnalytics.V1Beta

Assembly

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.

Note: if an internal limit (such as LIMIT 1000) was applied during query execution to guard against excessive data transfer, this count reflects the truncated result size rather than the unrestricted table result size.

Property Value
Type Description
long