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/paimon.git
The following commit(s) were added to refs/heads/master by this push:
new 91439c325f [doc] Add doc for where in clone from hive
91439c325f is described below
commit 91439c325f92dae78a8930f0324313ad3d0a5897
Author: JingsongLi <[email protected]>
AuthorDate: Sun Apr 20 18:33:14 2025 +0800
[doc] Add doc for where in clone from hive
---
docs/content/migration/clone-from-hive.md | 17 ++++++++++-------
1 file changed, 10 insertions(+), 7 deletions(-)
diff --git a/docs/content/migration/clone-from-hive.md
b/docs/content/migration/clone-from-hive.md
index 705312d8b8..bee1032833 100644
--- a/docs/content/migration/clone-from-hive.md
+++ b/docs/content/migration/clone-from-hive.md
@@ -34,15 +34,18 @@ Clone Hive Table supports cloning hive tables with parquet,
orc and avro formats
```bash
<FLINK_HOME>/flink run ./paimon-flink-action-{{< version >}}.jar \
clone_hive \
---database default
---table hivetable
---catalog_conf metastore=hive
---catalog_conf uri=thrift://localhost:9088
---target_database test
---target_table test_table
---target_catalog_conf warehouse=my_warehouse
+--database default \
+--table hivetable \
+--catalog_conf metastore=hive \
+--catalog_conf uri=thrift://localhost:9088 \
+--target_database test \
+--target_table test_table \
+--target_catalog_conf warehouse=my_warehouse \
+--where <filter_spec>
```
+You can use filter spec to specify the filtering condition for the partition.
+
## Clone Hive Database
```bash