Skip to content

Commit 9722e14

Browse files
authored
SQL Example Error in Topic Management in Data Subscription Function (#469)
1 parent 9e9d3f0 commit 9722e14

File tree

6 files changed

+6
-14
lines changed

6 files changed

+6
-14
lines changed

src/UserGuide/Master/Tree/User-Manual/Data-subscription.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,6 @@ Detailed explanation of each parameter is as follows:
6969

7070
Examples are as follows:
7171

72-
73-
7472
```SQL
7573
-- Full subscription
7674
CREATE TOPIC root_all;
@@ -80,9 +78,8 @@ CREATE TOPIC IF NOT EXISTS db_timerange
8078
WITH (
8179
'path' = 'root.db.**',
8280
'start-time' = '2023-01-01',
83-
'end-time' = '2023-12-31',
81+
'end-time' = '2023-12-31'
8482
);
85-
```
8683

8784
#### 3.1.2 Delete Topic
8885

src/UserGuide/V2.0.1/Tree/User-Manual/Data-subscription.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,6 @@ Detailed explanation of each parameter is as follows:
6969

7070
Examples are as follows:
7171

72-
73-
7472
```SQL
7573
-- Full subscription
7674
CREATE TOPIC root_all;
@@ -80,7 +78,7 @@ CREATE TOPIC IF NOT EXISTS db_timerange
8078
WITH (
8179
'path' = 'root.db.**',
8280
'start-time' = '2023-01-01',
83-
'end-time' = '2023-12-31',
81+
'end-time' = '2023-12-31'
8482
);
8583
```
8684

src/UserGuide/latest/User-Manual/Data-subscription.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,6 @@ Detailed explanation of each parameter is as follows:
6969

7070
Examples are as follows:
7171

72-
73-
7472
```SQL
7573
-- Full subscription
7674
CREATE TOPIC root_all;
@@ -80,9 +78,8 @@ CREATE TOPIC IF NOT EXISTS db_timerange
8078
WITH (
8179
'path' = 'root.db.**',
8280
'start-time' = '2023-01-01',
83-
'end-time' = '2023-12-31',
81+
'end-time' = '2023-12-31'
8482
);
85-
```
8683

8784
#### 3.1.2 Delete Topic
8885

src/zh/UserGuide/Master/Tree/User-Manual/Data-subscription.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ CREATE TOPIC IF NOT EXISTS db_timerange
7474
WITH (
7575
'path' = 'root.db.**',
7676
'start-time' = '2023-01-01',
77-
'end-time' = '2023-12-31',
77+
'end-time' = '2023-12-31'
7878
);
7979
```
8080

src/zh/UserGuide/V2.0.1/Tree/User-Manual/Data-subscription.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ CREATE TOPIC IF NOT EXISTS db_timerange
7474
WITH (
7575
'path' = 'root.db.**',
7676
'start-time' = '2023-01-01',
77-
'end-time' = '2023-12-31',
77+
'end-time' = '2023-12-31'
7878
);
7979
```
8080

src/zh/UserGuide/latest/User-Manual/Data-subscription.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ CREATE TOPIC IF NOT EXISTS db_timerange
7474
WITH (
7575
'path' = 'root.db.**',
7676
'start-time' = '2023-01-01',
77-
'end-time' = '2023-12-31',
77+
'end-time' = '2023-12-31'
7878
);
7979
```
8080

0 commit comments

Comments
 (0)