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

lidongdai pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/seatunnel.git


The following commit(s) were added to refs/heads/dev by this push:
     new 0fed6f605c [Fix][Doc] Delete space before _test and _sink (#9216)
0fed6f605c is described below

commit 0fed6f605c77f19f0578b7f9d5bd577002c0c162
Author: Kehan Zhou <[email protected]>
AuthorDate: Wed Apr 23 21:20:08 2025 +0800

    [Fix][Doc] Delete space before _test and _sink (#9216)
---
 docs/en/connector-v2/sink/Jdbc.md       | 4 ++--
 docs/en/connector-v2/sink/PostgreSql.md | 4 ++--
 docs/zh/connector-v2/sink/PostgreSql.md | 4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/docs/en/connector-v2/sink/Jdbc.md 
b/docs/en/connector-v2/sink/Jdbc.md
index 5ad6735609..539a3e3fd4 100644
--- a/docs/en/connector-v2/sink/Jdbc.md
+++ b/docs/en/connector-v2/sink/Jdbc.md
@@ -130,8 +130,8 @@ mysql sink for example:
 
 pgsql (Oracle Sqlserver ...) Sink for example:
 
-1. ${schema_name}.${table_name} _test
-2. dbo.tt_${table_name} _sink
+1. ${schema_name}.${table_name}_test
+2. dbo.tt_${table_name}_sink
 3. public.sink_table
 
 Tip: If the target database has the concept of SCHEMA, the table parameter 
must be written as `xxx.xxx`
diff --git a/docs/en/connector-v2/sink/PostgreSql.md 
b/docs/en/connector-v2/sink/PostgreSql.md
index 2bae4fc47e..0e69d3df28 100644
--- a/docs/en/connector-v2/sink/PostgreSql.md
+++ b/docs/en/connector-v2/sink/PostgreSql.md
@@ -110,8 +110,8 @@ This option is mutually exclusive with `query` and has a 
higher priority.
 The table parameter can fill in the name of an unwilling table, which will 
eventually be used as the table name of the creation table, and supports 
variables (`${table_name}`, `${schema_name}`). Replacement rules: 
`${schema_name}` will replace the SCHEMA name passed to the target side, and 
`${table_name}` will replace the name of the table passed to the table at the 
target side.
 
 for example:
-1. ${schema_name}.${table_name} _test
-2. dbo.tt_${table_name} _sink
+1. ${schema_name}.${table_name}_test
+2. dbo.tt_${table_name}_sink
 3. public.sink_table
 
 ### schema_save_mode[Enum]
diff --git a/docs/zh/connector-v2/sink/PostgreSql.md 
b/docs/zh/connector-v2/sink/PostgreSql.md
index a08cbae51d..8654db5905 100644
--- a/docs/zh/connector-v2/sink/PostgreSql.md
+++ b/docs/zh/connector-v2/sink/PostgreSql.md
@@ -106,8 +106,8 @@ import ChangeLog from '../changelog/connector-jdbc.md';
 
表参数可以填写一个不想的表的名称,最终将作为创建表的表名,并支持变量(`${table_name}`,`${schema_name}`)。替换规则:`${schema_name}`
 将替换为传递给目标端的 SCHEMA 名称,`${table_name}` 将替换为传递给目标端的表名称。
 
 例如:
-1. `${schema_name}.${table_name} _test`
-2. `dbo.tt_${table_name} _sink`
+1. `${schema_name}.${table_name}_test`
+2. `dbo.tt_${table_name}_sink`
 3. `public.sink_table`
 
 ### schema_save_mode [枚举]

Reply via email to