nl.topicus.jdbc.shaded.com.google.spanner.v1.ResultSetStatsOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spanner-jdbc Show documentation
Show all versions of spanner-jdbc Show documentation
JDBC Driver for Google Cloud Spanner
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/spanner/v1/result_set.proto
package nl.topicus.jdbc.shaded.com.google.spanner.v1;
public interface ResultSetStatsOrBuilder extends
// @@protoc_insertion_point(interface_extends:google.spanner.v1.ResultSetStats)
nl.topicus.jdbc.shaded.com.google.protobuf.MessageOrBuilder {
/**
*
* [QueryPlan][google.spanner.v1.QueryPlan] for the query associated with this result.
*
*
* .google.spanner.v1.QueryPlan query_plan = 1;
*/
boolean hasQueryPlan();
/**
*
* [QueryPlan][google.spanner.v1.QueryPlan] for the query associated with this result.
*
*
* .google.spanner.v1.QueryPlan query_plan = 1;
*/
nl.topicus.jdbc.shaded.com.google.spanner.v1.QueryPlan getQueryPlan();
/**
*
* [QueryPlan][google.spanner.v1.QueryPlan] for the query associated with this result.
*
*
* .google.spanner.v1.QueryPlan query_plan = 1;
*/
nl.topicus.jdbc.shaded.com.google.spanner.v1.QueryPlanOrBuilder getQueryPlanOrBuilder();
/**
*
* 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"
* }
*
*
* .google.protobuf.Struct query_stats = 2;
*/
boolean hasQueryStats();
/**
*
* 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"
* }
*
*
* .google.protobuf.Struct query_stats = 2;
*/
nl.topicus.jdbc.shaded.com.google.protobuf.Struct getQueryStats();
/**
*
* 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"
* }
*
*
* .google.protobuf.Struct query_stats = 2;
*/
nl.topicus.jdbc.shaded.com.google.protobuf.StructOrBuilder getQueryStatsOrBuilder();
}