Skip to content

Commit b76df9d

Browse files
authored
Merge branch 'main' into adjust-rpr-wf-to-advanced
2 parents f794405 + 6059cf9 commit b76df9d

90 files changed

Lines changed: 9693 additions & 6170 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

src/.vuepress/sidebar/V2.0.x/zh-Table.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ export const zhSidebar = {
106106
prefix: 'User-Manual/',
107107
children: [
108108
{ text: '数据同步', link: 'Data-Sync_apache' },
109-
{ text: '用户自定义函数', link: 'User-defined-function' },
109+
{ text: 'UDF', link: 'User-defined-function' },
110110
{
111111
text: '安全权限',
112112
collapsible: true,

src/.vuepress/sidebar/V2.0.x/zh-Tree.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ export const zhSidebar = {
258258
children: [
259259
{ text: '标识符', link: 'Syntax-Rule' },
260260
{ text: '关键字', link: 'Keywords' },
261-
{ text: 'SQL手册', link: 'SQL-Manual' },
261+
{ text: 'SQL手册', link: 'SQL-Manual_apache' },
262262
{
263263
text: '函数与运算符',
264264
collapsible: true,

src/.vuepress/sidebar_timecho/V2.0.x/zh-Table.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ export const zhSidebar = {
114114
prefix: 'User-Manual/',
115115
children: [
116116
{ text: '数据同步', link: 'Data-Sync_timecho' },
117-
{ text: '用户自定义函数', link: 'User-defined-function' },
117+
{ text: 'UDF', link: 'User-defined-function' },
118118
{
119119
text: '安全权限',
120120
collapsible: true,

src/.vuepress/sidebar_timecho/V2.0.x/zh-Tree.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ export const zhSidebar = {
277277
children: [
278278
{ text: '标识符', link: 'Syntax-Rule' },
279279
{ text: '关键字', link: 'Keywords' },
280-
{ text: 'SQL手册', link: 'SQL-Manual' },
280+
{ text: 'SQL手册', link: 'SQL-Manual_timecho' },
281281
{
282282
text: '函数与运算符',
283283
collapsible: true,

src/UserGuide/Master/Table/Basic-Concept/Table-Management.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -280,6 +280,7 @@ ALTER TABLE (IF EXISTS)? tableName=qualifiedName ADD COLUMN (IF NOT EXISTS)? col
280280

281281
```SQL
282282
ALTER TABLE tableB ADD COLUMN IF NOT EXISTS a TAG
283+
ALTER TABLE tableB ADD COLUMN IF NOT EXISTS b FLOAT FIELD COMMENT 'b'
283284
ALTER TABLE tableB set properties TTL=3600
284285
COMMENT ON TABLE table1 IS 'table1'
285286
COMMENT ON COLUMN table1.a IS null

src/UserGuide/Master/Table/Basic-Concept/Write-Updata-Data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Since attributes generally do not change over time, it is recommended to update
5050

5151
### 1.2 Automatically Create Tables via Session Insertion
5252

53-
When inserting data via the Session API, IoTDB can automatically create table structures based on the data insertion request, eliminating the need for manual table creation.
53+
When performing data writing through Session, IoTDB supports schema-less writing: there is no need to manually create tables beforehand. The system automatically constructs the table structure based on the information in the write request, and then directly executes the data writing operation.
5454

5555
**Example:**
5656

src/UserGuide/Master/Table/QuickStart/QuickStart_apache.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ This guide will assist you in quickly installing and deploying IoTDB. You can qu
5555

5656
2. Data Insertion & Updates: IoTDB provides multiple methods for inserting real-time data. For basic data insertion and updating operations, please see [Write&Updata Data](../Basic-Concept/Write-Updata-Data.md)
5757

58-
3. Data Querying: IoTDB offers a rich set of data querying capabilities. For a basic introduction to data querying, please see [Query Data](../Basic-Concept/Query-Data.md)
58+
3. Data Querying: IoTDB offers a rich set of data querying capabilities. For a basic introduction to data querying, please see [Query Data](../Basic-Concept/Query-Data_apache.md)
5959

6060
4. Data Deletion: IoTDB supports two deletion methods: SQL-based deletion and automatic expiration deletion (TTL).
6161

@@ -67,7 +67,7 @@ This guide will assist you in quickly installing and deploying IoTDB. You can qu
6767

6868
- Data Synchronization: [Data Sync](../User-Manual/Data-Sync_apache.md)
6969

70-
6. Application Programming Interfaces (APIs): IoTDB provides various application programming interfaces (APIs) to facilitate developers' interaction with IoTDB in applications. Currently supported interfaces include [Java Native API](../API/Programming-Java-Native-API_apache.md)[Python Native API](../API/Programming-Python-Native-API_apache)[JDBC](../API/Programming-JDBC_apache.md), and more. For more programming interfaces, please refer to the [Application Programming Interfaces] section on the official website.
70+
6. Application Programming Interfaces (APIs): IoTDB provides various application programming interfaces (APIs) to facilitate developers' interaction with IoTDB in applications. Currently supported interfaces include [Java Native API](../API/Programming-Java-Native-API_apache.md)[Python Native API](../API/Programming-Python-Native-API_apache.md)[JDBC](../API/Programming-JDBC_apache.md), and more. For more programming interfaces, please refer to the [Application Programming Interfaces] section on the official website.
7171

7272
## 3. Want to learn more technical details?
7373

src/UserGuide/Master/Table/QuickStart/QuickStart_timecho.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ This guide will assist you in quickly installing and deploying IoTDB. You can qu
7474

7575
- Data Synchronization: [Data Sync](../User-Manual/Data-Sync_timecho.md)
7676

77-
6. Application Programming Interfaces (APIs): IoTDB provides various application programming interfaces (APIs) to facilitate developers' interaction with IoTDB in applications. Currently supported interfaces include [Java Native API](../API/Programming-Java-Native-API_timecho.md)[Python Native API](../API/Programming-Python-Native-API_timecho)[JDBC](../API/Programming-JDBC_timecho.md), and more. For more programming interfaces, please refer to the [Application Programming Interfaces] section on the official website.
77+
6. Application Programming Interfaces (APIs): IoTDB provides various application programming interfaces (APIs) to facilitate developers' interaction with IoTDB in applications. Currently supported interfaces include [Java Native API](../API/Programming-Java-Native-API_timecho.md)[Python Native API](../API/Programming-Python-Native-API_timecho.md)[JDBC](../API/Programming-JDBC_timecho.md), and more. For more programming interfaces, please refer to the [Application Programming Interfaces] section on the official website.
7878

7979
## 3. What other convenient tools are available?
8080

0 commit comments

Comments
 (0)