Skip to content

Commit 1265453

Browse files
author
Seung-Min Lee
committed
FIX: removed json_types table in legacy test code resources
1 parent 401d403 commit 1265453

File tree

2 files changed

+0
-36
lines changed

2 files changed

+0
-36
lines changed

flink-cdc-connect/flink-cdc-source-connectors/flink-connector-mysql-cdc/src/test/resources/ddl/column_type_test.sql

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -112,21 +112,3 @@ CREATE TABLE user_info
112112
balance2 DECIMAL(18, 2),
113113
PRIMARY KEY (user_id)
114114
) DEFAULT CHARSET=utf8;
115-
116-
CREATE TABLE json_types
117-
(
118-
id SERIAL,
119-
json_c0 JSON,
120-
json_c1 JSON,
121-
json_c2 JSON,
122-
int_c INTEGER,
123-
PRIMARY KEY (id)
124-
) DEFAULT CHARSET=utf8;
125-
126-
INSERT INTO json_types
127-
VALUES (DEFAULT,
128-
'{"key1":"value1"}',
129-
'{"key1":"value1","key2":"value2"}',
130-
'[{"key1":"value1","key2":{"key2_1":"value2_1","key2_2":"value2_2"},"key3":["value3"],"key4":["value4_1","value4_2"]},{"key5":"value5"}]',
131-
1
132-
);

flink-cdc-connect/flink-cdc-source-connectors/flink-connector-mysql-cdc/src/test/resources/ddl/column_type_test_mysql8.sql

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -101,21 +101,3 @@ VALUES (DEFAULT, 127, 255, 255, 32767, 65535, 65535, 8388607, 16777215, 16777215
101101
ST_GeomFromText('MultiLineString((1 1,2 2,3 3),(4 4,5 5))'),
102102
ST_GeomFromText('MULTIPOLYGON(((0 0, 10 0, 10 10, 0 10, 0 0)), ((5 5, 7 5, 7 7, 5 7, 5 5)))'),
103103
ST_GeomFromText('GEOMETRYCOLLECTION(POINT(10 10), POINT(30 30), LINESTRING(15 15, 20 20))'));
104-
105-
CREATE TABLE json_types
106-
(
107-
id SERIAL,
108-
json_c0 JSON,
109-
json_c1 JSON,
110-
json_c2 JSON,
111-
int_c INTEGER,
112-
PRIMARY KEY (id)
113-
) DEFAULT CHARSET=utf8;
114-
115-
INSERT INTO json_types
116-
VALUES (DEFAULT,
117-
'{"key1":"value1"}',
118-
'{"key1":"value1","key2":"value2"}',
119-
'[{"key1":"value1","key2":{"key2_1":"value2_1","key2_2":"value2_2"},"key3":["value3"],"key4":["value4_1","value4_2"]},{"key5":"value5"}]',
120-
1
121-
);

0 commit comments

Comments
 (0)