Skip to content
Merged

Fix typo #16740

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -5434,11 +5434,11 @@ protected static Map<String, Object> createTableProperties(HiveStorageFormat sto
return createTableProperties(storageFormat, ImmutableList.of());
}

protected static Map<String, Object> createTableProperties(HiveStorageFormat storageFormat, Iterable<String> parititonedBy)
protected static Map<String, Object> createTableProperties(HiveStorageFormat storageFormat, Iterable<String> partitionedBy)
{
return ImmutableMap.<String, Object>builder()
.put(STORAGE_FORMAT_PROPERTY, storageFormat)
.put(PARTITIONED_BY_PROPERTY, ImmutableList.copyOf(parititonedBy))
.put(PARTITIONED_BY_PROPERTY, ImmutableList.copyOf(partitionedBy))
.put(BUCKETED_BY_PROPERTY, ImmutableList.of())
.put(BUCKET_COUNT_PROPERTY, 0)
.put(SORTED_BY_PROPERTY, ImmutableList.of())
Expand Down