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 b8c9de7a8d [docs] Fix compact_database mode default value in Flink
procedures (#8511)
b8c9de7a8d is described below
commit b8c9de7a8db7fba0602e194b1dfa613d454d0108
Author: Eunbin Son <[email protected]>
AuthorDate: Thu Jul 9 13:04:07 2026 +0900
[docs] Fix compact_database mode default value in Flink procedures (#8511)
---
docs/docs/flink/procedures.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/docs/docs/flink/procedures.md b/docs/docs/flink/procedures.md
index b043538e1f..d264a58ca2 100644
--- a/docs/docs/flink/procedures.md
+++ b/docs/docs/flink/procedures.md
@@ -120,8 +120,8 @@ All available procedures are listed below.
<td>
To compact databases. Arguments:
<li>includingDatabases: to specify databases. You can use regular
expression.</li>
- <li>mode: compact mode. "divided": start a sink for each table,
detecting the new table requires restarting the job;
- "combined" (default): start a single combined sink for all
tables, the new table will be automatically detected.
+ <li>mode: compact mode. "divided" (default): start a sink for each
table, detecting the new table requires restarting the job;
+ "combined": start a single combined sink for all tables, the
new table will be automatically detected.
</li>
<li>includingTables: to specify tables. You can use regular
expression.</li>
<li>excludingTables: to specify tables that are not compacted. You
can use regular expression.</li>