Skip to content

Commit 7f2d288

Browse files
mvn spotless
1 parent 4b8b266 commit 7f2d288

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

xtable-core/src/main/java/org/apache/xtable/iceberg/IcebergConversionSource.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,10 @@ public InternalTable getTable(Snapshot snapshot) {
123123
return InternalTable.builder()
124124
.tableFormat(TableFormat.ICEBERG)
125125
.basePath(iceTable.location())
126-
.name(iceTable.name().contains(iceTable.location()) ? sourceTableConfig.getName() : iceTable.name())
126+
.name(
127+
iceTable.name().contains(iceTable.location())
128+
? sourceTableConfig.getName()
129+
: iceTable.name())
127130
.partitioningFields(irPartitionFields)
128131
.latestCommitTime(Instant.ofEpochMilli(snapshot.timestampMillis()))
129132
.readSchema(irSchema)

0 commit comments

Comments
 (0)