Skip to content

Commit

Permalink
[Improve][Postgres-CDC] Fix name typos (#6248)
Browse files Browse the repository at this point in the history
  • Loading branch information
hailin0 authored Jan 19, 2024
1 parent 0c593a3 commit 2462f1c
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,7 @@
</parent>

<artifactId>connector-cdc-postgres</artifactId>

<properties />
<name>SeaTunnel : Connectors V2 : CDC : Postgres</name>

<dependencyManagement>
<dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand All @@ -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"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand All @@ -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"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand All @@ -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"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand All @@ -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"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand All @@ -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"
Expand Down

0 comments on commit 2462f1c

Please sign in to comment.