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

zhouyao2023 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 2462f1c5f7 [Improve][Postgres-CDC] Fix name typos (#6248)
2462f1c5f7 is described below

commit 2462f1c5f7dc268838a4f6bcb98018828e23743e
Author: hailin0 <[email protected]>
AuthorDate: Fri Jan 19 19:28:07 2024 +0800

    [Improve][Postgres-CDC] Fix name typos (#6248)
---
 seatunnel-connectors-v2/connector-cdc/connector-cdc-postgres/pom.xml  | 3 +--
 .../seatunnel-connector-v2-e2e/connector-cdc-postgres-e2e/pom.xml     | 2 +-
 .../test/resources/pgcdc_to_pg_with_multi_table_mode_one_table.conf   | 4 ++--
 .../test/resources/pgcdc_to_pg_with_multi_table_mode_two_table.conf   | 4 ++--
 .../src/test/resources/postgrescdc_to_postgres.conf                   | 4 ++--
 .../resources/postgrescdc_to_postgres_with_custom_primary_key.conf    | 4 ++--
 .../test/resources/postgrescdc_to_postgres_with_no_primary_key.conf   | 4 ++--
 7 files changed, 12 insertions(+), 13 deletions(-)

diff --git 
a/seatunnel-connectors-v2/connector-cdc/connector-cdc-postgres/pom.xml 
b/seatunnel-connectors-v2/connector-cdc/connector-cdc-postgres/pom.xml
index eed5729b05..02de74a6fe 100644
--- a/seatunnel-connectors-v2/connector-cdc/connector-cdc-postgres/pom.xml
+++ b/seatunnel-connectors-v2/connector-cdc/connector-cdc-postgres/pom.xml
@@ -27,8 +27,7 @@
     </parent>
 
     <artifactId>connector-cdc-postgres</artifactId>
-
-    <properties />
+    <name>SeaTunnel : Connectors V2 : CDC : Postgres</name>
 
     <dependencyManagement>
         <dependencies>
diff --git 
a/seatunnel-e2e/seatunnel-connector-v2-e2e/connector-cdc-postgres-e2e/pom.xml 
b/seatunnel-e2e/seatunnel-connector-v2-e2e/connector-cdc-postgres-e2e/pom.xml
index a7cdd92465..0e78978295 100644
--- 
a/seatunnel-e2e/seatunnel-connector-v2-e2e/connector-cdc-postgres-e2e/pom.xml
+++ 
b/seatunnel-e2e/seatunnel-connector-v2-e2e/connector-cdc-postgres-e2e/pom.xml
@@ -23,7 +23,7 @@
     </parent>
 
     <artifactId>connector-cdc-postgres-e2e</artifactId>
-    <name>SeaTunnel : E2E : Connector V2 : CDC MySql</name>
+    <name>SeaTunnel : E2E : Connector V2 : CDC Postgres</name>
 
     <dependencyManagement>
         <dependencies>
diff --git 
a/seatunnel-e2e/seatunnel-connector-v2-e2e/connector-cdc-postgres-e2e/src/test/resources/pgcdc_to_pg_with_multi_table_mode_one_table.conf
 
b/seatunnel-e2e/seatunnel-connector-v2-e2e/connector-cdc-postgres-e2e/src/test/resources/pgcdc_to_pg_with_multi_table_mode_one_table.conf
index 0ee41bdae4..83862cff52 100644
--- 
a/seatunnel-e2e/seatunnel-connector-v2-e2e/connector-cdc-postgres-e2e/src/test/resources/pgcdc_to_pg_with_multi_table_mode_one_table.conf
+++ 
b/seatunnel-e2e/seatunnel-connector-v2-e2e/connector-cdc-postgres-e2e/src/test/resources/pgcdc_to_pg_with_multi_table_mode_one_table.conf
@@ -29,7 +29,7 @@ env {
 
 source {
   Postgres-CDC {
-    result_table_name = "customers_mysql_cdc"
+    result_table_name = "customers_postgres_cdc"
     username = "postgres"
     password = "postgres"
     database-names = ["postgres_cdc"]
@@ -46,7 +46,7 @@ transform {
 
 sink {
   jdbc {
-    source_table_name = "customers_mysql_cdc"
+    source_table_name = "customers_postgres_cdc"
     url = 
"jdbc:postgresql://postgres_cdc_e2e:5432/postgres_cdc?loggerLevel=OFF"
     driver = "org.postgresql.Driver"
     user = "postgres"
diff --git 
a/seatunnel-e2e/seatunnel-connector-v2-e2e/connector-cdc-postgres-e2e/src/test/resources/pgcdc_to_pg_with_multi_table_mode_two_table.conf
 
b/seatunnel-e2e/seatunnel-connector-v2-e2e/connector-cdc-postgres-e2e/src/test/resources/pgcdc_to_pg_with_multi_table_mode_two_table.conf
index c9027b1bda..0756a3c922 100644
--- 
a/seatunnel-e2e/seatunnel-connector-v2-e2e/connector-cdc-postgres-e2e/src/test/resources/pgcdc_to_pg_with_multi_table_mode_two_table.conf
+++ 
b/seatunnel-e2e/seatunnel-connector-v2-e2e/connector-cdc-postgres-e2e/src/test/resources/pgcdc_to_pg_with_multi_table_mode_two_table.conf
@@ -29,7 +29,7 @@ env {
 
 source {
   Postgres-CDC {
-    result_table_name = "customers_mysql_cdc"
+    result_table_name = "customers_postgres_cdc"
     username = "postgres"
     password = "postgres"
     database-names = ["postgres_cdc"]
@@ -46,7 +46,7 @@ transform {
 
 sink {
   jdbc {
-    source_table_name = "customers_mysql_cdc"
+    source_table_name = "customers_postgres_cdc"
     url = 
"jdbc:postgresql://postgres_cdc_e2e:5432/postgres_cdc?loggerLevel=OFF"
     driver = "org.postgresql.Driver"
     user = "postgres"
diff --git 
a/seatunnel-e2e/seatunnel-connector-v2-e2e/connector-cdc-postgres-e2e/src/test/resources/postgrescdc_to_postgres.conf
 
b/seatunnel-e2e/seatunnel-connector-v2-e2e/connector-cdc-postgres-e2e/src/test/resources/postgrescdc_to_postgres.conf
index d7056e54c6..5b1ded66d8 100644
--- 
a/seatunnel-e2e/seatunnel-connector-v2-e2e/connector-cdc-postgres-e2e/src/test/resources/postgrescdc_to_postgres.conf
+++ 
b/seatunnel-e2e/seatunnel-connector-v2-e2e/connector-cdc-postgres-e2e/src/test/resources/postgrescdc_to_postgres.conf
@@ -29,7 +29,7 @@ env {
 
 source {
   Postgres-CDC {
-    result_table_name = "customers_mysql_cdc"
+    result_table_name = "customers_postgres_cdc"
     username = "postgres"
     password = "postgres"
     database-names = ["postgres_cdc"]
@@ -46,7 +46,7 @@ transform {
 
 sink {
   jdbc {
-    source_table_name = "customers_mysql_cdc"
+    source_table_name = "customers_postgres_cdc"
     url = 
"jdbc:postgresql://postgres_cdc_e2e:5432/postgres_cdc?loggerLevel=OFF"
     driver = "org.postgresql.Driver"
     user = "postgres"
diff --git 
a/seatunnel-e2e/seatunnel-connector-v2-e2e/connector-cdc-postgres-e2e/src/test/resources/postgrescdc_to_postgres_with_custom_primary_key.conf
 
b/seatunnel-e2e/seatunnel-connector-v2-e2e/connector-cdc-postgres-e2e/src/test/resources/postgrescdc_to_postgres_with_custom_primary_key.conf
index 3250da0db2..536c6aa7e5 100644
--- 
a/seatunnel-e2e/seatunnel-connector-v2-e2e/connector-cdc-postgres-e2e/src/test/resources/postgrescdc_to_postgres_with_custom_primary_key.conf
+++ 
b/seatunnel-e2e/seatunnel-connector-v2-e2e/connector-cdc-postgres-e2e/src/test/resources/postgrescdc_to_postgres_with_custom_primary_key.conf
@@ -29,7 +29,7 @@ env {
 
 source {
   Postgres-CDC {
-    result_table_name = "customers_mysql_cdc"
+    result_table_name = "customers_postgres_cdc"
     username = "postgres"
     password = "postgres"
     database-names = ["postgres_cdc"]
@@ -53,7 +53,7 @@ transform {
 
 sink {
   jdbc {
-    source_table_name = "customers_mysql_cdc"
+    source_table_name = "customers_postgres_cdc"
     url = 
"jdbc:postgresql://postgres_cdc_e2e:5432/postgres_cdc?loggerLevel=OFF"
     driver = "org.postgresql.Driver"
     user = "postgres"
diff --git 
a/seatunnel-e2e/seatunnel-connector-v2-e2e/connector-cdc-postgres-e2e/src/test/resources/postgrescdc_to_postgres_with_no_primary_key.conf
 
b/seatunnel-e2e/seatunnel-connector-v2-e2e/connector-cdc-postgres-e2e/src/test/resources/postgrescdc_to_postgres_with_no_primary_key.conf
index d65bd26570..4985e5732b 100644
--- 
a/seatunnel-e2e/seatunnel-connector-v2-e2e/connector-cdc-postgres-e2e/src/test/resources/postgrescdc_to_postgres_with_no_primary_key.conf
+++ 
b/seatunnel-e2e/seatunnel-connector-v2-e2e/connector-cdc-postgres-e2e/src/test/resources/postgrescdc_to_postgres_with_no_primary_key.conf
@@ -29,7 +29,7 @@ env {
 
 source {
   Postgres-CDC {
-    result_table_name = "customers_mysql_cdc"
+    result_table_name = "customers_postgres_cdc"
     username = "postgres"
     password = "postgres"
     database-names = ["postgres_cdc"]
@@ -47,7 +47,7 @@ transform {
 
 sink {
   jdbc {
-    source_table_name = "customers_mysql_cdc"
+    source_table_name = "customers_postgres_cdc"
     url = 
"jdbc:postgresql://postgres_cdc_e2e:5432/postgres_cdc?loggerLevel=OFF"
     driver = "org.postgresql.Driver"
     user = "postgres"

Reply via email to