forked from debezium/debezium
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DBZ-3697 Adding metadata to fields for SQLServerConnector
- Loading branch information
Showing
2 changed files
with
26 additions
and
0 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
20 changes: 20 additions & 0 deletions
20
debezium-connector-sqlserver/src/test/java/io/debezium/connector/sqlserver/FieldTest.java
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
/* | ||
* Copyright Debezium Authors. | ||
* | ||
* Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 | ||
*/ | ||
|
||
package io.debezium.connector.sqlserver; | ||
|
||
import org.junit.Before; | ||
|
||
import io.debezium.config.AbstractFieldTest; | ||
|
||
public class FieldTest extends AbstractFieldTest { | ||
|
||
@Before | ||
public void before() { | ||
setAllConnectorFields(SqlServerConnectorConfig.ALL_FIELDS); | ||
} | ||
|
||
} |