This is an automated email from the ASF dual-hosted git repository.
yuzelin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/paimon.git
The following commit(s) were added to refs/heads/master by this push:
new 8fc5b69dc [doc] fix clone procedure doc style (#4449)
8fc5b69dc is described below
commit 8fc5b69dcc11f9e5b6aca8323d686de5b5caf171
Author: PLASH SPEED <[email protected]>
AuthorDate: Tue Nov 5 11:17:28 2024 +0800
[doc] fix clone procedure doc style (#4449)
fix doc style
---
docs/content/flink/clone-tables.md | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/docs/content/flink/clone-tables.md
b/docs/content/flink/clone-tables.md
index 14075d57d..eec5ebb6d 100644
--- a/docs/content/flink/clone-tables.md
+++ b/docs/content/flink/clone-tables.md
@@ -58,14 +58,14 @@ Example: Clone `test_db.test_table` from source warehouse
to target warehouse.
```sql
CALL sys.clone(
- warehouse => 's3:///path/to/warehouse_source`,
- `database` => 'test_db',
- `table` => 'test_table',
- catalog_conf =>
's3.endpoint=https://****.com;s3.access-key=*****;s3.secret-key=*****',
- target_warehouse => 's3:///path/to/warehouse_target',
- target_database => 'test_db',
- target_table => 'test_table',
- target_catalog_conf =>
's3.endpoint=https://****.com;s3.access-key=*****;s3.secret-key=*****'
+ 'warehouse' => 's3:///path/to/warehouse_source',
+ 'database' => 'test_db',
+ 'table' => 'test_table',
+ 'catalog_conf' =>
's3.endpoint=https://****.com;s3.access-key=*****;s3.secret-key=*****',
+ 'target_warehouse' => 's3:///path/to/warehouse_target',
+ 'target_database' => 'test_db',
+ 'target_table' => 'test_table',
+ 'target_catalog_conf' =>
's3.endpoint=https://****.com;s3.access-key=*****;s3.secret-key=*****'
);
```