Skip to content

Commit

Permalink
[Doc] fix obs in loading from s3-compatible storage (backport #45544) (
Browse files Browse the repository at this point in the history
…#45548)

Signed-off-by: evelyn.zhaojie <[email protected]>
Co-authored-by: evelyn.zhaojie <[email protected]>
  • Loading branch information
mergify[bot] and evelynzhaojie authored May 13, 2024
1 parent dc2bcdb commit 40bf01f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/en/loading/BrokerLoad.md
Original file line number Diff line number Diff line change
Expand Up @@ -214,12 +214,12 @@ Use MinIO as an example. You can execute the following statement to load `file1.
```SQL
LOAD LABEL test_db.label7
(
DATA INFILE("obs://bucket_minio/input/file1.csv")
DATA INFILE("s3://bucket_minio/input/file1.csv")
INTO TABLE table1
COLUMNS TERMINATED BY ","
(id, name, score)
,
DATA INFILE("obs://bucket_minio/input/file2.csv")
DATA INFILE("s3://bucket_minio/input/file2.csv")
INTO TABLE table2
COLUMNS TERMINATED BY ","
(id, city)
Expand Down
4 changes: 2 additions & 2 deletions docs/zh/loading/BrokerLoad.md
Original file line number Diff line number Diff line change
Expand Up @@ -303,12 +303,12 @@ WITH BROKER
```SQL
LOAD LABEL test_db.label7
(
DATA INFILE("obs://bucket_minio/input/file1.csv")
DATA INFILE("s3://bucket_minio/input/file1.csv")
INTO TABLE table1
COLUMNS TERMINATED BY ","
(id, name, score)
,
DATA INFILE("obs://bucket_minio/input/file2.csv")
DATA INFILE("s3://bucket_minio/input/file2.csv")
INTO TABLE table2
COLUMNS TERMINATED BY ","
(id, city)
Expand Down

0 comments on commit 40bf01f

Please sign in to comment.