Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ResultSetStats

import type { ResultSetStats } from "https://googleapis.deno.dev/v1/spanner:v1.ts";

Additional statistics about a ResultSet or PartialResultSet.

interface ResultSetStats {
queryPlan?: QueryPlan;
queryStats?: {
[key: string]: any;
}
;
rowCountExact?: bigint;
rowCountLowerBound?: bigint;
}

§Properties

§
queryPlan?: QueryPlan
[src]

QueryPlan for the query associated with this result.

§
queryStats?: {
[key: string]: any;
}
[src]

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" }

§
rowCountExact?: bigint
[src]

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

§
rowCountLowerBound?: bigint
[src]

Partitioned DML does not offer exactly-once semantics, so it returns a lower bound of the rows modified.