Skip to content

Commit

Permalink
[doc] fix clone procedure doc style (#4449)
Browse files Browse the repository at this point in the history
fix doc style
  • Loading branch information
BsoBird authored Nov 5, 2024
1 parent 8648076 commit 8fc5b69
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions docs/content/flink/clone-tables.md
Original file line number Diff line number Diff line change
Expand Up @@ -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=*****'
);
```

Expand Down

0 comments on commit 8fc5b69

Please sign in to comment.