Skip to main content

Class FilterByListRequest.Options

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

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

Optional parameters.

  • Field Details

    • CREATE_TEMP_TABLE

      public static final String CREATE_TEMP_TABLE
      If TRUE, a unique temporary table name will be generated in the sys_temp schema and used in place of viewName. This is always allowed even if the caller does not have permission to create tables. The generated name is returned in QUALIFIED_VIEW_NAME. Supported values:The default value is FALSE.
    • TRUE

      public static final String TRUE
    • FALSE

      public static final String FALSE
    • COLLECTION_NAME

      public static final String COLLECTION_NAME
      [DEPRECATED—please specify the containing schema for the view as part of viewName and use GPUdb.createSchema to create the schema if non-existent] Name of a schema for the newly created view. If the schema provided is non-existent, it will be automatically created.
    • FILTER_MODE

      public static final String FILTER_MODE
      String indicating the filter mode, either ‘in_list’ or ‘not_in_list’. Supported values:
      • IN_LIST: The filter will match all items that are in the provided list(s).
      • NOT_IN_LIST: The filter will match all items that are not in the provided list(s).
      The default value is IN_LIST.
    • IN_LIST

      public static final String IN_LIST
      The filter will match all items that are in the provided list(s).
    • NOT_IN_LIST

      public static final String NOT_IN_LIST
      The filter will match all items that are not in the provided list(s).