Skip to content

Commit 89beb9a

Browse files
committed
Fix compilation
1 parent 2067979 commit 89beb9a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

airbyte-integrations/connectors/source-mysql/src/test-integration/java/io/airbyte/integrations/source/mysql/CdcMySqlSourceDatatypeTest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ protected void initTests() {
245245
TestDataHolder.builder()
246246
.sourceType("date")
247247
.fullSourceDataType("date not null")
248-
.airbyteType(JsonSchemaPrimitive.STRING)
248+
.airbyteType(JsonSchemaType.STRING)
249249
.addInsertValues("'0000-00-00'")
250250
.addExpectedValues("1970-01-01T00:00:00Z")
251251
.build());
@@ -263,7 +263,7 @@ protected void initTests() {
263263
TestDataHolder.builder()
264264
.sourceType("datetime")
265265
.fullSourceDataType("datetime not null")
266-
.airbyteType(JsonSchemaPrimitive.STRING)
266+
.airbyteType(JsonSchemaType.STRING)
267267
.addInsertValues("'0000-00-00 00:00:00'")
268268
.addExpectedValues("1970-01-01T00:00:00Z")
269269
.build());
@@ -281,7 +281,7 @@ protected void initTests() {
281281
TestDataHolder.builder()
282282
.sourceType("timestamp")
283283
.fullSourceDataType("timestamp not null")
284-
.airbyteType(JsonSchemaPrimitive.STRING)
284+
.airbyteType(JsonSchemaType.STRING)
285285
.addInsertValues("'0000-00-00 00:00:00.000000'")
286286
.addExpectedValues("1970-01-01T00:00:00Z")
287287
.build());

0 commit comments

Comments
 (0)