We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b8b266 commit 7f2d288Copy full SHA for 7f2d288
xtable-core/src/main/java/org/apache/xtable/iceberg/IcebergConversionSource.java
@@ -123,7 +123,10 @@ public InternalTable getTable(Snapshot snapshot) {
123
return InternalTable.builder()
124
.tableFormat(TableFormat.ICEBERG)
125
.basePath(iceTable.location())
126
- .name(iceTable.name().contains(iceTable.location()) ? sourceTableConfig.getName() : iceTable.name())
+ .name(
127
+ iceTable.name().contains(iceTable.location())
128
+ ? sourceTableConfig.getName()
129
+ : iceTable.name())
130
.partitioningFields(irPartitionFields)
131
.latestCommitTime(Instant.ofEpochMilli(snapshot.timestampMillis()))
132
.readSchema(irSchema)
0 commit comments