Skip to content

Commit

Permalink
mvn spotless
Browse files Browse the repository at this point in the history
  • Loading branch information
jalpan-randeri committed Feb 8, 2025
1 parent 4b8b266 commit 7f2d288
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,10 @@ public InternalTable getTable(Snapshot snapshot) {
return InternalTable.builder()
.tableFormat(TableFormat.ICEBERG)
.basePath(iceTable.location())
.name(iceTable.name().contains(iceTable.location()) ? sourceTableConfig.getName() : iceTable.name())
.name(
iceTable.name().contains(iceTable.location())
? sourceTableConfig.getName()
: iceTable.name())
.partitioningFields(irPartitionFields)
.latestCommitTime(Instant.ofEpochMilli(snapshot.timestampMillis()))
.readSchema(irSchema)
Expand Down

0 comments on commit 7f2d288

Please sign in to comment.