class ExecuteSqlRequest_QueryMode

Mode in which the query must be processed.

Protobuf enum Google\Spanner\V1\ExecuteSqlRequest\QueryMode

Constants

NORMAL

The default mode where only the query result, without any information about the query plan is returned.

Generated from protobuf enum NORMAL = 0;

PLAN

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

Generated from protobuf enum PLAN = 1;

PROFILE

This mode returns both the query plan and the execution statistics along with the result rows.

Generated from protobuf enum PROFILE = 2;