This is an automated email from the ASF dual-hosted git repository.
JingsongLi 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 151344e51e [docs] Fix partition filter example wording in Flink
procedures (#8512)
151344e51e is described below
commit 151344e51e4714acccd8f9da383c0cb9807e2807
Author: Eunbin Son <[email protected]>
AuthorDate: Thu Jul 9 13:04:00 2026 +0900
[docs] Fix partition filter example wording in Flink procedures (#8512)
---
docs/docs/flink/procedures.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/docs/flink/procedures.md b/docs/docs/flink/procedures.md
index 3dd7779fdf..b043538e1f 100644
--- a/docs/docs/flink/procedures.md
+++ b/docs/docs/flink/procedures.md
@@ -37,7 +37,7 @@ argument can be omitted. For the above example, the call
statement is \
``CALL sys.compact(`table` => 'default.t', options => 'sink.parallelism=4')``.
Specify partitions: we use string to represent partition filter. "," means
"AND" and ";" means "OR". For example, if you want
-to specify two partitions date=01 and date=02, you need to write
'date=01;date=02'; If you want to specify one partition
+to specify two partitions date=01 or date=02, you need to write
'date=01;date=02'; If you want to specify one partition
with date=01 and day=01, you need to write 'date=01,day=01'.
Table options syntax: we use string to represent table options. The format is
'key1=value1,key2=value2...'.