queryMode property

String? queryMode
getter/setter pair

Used to control the amount of debugging information returned in ResultSetStats.

If partition_token is set, query_mode can only be set to QueryMode.NORMAL. Possible string values are:

  • "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 both the query plan and the execution statistics along with the results.

Implementation

core.String? queryMode;