fix memory connector doc description error

This commit is contained in:
peiwangdb 2022-01-20 09:13:48 -05:00
parent 985e61a357
commit eb7d166a23
2 changed files with 5 additions and 4 deletions

View File

@ -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` |

View File

@ -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` |
使用统计信息