Skip to content

Commit

Permalink
linebreaks
Browse files Browse the repository at this point in the history
  • Loading branch information
dhercher committed Aug 2, 2024
1 parent 6519ab8 commit 07f387a
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,12 @@ public DatastreamToDML getDatastreamToDML() {
String driverName = this.dataSourceConfiguration.getDriverClassName().get();
switch (driverName) {
case "org.postgresql.Driver":
datastreamToDML = DatastreamToPostgresDML.of(dataSourceConfiguration).withSchemaMap(this.schemaMap);
datastreamToDML =
DatastreamToPostgresDML.of(dataSourceConfiguration).withSchemaMap(this.schemaMap);

Check warning on line 67 in v2/datastream-to-sql/src/main/java/com/google/cloud/teleport/v2/transforms/CreateDml.java

View check run for this annotation

Codecov / codecov/patch

v2/datastream-to-sql/src/main/java/com/google/cloud/teleport/v2/transforms/CreateDml.java#L66-L67

Added lines #L66 - L67 were not covered by tests
break;
case "com.mysql.cj.jdbc.Driver":
datastreamToDML = DatastreamToMySQLDML.of(dataSourceConfiguration).withSchemaMap(this.schemaMap);
datastreamToDML =
DatastreamToMySQLDML.of(dataSourceConfiguration).withSchemaMap(this.schemaMap);

Check warning on line 71 in v2/datastream-to-sql/src/main/java/com/google/cloud/teleport/v2/transforms/CreateDml.java

View check run for this annotation

Codecov / codecov/patch

v2/datastream-to-sql/src/main/java/com/google/cloud/teleport/v2/transforms/CreateDml.java#L70-L71

Added lines #L70 - L71 were not covered by tests
break;
default:
throw new IllegalArgumentException(
Expand Down

0 comments on commit 07f387a

Please sign in to comment.