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
5 changes: 1 addition & 4 deletions src/UserGuide/Master/Tree/User-Manual/Data-subscription.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,6 @@ Detailed explanation of each parameter is as follows:

Examples are as follows:



```SQL
-- Full subscription
CREATE TOPIC root_all;
Expand All @@ -80,9 +78,8 @@ CREATE TOPIC IF NOT EXISTS db_timerange
WITH (
'path' = 'root.db.**',
'start-time' = '2023-01-01',
'end-time' = '2023-12-31',
'end-time' = '2023-12-31'
);
```

#### 3.1.2 Delete Topic

Expand Down
4 changes: 1 addition & 3 deletions src/UserGuide/V2.0.1/Tree/User-Manual/Data-subscription.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,6 @@ Detailed explanation of each parameter is as follows:

Examples are as follows:



```SQL
-- Full subscription
CREATE TOPIC root_all;
Expand All @@ -80,7 +78,7 @@ CREATE TOPIC IF NOT EXISTS db_timerange
WITH (
'path' = 'root.db.**',
'start-time' = '2023-01-01',
'end-time' = '2023-12-31',
'end-time' = '2023-12-31'
);
```

Expand Down
5 changes: 1 addition & 4 deletions src/UserGuide/latest/User-Manual/Data-subscription.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,6 @@ Detailed explanation of each parameter is as follows:

Examples are as follows:



```SQL
-- Full subscription
CREATE TOPIC root_all;
Expand All @@ -80,9 +78,8 @@ CREATE TOPIC IF NOT EXISTS db_timerange
WITH (
'path' = 'root.db.**',
'start-time' = '2023-01-01',
'end-time' = '2023-12-31',
'end-time' = '2023-12-31'
);
```

#### 3.1.2 Delete Topic

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ CREATE TOPIC IF NOT EXISTS db_timerange
WITH (
'path' = 'root.db.**',
'start-time' = '2023-01-01',
'end-time' = '2023-12-31',
'end-time' = '2023-12-31'
);
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ CREATE TOPIC IF NOT EXISTS db_timerange
WITH (
'path' = 'root.db.**',
'start-time' = '2023-01-01',
'end-time' = '2023-12-31',
'end-time' = '2023-12-31'
);
```

Expand Down
2 changes: 1 addition & 1 deletion src/zh/UserGuide/latest/User-Manual/Data-subscription.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ CREATE TOPIC IF NOT EXISTS db_timerange
WITH (
'path' = 'root.db.**',
'start-time' = '2023-01-01',
'end-time' = '2023-12-31',
'end-time' = '2023-12-31'
);
```

Expand Down
Loading