This is an automated email from the ASF dual-hosted git repository.
lzljs3620320 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-paimon.git
The following commit(s) were added to refs/heads/master by this push:
new 6fbc34492 [doc] Document Create Paimon Table like other connector table
6fbc34492 is described below
commit 6fbc34492fd35fe897a8b67408d86c4394936a8c
Author: Jingsong <[email protected]>
AuthorDate: Wed Oct 11 17:28:53 2023 +0800
[doc] Document Create Paimon Table like other connector table
---
docs/content/how-to/creating-tables.md | 3 +++
1 file changed, 3 insertions(+)
diff --git a/docs/content/how-to/creating-tables.md
b/docs/content/how-to/creating-tables.md
index bde1345e9..e4a050f56 100644
--- a/docs/content/how-to/creating-tables.md
+++ b/docs/content/how-to/creating-tables.md
@@ -456,6 +456,9 @@ CREATE TABLE MyTable (
);
CREATE TABLE MyTableLike LIKE MyTable;
+
+-- Create Paimon Table like other connector table
+CREATE TABLE MyTableLike WITH ('connector' = 'paimon') LIKE MyTable;
```
{{< /tab >}}