This is an automated email from the ASF dual-hosted git repository.
junhao 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 af83fa493e [docs] Fix sys.clone doc demo error (#5025)
af83fa493e is described below
commit af83fa493e1e97e75eaf7052fa0af0858caa4400
Author: jerry <[email protected]>
AuthorDate: Thu Feb 6 15:11:54 2025 +0800
[docs] Fix sys.clone doc demo error (#5025)
---
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 aed24c3bcb..f982581255 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=*****'
);
```