Show / Hide Table of Contents

Class ResultSetStats

Additional statistics about a ResultSet or PartialResultSet.

Inheritance
System.Object
ResultSetStats
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.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
System.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
System.Collections.Generic.IDictionary<System.String, System.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
System.Nullable<System.Int64>

RowCountLowerBound

Partitioned DML does not 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
System.Nullable<System.Int64>

Implements

IDirectResponseSchema
In This Article
Back to top