提交 1b54e6a9 编写于 作者: G gccgdb1234

doc: fix broken links and missing pictures

上级 f3de3996
...@@ -65,7 +65,9 @@ CREATE TOPIC topic_name [WITH META] AS DATABASE db_name; ...@@ -65,7 +65,9 @@ CREATE TOPIC topic_name [WITH META] AS DATABASE db_name;
This SQL statement creates a subscription to all tables in the database. You can add the `WITH META` parameter to include schema changes in the subscription, including creating and deleting supertables; adding, deleting, and modifying columns; and creating, deleting, and modifying the tags of subtables. Consumers can determine the message type from the API. Note that this differs from Kafka. This SQL statement creates a subscription to all tables in the database. You can add the `WITH META` parameter to include schema changes in the subscription, including creating and deleting supertables; adding, deleting, and modifying columns; and creating, deleting, and modifying the tags of subtables. Consumers can determine the message type from the API. Note that this differs from Kafka.
## Program Model ## Programming Model
To subscribe the data from a created topic, the client program needs to follow the programming model described in this section.
1. Create Consumer 1. Create Consumer
...@@ -128,7 +130,6 @@ Will be available soon ...@@ -128,7 +130,6 @@ Will be available soon
<TabItem label="Rust" value="Rust"> <TabItem label="Rust" value="Rust">
<Rust />
</TabItem> </TabItem>
...@@ -136,6 +137,8 @@ Will be available soon ...@@ -136,6 +137,8 @@ Will be available soon
Will be available soon Will be available soon
</TabItem>
<TabItem label="Node.JS" value="Node.JS"> <TabItem label="Node.JS" value="Node.JS">
Will be available soon Will be available soon
...@@ -157,7 +160,6 @@ Once a topic becomes useless, it can be deleted. ...@@ -157,7 +160,6 @@ Once a topic becomes useless, it can be deleted.
You can delete topics that are no longer useful. Note that you must unsubscribe all consumers from a topic before deleting it. You can delete topics that are no longer useful. Note that you must unsubscribe all consumers from a topic before deleting it.
```sql ```sql
/* Delete topic/
DROP TOPIC topic_name; DROP TOPIC topic_name;
``` ```
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册