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 578a2f1 commit 4b8b266Copy full SHA for 4b8b266
xtable-core/src/main/java/org/apache/xtable/iceberg/IcebergConversionSource.java
@@ -93,12 +93,10 @@ private Table initSourceTable() {
93
namespace == null
94
? TableIdentifier.of(tableName)
95
: TableIdentifier.of(Namespace.of(namespace), tableName);
96
- Table table = tableManager.getTable(
+ return tableManager.getTable(
97
(IcebergCatalogConfig) sourceTableConfig.getCatalogConfig(),
98
tableIdentifier,
99
sourceTableConfig.getBasePath());
100
-
101
- return table;
102
}
103
104
private FileIO initTableOps() {
0 commit comments