This is an automated email from the ASF dual-hosted git repository.

fanjia pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/seatunnel-website.git


The following commit(s) were added to refs/heads/main by this push:
     new 626139403b16 Add space between option and data type (#392)
626139403b16 is described below

commit 626139403b163ee5e6a25864f0b3eefcbc2b5999
Author: wgzhao <[email protected]>
AuthorDate: Mon Aug 25 11:50:14 2025 +0800

    Add space between option and data type (#392)
---
 versioned_docs/version-2.3.11/connector-v2/sink/Jdbc.md | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/versioned_docs/version-2.3.11/connector-v2/sink/Jdbc.md 
b/versioned_docs/version-2.3.11/connector-v2/sink/Jdbc.md
index 539a3e3fd4fb..54347b3a9ae2 100644
--- a/versioned_docs/version-2.3.11/connector-v2/sink/Jdbc.md
+++ b/versioned_docs/version-2.3.11/connector-v2/sink/Jdbc.md
@@ -149,34 +149,34 @@ Choose to use INSERT sql, UPDATE sql to process update 
events(INSERT, UPDATE_AFT
 
 The time in seconds to wait for the database operation used to validate the 
connection to complete.
 
-### max_retries[int]
+### max_retries [int]
 
 The number of retries to submit failed (executeBatch)
 
-### batch_size[int]
+### batch_size [int]
 
 For batch writing, when the number of buffered records reaches the number of 
`batch_size` or the time reaches `checkpoint.interval`
 , the data will be flushed into the database
 
-### is_exactly_once[boolean]
+### is_exactly_once [boolean]
 
 Whether to enable exactly-once semantics, which will use Xa transactions. If 
on, you need to
 set `xa_data_source_class_name`.
 
-### generate_sink_sql[boolean]
+### generate_sink_sql [boolean]
 
 Generate sql statements based on the database table you want to write to
 
-### xa_data_source_class_name[string]
+### xa_data_source_class_name [string]
 
 The xa data source class name of the database Driver, for example, mysql is 
`com.mysql.cj.jdbc.MysqlXADataSource`, and
 please refer to appendix for other data sources
 
-### max_commit_attempts[int]
+### max_commit_attempts [int]
 
 The number of retries for transaction commit failures
 
-### transaction_timeout_sec[int]
+### transaction_timeout_sec [int]
 
 The timeout after the transaction is opened, the default is -1 (never 
timeout). Note that setting the timeout may affect
 exactly-once semantics

Reply via email to