Valid Values | Description |
---|---|
OFF | No minmax index will be created, even if the create table statement specifies 'WITH MINMAX' with no columns. |
ALL | All columns are used in the minmax index. |
AUTO | An internal heuristic decides the columns to be used in the minmax index. |
NONE | No columns are used in the minmax index, but the minmax index is created. |
KEYS | Columns with unique or primary or referential constraints specified during the create table statement are used. An internal heuristic decides which columns with unique constraints are used. |
ALL_WITH_AUTO_TUNE | Same as ALL, but also enable auto_tune heuristics. |
AUTO_WITH_AUTO_TUNE | Same as AUTO, but also enable auto_tune heuristics. |
NONE_WITH_AUTO_TUNE | Same as NONE, but also enable auto_tune heuristics. |
KEYS_WITH_AUTO_TUNE | Same as KEYS, but also enable auto_tune heuristics. |