Module: Google::Cloud::Spanner::V1::ExecuteSqlRequest::QueryMode

Defined in:
proto_docs/google/spanner/v1/spanner.rb

Overview

Mode in which the statement must be processed.

Constant Summary collapse

NORMAL =

The default mode. Only the statement results are returned.

0
PLAN =

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

1
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.

2
WITH_STATS =

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

3
WITH_PLAN_AND_STATS =

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

4