Google Cloud Spanner v1 API - Enum ExecuteSqlRequest.Types.QueryMode (5.0.0-beta05)

public enum ExecuteSqlRequest.Types.QueryMode

Reference documentation and code samples for the Google Cloud Spanner v1 API enum ExecuteSqlRequest.Types.QueryMode.

Mode in which the statement must be processed.

Namespace

Google.Cloud.Spanner.V1

Assembly

Google.Cloud.Spanner.V1.dll

Fields

Name Description
Normal

The default mode. Only the statement results are returned.

Plan

This mode returns only the query plan, without any results or execution statistics information.

Profile

This mode returns the query plan, overall execution statistics, operator level execution statistics along with the results. This has a performance overhead compared to the other modes. It is not recommended to use this mode for production traffic.

WithPlanAndStats

This mode returns the query plan, overall (but not operator-level) execution statistics along with the results.

WithStats

This mode returns the overall (but not operator-level) execution statistics along with the results.