-
Notifications
You must be signed in to change notification settings - Fork 590
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(postgres-cdc): fix validation of PK with uppercase (#16793)
- Loading branch information
Showing
3 changed files
with
4 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,8 +31,8 @@ INSERT INTO person VALUES (1001, 'peter white', '[email protected]', '1781 2313 | |
INSERT INTO person VALUES (1002, 'sarah spencer', '[email protected]', '3453 4987 9481 6270', 'los angeles'); | ||
|
||
create schema abs; | ||
create table abs.t1 (v1 int primary key, v2 double precision, v3 varchar, v4 numeric); | ||
create publication my_publicaton for table abs.t1 (v1, v3); | ||
create table abs.t1 ("V1" int primary key, v2 double precision, v3 varchar, v4 numeric); | ||
create publication my_publicaton for table abs.t1 ("V1", v3); | ||
insert into abs.t1 values (1, 1.1, 'aaa', '5431.1234'); | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters