You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## Versions
- [x] dev
- [x] 3.0
- [x] 2.1
- [ ] 2.0
## Languages
- [ ] Chinese
- [ ] English
## Docs Checklist
- [ ] Checked by AI
- [ ] Test Cases Built
Copy file name to clipboardExpand all lines: i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/sql-statements/table-and-view/index/BUILD-INDEX.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -101,12 +101,12 @@ partition_list
101
101
- 在 table1 整个表上构建索引 index1
102
102
103
103
```sql
104
-
BUILD INDEX index1 ONTABLE table1
104
+
BUILD INDEX index1 ON table1
105
105
```
106
106
107
107
- 在 table1 的分区 p1 和 p2 上构建索引 index1
108
108
109
109
```sql
110
-
BUILD INDEX index1 ON TABLE table1 PARTITION(p1, p2)
Copy file name to clipboardExpand all lines: i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/sql-statements/table-and-view/index/CREATE-INDEX.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -105,11 +105,11 @@ CREATE INDEX [IF NOT EXISTS] <index_name>
105
105
- 在 table1 上创建倒排索引 index1
106
106
107
107
```sql
108
-
CREATEINDEXindex1ONTABLE table1 USING INVERTED;
108
+
CREATEINDEXindex1ON table1 USING INVERTED;
109
109
```
110
110
111
111
- 在 table1 上创建 NGram BloomFilter 索引 index2
112
112
113
113
```sql
114
-
CREATE INDEX index2 ON TABLE table1 USING NGRAM_BF PROPERTIES("gram_size"="3", "bf_size"="1024");
114
+
CREATE INDEX index2 ON table1 USING NGRAM_BF PROPERTIES("gram_size"="3", "bf_size"="1024");
Copy file name to clipboardExpand all lines: i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/sql-manual/sql-statements/table-and-view/index/BUILD-INDEX.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -99,12 +99,12 @@ partition_list
99
99
- 在 table1 整个表上构建索引 index1
100
100
101
101
```sql
102
-
BUILD INDEX index1 ONTABLE table1
102
+
BUILD INDEX index1 ON table1
103
103
```
104
104
105
105
- 在 table1 的分区 p1 和 p2 上构建索引 index1
106
106
107
107
```sql
108
-
BUILD INDEX index1 ON TABLE table1 PARTITION(p1, p2)
Copy file name to clipboardExpand all lines: i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/sql-manual/sql-statements/table-and-view/index/CREATE-INDEX.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -106,11 +106,11 @@ CREATE INDEX [IF NOT EXISTS] <index_name>
106
106
- 在 table1 上创建倒排索引 index1
107
107
108
108
```sql
109
-
CREATEINDEXindex1ONTABLE table1 USING INVERTED;
109
+
CREATEINDEXindex1ON table1 USING INVERTED;
110
110
```
111
111
112
112
- 在 table1 上创建 NGram BloomFilter 索引 index2
113
113
114
114
```sql
115
-
CREATE INDEX index2 ON TABLE table1 USING NGRAM_BF PROPERTIES("gram_size"="3", "bf_size"="1024");
115
+
CREATE INDEX index2 ON table1 USING NGRAM_BF PROPERTIES("gram_size"="3", "bf_size"="1024");
Copy file name to clipboardExpand all lines: i18n/zh-CN/docusaurus-plugin-content-docs/version-3.0/sql-manual/sql-statements/table-and-view/index/BUILD-INDEX.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -101,12 +101,12 @@ partition_list
101
101
- 在 table1 整个表上构建索引 index1
102
102
103
103
```sql
104
-
BUILD INDEX index1 ONTABLE table1
104
+
BUILD INDEX index1 ON table1
105
105
```
106
106
107
107
- 在 table1 的分区 p1 和 p2 上构建索引 index1
108
108
109
109
```sql
110
-
BUILD INDEX index1 ON TABLE table1 PARTITION(p1, p2)
Copy file name to clipboardExpand all lines: i18n/zh-CN/docusaurus-plugin-content-docs/version-3.0/sql-manual/sql-statements/table-and-view/index/CREATE-INDEX.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -105,11 +105,11 @@ CREATE INDEX [IF NOT EXISTS] <index_name>
105
105
- 在 table1 上创建倒排索引 index1
106
106
107
107
```sql
108
-
CREATEINDEXindex1ONTABLE table1 USING INVERTED;
108
+
CREATEINDEXindex1ON table1 USING INVERTED;
109
109
```
110
110
111
111
- 在 table1 上创建 NGram BloomFilter 索引 index2
112
112
113
113
```sql
114
-
CREATE INDEX index2 ON TABLE table1 USING NGRAM_BF PROPERTIES("gram_size"="3", "bf_size"="1024");
114
+
CREATE INDEX index2 ON table1 USING NGRAM_BF PROPERTIES("gram_size"="3", "bf_size"="1024");
0 commit comments