Skip to content
Merged

Fix typo #21090

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 @@ -193,7 +193,7 @@ private static boolean locationEquivalent(String a, String b)

private static String normalizeS3Uri(String tableLocation)
{
// Normalize e.g. s3a to s3, so that table can be registed using s3:// location
// Normalize e.g. s3a to s3, so that table can be registered using s3:// location
// even if internally it uses s3a:// paths.
return tableLocation.replaceFirst("^s3[an]://", "s3://");
}
Expand Down