Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[doc](routine load) fix routine load doc error #1382

Merged
merged 1 commit into from
Nov 22, 2024
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 docs/data-operate/import/import-way/routine-load-manual.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ In Doris, you can create persistent Routine Load tasks using the `CREATE ROUTIN
In Doris, create the table for loading with the following syntax:

```sql
CREATE TABLE testdb.test_streamload(
CREATE TABLE testdb.test_routineload_tbl(
user_id BIGINT NOT NULL COMMENT "User ID",
name VARCHAR(20) COMMENT "User Name",
age INT COMMENT "User Age"
Expand Down Expand Up @@ -146,7 +146,7 @@ In Doris, you can create persistent Routine Load tasks using the `CREATE ROUTIN
In Doris, create the table for loading with the following syntax:

```sql
CREATE TABLE testdb.test_streamload(
CREATE TABLE testdb.test_routineload_tbl(
user_id BIGINT NOT NULL COMMENT "User ID",
name VARCHAR(20) COMMENT "User Name",
age INT COMMENT "User Age"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ kafka-console-consumer.sh --bootstrap-server localhost:9092 --topic test-routine
在 Doris 中,创建被导入的表,具体语法如下

```sql
CREATE TABLE testdb.test_streamload(
CREATE TABLE testdb.test_routineload_tbl(
user_id BIGINT NOT NULL COMMENT "user id",
name VARCHAR(20) COMMENT "name",
age INT COMMENT "age"
Expand Down Expand Up @@ -156,7 +156,7 @@ kafka-console-consumer.sh --bootstrap-server localhost:9092 --topic test-routine
在 Doris 中,创建被导入的表,具体语法如下

```sql
CREATE TABLE testdb.test_streamload(
CREATE TABLE testdb.test_routineload_tbl(
user_id BIGINT NOT NULL COMMENT "user id",
name VARCHAR(20) COMMENT "name",
age INT COMMENT "age"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ kafka-console-consumer.sh --bootstrap-server localhost:9092 --topic test-routine
在 Doris 中,创建被导入的表,具体语法如下

```sql
CREATE TABLE testdb.test_streamload(
CREATE TABLE testdb.test_routineload_tbl(
user_id BIGINT NOT NULL COMMENT "user id",
name VARCHAR(20) COMMENT "name",
age INT COMMENT "age"
Expand Down Expand Up @@ -156,7 +156,7 @@ kafka-console-consumer.sh --bootstrap-server localhost:9092 --topic test-routine
在 Doris 中,创建被导入的表,具体语法如下

```sql
CREATE TABLE testdb.test_streamload(
CREATE TABLE testdb.test_routineload_tbl(
user_id BIGINT NOT NULL COMMENT "user id",
name VARCHAR(20) COMMENT "name",
age INT COMMENT "age"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ kafka-console-consumer.sh --bootstrap-server localhost:9092 --topic test-routine
在 Doris 中,创建被导入的表,具体语法如下

```sql
CREATE TABLE testdb.test_streamload(
CREATE TABLE testdb.test_routineload_tbl(
user_id BIGINT NOT NULL COMMENT "user id",
name VARCHAR(20) COMMENT "name",
age INT COMMENT "age"
Expand Down Expand Up @@ -156,7 +156,7 @@ kafka-console-consumer.sh --bootstrap-server localhost:9092 --topic test-routine
在 Doris 中,创建被导入的表,具体语法如下

```sql
CREATE TABLE testdb.test_streamload(
CREATE TABLE testdb.test_routineload_tbl(
user_id BIGINT NOT NULL COMMENT "user id",
name VARCHAR(20) COMMENT "name",
age INT COMMENT "age"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ In Doris, you can create persistent Routine Load tasks using the `CREATE ROUTIN
In Doris, create the table for loading with the following syntax:

```sql
CREATE TABLE testdb.test_streamload(
CREATE TABLE testdb.test_routineload_tbl(
user_id BIGINT NOT NULL COMMENT "User ID",
name VARCHAR(20) COMMENT "User Name",
age INT COMMENT "User Age"
Expand Down Expand Up @@ -146,7 +146,7 @@ In Doris, you can create persistent Routine Load tasks using the `CREATE ROUTIN
In Doris, create the table for loading with the following syntax:

```sql
CREATE TABLE testdb.test_streamload(
CREATE TABLE testdb.test_routineload_tbl(
user_id BIGINT NOT NULL COMMENT "User ID",
name VARCHAR(20) COMMENT "User Name",
age INT COMMENT "User Age"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ In Doris, you can create persistent Routine Load tasks using the `CREATE ROUTIN
In Doris, create the table for loading with the following syntax:

```sql
CREATE TABLE testdb.test_streamload(
CREATE TABLE testdb.test_routineload_tbl(
user_id BIGINT NOT NULL COMMENT "User ID",
name VARCHAR(20) COMMENT "User Name",
age INT COMMENT "User Age"
Expand Down Expand Up @@ -146,7 +146,7 @@ In Doris, you can create persistent Routine Load tasks using the `CREATE ROUTIN
In Doris, create the table for loading with the following syntax:

```sql
CREATE TABLE testdb.test_streamload(
CREATE TABLE testdb.test_routineload_tbl(
user_id BIGINT NOT NULL COMMENT "User ID",
name VARCHAR(20) COMMENT "User Name",
age INT COMMENT "User Age"
Expand Down
Loading