fix memory connector doc description error
This commit is contained in:
parent
985e61a357
commit
eb7d166a23
|
|
@ -179,11 +179,12 @@ Use these properties when creating a table with the Memory Connector to make que
|
|||
|
||||
Index Types
|
||||
--------------
|
||||
These are the types of indices that are built on the columns you specify in `sorted_by` or `index_columns`. If a query operator is not supported by a particular index, you can still use that operator, but the query will not benefit from the index.
|
||||
These are the types of indices that are built on the columns you specify in `sorted_by` or `index_columns`.
|
||||
If a query operator is not supported by a particular index, you can still use that operator, but the query will not benefit from the index.
|
||||
|
||||
| Index ID |Built for Columns In | Supported query operators |
|
||||
|-----------------------------------|----------------------------------------|---------------------------------------|
|
||||
| Bloom | `sorted_by,index_columns` | `=` `IN` |
|
||||
| Bloom | `index_columns` | `=` `IN` |
|
||||
| MinMax | `sorted_by,index_columns` | `=` `>` `>=` `<` `<=` `IN` `BETWEEN` |
|
||||
| Sparse | `sorted_by` | `=` `>` `>=` `<` `<=` `IN` `BETWEEN` |
|
||||
|
||||
|
|
|
|||
|
|
@ -173,8 +173,8 @@ totaldiskbyteusage | totalmemorybyteusage
|
|||
|
||||
| Index ID | 是否可用于`sorted_by`或`index_columns` | 支持的运算符 |
|
||||
|--------------|-----------------------------------------|---------------------------------------|
|
||||
| Bloom | 两者都可 | `=` `IN` |
|
||||
| MinMax | 仅`sorted_by` | `=` `>` `>=` `<` `<=` `IN` `BETWEEN` |
|
||||
| Bloom | 仅`index_columns` | `=` `IN` |
|
||||
| MinMax | 两者都可 | `=` `>` `>=` `<` `<=` `IN` `BETWEEN` |
|
||||
| Sparse | 仅`sorted_by` | `=` `>` `>=` `<` `<=` `IN` `BETWEEN` |
|
||||
|
||||
使用统计信息
|
||||
|
|
|
|||
Loading…
Reference in New Issue