Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/UserGuide/Master/Tree/SQL-Manual/SQL-Manual_apache.md
Original file line number Diff line number Diff line change
Expand Up @@ -211,8 +211,8 @@ create timeseries root.sgcc.wf03.wt01.temperature with datatype=FLOAT;
- Notice that when in the CREATE TIMESERIES statement the encoding method conflicts with the data type, the system gives the corresponding error prompt as shown below:

```sql
create timeseries root.ln.wf02.wt02.status WITH DATATYPE=BOOLEAN;
error: encoding TS_2DIFF does not support BOOLEAN;
create timeseries root.ln.wf02.wt02.status WITH DATATYPE=BOOLEAN, ENCODING=TS_2DIFF;
error: encoding TS_2DIFF does not support BOOLEAN
```

### 3.2 Create Aligned Timeseries
Expand Down
2 changes: 1 addition & 1 deletion src/UserGuide/Master/Tree/SQL-Manual/SQL-Manual_timecho.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ create timeseries root.sgcc.wf03.wt01.temperature with datatype=FLOAT;
- Notice that when in the CREATE TIMESERIES statement the encoding method conflicts with the data type, the system gives the corresponding error prompt as shown below:

```sql
create timeseries root.ln.wf02.wt02.status WITH DATATYPE=BOOLEAN;
create timeseries root.ln.wf02.wt02.status WITH DATATYPE=BOOLEAN, ENCODING=TS_2DIFF;
error: encoding TS_2DIFF does not support BOOLEAN
```

Expand Down
4 changes: 2 additions & 2 deletions src/UserGuide/latest/SQL-Manual/SQL-Manual_apache.md
Original file line number Diff line number Diff line change
Expand Up @@ -211,8 +211,8 @@ create timeseries root.sgcc.wf03.wt01.temperature with datatype=FLOAT;
- Notice that when in the CREATE TIMESERIES statement the encoding method conflicts with the data type, the system gives the corresponding error prompt as shown below:

```sql
create timeseries root.ln.wf02.wt02.status WITH DATATYPE=BOOLEAN;
error: encoding TS_2DIFF does not support BOOLEAN;
create timeseries root.ln.wf02.wt02.status WITH DATATYPE=BOOLEAN, ENCODING=TS_2DIFF;
error: encoding TS_2DIFF does not support BOOLEAN
```

### 3.2 Create Aligned Timeseries
Expand Down
2 changes: 1 addition & 1 deletion src/UserGuide/latest/SQL-Manual/SQL-Manual_timecho.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ create timeseries root.sgcc.wf03.wt01.temperature with datatype=FLOAT;
- Notice that when in the CREATE TIMESERIES statement the encoding method conflicts with the data type, the system gives the corresponding error prompt as shown below:

```sql
create timeseries root.ln.wf02.wt02.status WITH DATATYPE=BOOLEAN;
create timeseries root.ln.wf02.wt02.status WITH DATATYPE=BOOLEAN, ENCODING=TS_2DIFF;
error: encoding TS_2DIFF does not support BOOLEAN
```

Expand Down
4 changes: 2 additions & 2 deletions src/zh/UserGuide/Master/Tree/SQL-Manual/SQL-Manual_apache.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ create timeseries root.sgcc.wf03.wt01.temperature FLOAT;
- 错误提示

```sql
create timeseries root.ln.wf02.wt02.status WITH DATATYPE=BOOLEAN;
> error: encoding TS_2DIFF does not support BOOLEAN;
create timeseries root.ln.wf02.wt02.status WITH DATATYPE=BOOLEAN, ENCODING=TS_2DIFF;
error: encoding TS_2DIFF does not support BOOLEAN
```

#### 创建对齐时间序列
Expand Down
4 changes: 2 additions & 2 deletions src/zh/UserGuide/Master/Tree/SQL-Manual/SQL-Manual_timecho.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ create timeseries root.sgcc.wf03.wt01.temperature FLOAT;
- 错误提示

```sql
create timeseries root.ln.wf02.wt02.status WITH DATATYPE=BOOLEAN;
> error: encoding TS_2DIFF does not support BOOLEAN;
create timeseries root.ln.wf02.wt02.status WITH DATATYPE=BOOLEAN, ENCODING=TS_2DIFF;
error: encoding TS_2DIFF does not support BOOLEAN
```

#### 创建对齐时间序列
Expand Down
4 changes: 2 additions & 2 deletions src/zh/UserGuide/latest/SQL-Manual/SQL-Manual_apache.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ create timeseries root.sgcc.wf03.wt01.temperature FLOAT;
- 错误提示

```sql
create timeseries root.ln.wf02.wt02.status WITH DATATYPE=BOOLEAN;
> error: encoding TS_2DIFF does not support BOOLEAN;
create timeseries root.ln.wf02.wt02.status WITH DATATYPE=BOOLEAN, ENCODING=TS_2DIFF;
error: encoding TS_2DIFF does not support BOOLEAN
```

#### 创建对齐时间序列
Expand Down
4 changes: 2 additions & 2 deletions src/zh/UserGuide/latest/SQL-Manual/SQL-Manual_timecho.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ create timeseries root.sgcc.wf03.wt01.temperature FLOAT;
- 错误提示

```sql
create timeseries root.ln.wf02.wt02.status WITH DATATYPE=BOOLEAN;
> error: encoding TS_2DIFF does not support BOOLEAN;
create timeseries root.ln.wf02.wt02.status WITH DATATYPE=BOOLEAN, ENCODING=TS_2DIFF;
error: encoding TS_2DIFF does not support BOOLEAN
```

#### 创建对齐时间序列
Expand Down
Loading