Skip to main content

Class ShowStatisticsRequest.Options

java.lang.Object
com.gpudb.protocol.ShowStatisticsRequest.Options
Enclosing class:

public static final class ShowStatisticsRequest.Options extends Object
A set of string constants for the ShowStatisticsRequest parameter options.

Optional parameters.

  • Field Details

    • NO_ERROR_IF_NOT_EXISTS

      public static final String NO_ERROR_IF_NOT_EXISTS
      If TRUE and if the table names specified in tableNames does not exist, no error is returned. If FALSE and if the table names specified in tableNames does not exist, then an error is returned. Supported values:The default value is FALSE.
    • TRUE

      public static final String TRUE
    • FALSE

      public static final String FALSE
    • COLUMN_NAMES

      public static final String COLUMN_NAMES
      Columns, per table in tableNames, to collect statistics for when @input.key options.collect_now is TRUE; ignored otherwise. Encoded as a ’;‘-separated parallel array aligned with tableNames (e.g. ‘x,y;z’ requests columns x,y for the first table and z for the second). A value of ’*’ expands to every collectable column on each table (geometry, vector, JSON, and array columns are skipped). An explicit list may not be combined with a ’*’ table_names wildcard. The default value is ”.
    • COLLECT_NOW

      public static final String COLLECT_NOW
      If TRUE, the columns named by @input.key options.column_names are collected synchronously during this request and reflected in the response. Supported values:The default value is FALSE.