public enum ClickHouseQueryParam extends Enum<ClickHouseQueryParam>
| Enum Constant and Description |
|---|
COMPRESS
whether to compress transfered data or not
|
DATABASE
database name used by default
|
EXTREMES
Whether to include extreme values.
|
MAX_BLOCK_SIZE
https://clickhouse.yandex/reference_en.html#max_block_size
|
MAX_EXECUTION_TIME
Maximum query execution time in seconds.
|
MAX_PARALLEL_REPLICAS |
MAX_ROWS_TO_GROUP_BY
Maximum number of unique keys received from aggregation.
|
MAX_THREADS
The maximum number of query processing threads
https://clickhouse.yandex/reference_en.html#max_threads
|
PRIORITY
The lower the value the bigger the priority.
|
PROFILE
https://clickhouse.yandex/reference_en.html#Settings profiles
|
QUOTA_KEY
quota is calculated for each quota_key value.
|
TOTALS_MODE
How to calculate TOTALS when HAVING is present, as well as when max_rows_to_group_by and group_by_overflow_mode = 'any' are present.
|
USER
user name, by default - default
|
| Modifier and Type | Method and Description |
|---|---|
Class |
getClazz() |
Object |
getDefaultValue() |
String |
getKey() |
String |
toString() |
static ClickHouseQueryParam |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ClickHouseQueryParam[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ClickHouseQueryParam MAX_PARALLEL_REPLICAS
public static final ClickHouseQueryParam TOTALS_MODE
public static final ClickHouseQueryParam QUOTA_KEY
public static final ClickHouseQueryParam PRIORITY
public static final ClickHouseQueryParam DATABASE
public static final ClickHouseQueryParam COMPRESS
public static final ClickHouseQueryParam EXTREMES
public static final ClickHouseQueryParam MAX_THREADS
public static final ClickHouseQueryParam MAX_EXECUTION_TIME
public static final ClickHouseQueryParam MAX_BLOCK_SIZE
public static final ClickHouseQueryParam MAX_ROWS_TO_GROUP_BY
public static final ClickHouseQueryParam PROFILE
public static final ClickHouseQueryParam USER
public static ClickHouseQueryParam[] values()
for (ClickHouseQueryParam c : ClickHouseQueryParam.values()) System.out.println(c);
public static ClickHouseQueryParam valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String getKey()
public Object getDefaultValue()
public Class getClazz()
public String toString()
toString in class Enum<ClickHouseQueryParam>Copyright © 2016. All rights reserved.