Skip to content

Commit

Permalink
Remove unused code
Browse files Browse the repository at this point in the history
  • Loading branch information
pajaks authored and ebyhr committed Jul 19, 2023
1 parent bb88cbd commit 307f367
Showing 1 changed file with 0 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1120,13 +1120,6 @@ public Optional<ConnectorOutputMetadata> finishCreateTable(
"Table '%s' does not have correct query id set",
table);

ImmutableList.Builder<String> columnNames = ImmutableList.builderWithExpectedSize(handle.getInputColumns().size());
ImmutableMap.Builder<String, Object> columnTypes = ImmutableMap.builderWithExpectedSize(handle.getInputColumns().size());
for (DeltaLakeColumnHandle column : handle.getInputColumns()) {
columnNames.add(column.getBaseColumnName());
columnTypes.put(column.getBaseColumnName(), serializeColumnType(NONE, new AtomicInteger(), column.getBaseType()));
}

ColumnMappingMode columnMappingMode = handle.getColumnMappingMode();
String schemaString = handle.getSchemaString();
try {
Expand Down

0 comments on commit 307f367

Please sign in to comment.