Show / Hide Table of Contents

Class ResultSetStats

Additional statistics about a ResultSet or PartialResultSet.

Inheritance
object
ResultSetStats
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.Spanner.v1.Data
Assembly: Google.Apis.Spanner.v1.dll
Syntax
public class ResultSetStats : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
string

QueryPlan

QueryPlan for the query associated with this result.

Declaration
[JsonProperty("queryPlan")]
public virtual QueryPlan QueryPlan { get; set; }
Property Value
Type Description
QueryPlan

QueryStats

Aggregated statistics from the execution of the query. Only present when the query is profiled. For example, a query could return the statistics as follows: { "rows_returned": "3", "elapsed_time": "1.22 secs", "cpu_time": "1.19 secs" }

Declaration
[JsonProperty("queryStats")]
public virtual IDictionary<string, object> QueryStats { get; set; }
Property Value
Type Description
IDictionary<string, object>

RowCountExact

Standard DML returns an exact count of rows that were modified.

Declaration
[JsonProperty("rowCountExact")]
public virtual long? RowCountExact { get; set; }
Property Value
Type Description
long?

RowCountLowerBound

Partitioned DML doesn't offer exactly-once semantics, so it returns a lower bound of the rows modified.

Declaration
[JsonProperty("rowCountLowerBound")]
public virtual long? RowCountLowerBound { get; set; }
Property Value
Type Description
long?

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX