Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
[Fix][Connector-V2][Postgres-CDC] fix ci bug
  • Loading branch information
zengyi committed Dec 12, 2025
commit 304f807fa5902c46ae64847d0b46ca14cbca78d0
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,9 @@ CREATE TABLE full_types_no_primary_key
f_time TIME(0),
f_default_numeric NUMERIC,
f_numeric_no_scale NUMERIC(24),
f_inet INET
f_inet INET,
f_geometry geometry(POINT, 4326),
f_geography geography(POINT, 4326)
);

CREATE TABLE full_types_no_primary_key_with_debezium
Expand All @@ -181,7 +183,9 @@ CREATE TABLE full_types_no_primary_key_with_debezium
f_time TIME(0),
f_default_numeric NUMERIC,
f_numeric_no_scale NUMERIC(24),
f_inet INET
f_inet INET,
f_geometry geometry(POINT, 4326),
f_geography geography(POINT, 4326)
);

CREATE TABLE postgres_cdc_table_3
Expand Down Expand Up @@ -297,9 +301,13 @@ VALUES (1, '2', 32767, INTERVAL '1 day 2 hours', '192.168.1.100', '192.168.1.0/2
INSERT INTO full_types_no_primary_key
VALUES (1, '2', 32767, 65535, 2147483647, 5.5, 6.6, 123.12345, 404.4443, true,
'Hello World', 'a', 'abc', 'abcd..xyz', '2020-07-17 18:00:22.123', '2020-07-17 18:00:22.123456',
'2020-07-17', '18:00:22', 500, 88,'192.168.1.1');
'2020-07-17', '18:00:22', 500, 88,'192.168.1.1',
ST_GeomFromText('POINT(-122.3452 47.5925)', 4326),
ST_GeographyFromText('POINT(-122.3452 47.5925)'));

INSERT INTO full_types_no_primary_key_with_debezium
VALUES (1, '2', 32767, 65535, 2147483647, 5.5, 6.6, 123.12345, 404.4443, true,
'Hello World', 'a', 'abc', 'abcd..xyz', '2020-07-17 18:00:22.123', '2020-07-17 18:00:22.123456',
'2020-07-17', '18:00:22', 500, 88,'192.168.1.1');
'2020-07-17', '18:00:22', 500, 88,'192.168.1.1',
ST_GeomFromText('POINT(-122.3452 47.5925)', 4326),
ST_GeographyFromText('POINT(-122.3452 47.5925)'));