[Doc](typo) Remove redundant symbols and Fix some misspelled words (#17609)

This commit is contained in:
Jiwen liu
2023-03-17 09:01:59 +08:00
committed by GitHub
parent 1222403233
commit f099b7d7b5
4 changed files with 4 additions and 4 deletions

View File

@ -322,7 +322,7 @@ Example data is as follows:
[
{"k1": 1, "k2": "a"},
{"k1": 2},
{"k1": 3, "k2": "c"},
{"k1": 3, "k2": "c"}
]
````

View File

@ -323,7 +323,7 @@ Doris 支持通过 Json root 抽取 Json 中指定的数据。
[
{"k1": 1, "k2": "a"},
{"k1": 2},
{"k1": 3, "k2": "c"},
{"k1": 3, "k2": "c"}
]
```

View File

@ -179,4 +179,4 @@ ALTER TABLE session_data ADD ROLLUP rollup_brower(brower,province,ip,url) DUPLIC
- 增加、修改 Bloom Filter
- 增加、删除 bitmap index
具体请参照 [Schema 变更](../advanced/alter-table/schema-change.md)
具体请参照 [Schema 变更](../advanced/alter-table/schema-change.md)

View File

@ -126,7 +126,7 @@ mysql> SELECT city, sum(cost), max(max_dwell_time), min(min_dwell_time) FROM tab
mysql> SELECT city, age, sum(cost), min(min_dwell_time) FROM table GROUP BY city, age;
```
Doris 执行这些sql时会自动命中这个 ROLLUP 表。
Doris 执行这些sql时会自动命中这个 ROLLUP 表。
### Duplicate 模型中的 ROLLUP