Skip to content

Commit

Permalink
[fix](tvf) fix azure tvf: can not build s3()
Browse files Browse the repository at this point in the history
  • Loading branch information
kaijchen committed Dec 24, 2024
1 parent 8e09e1b commit 1b3aab1
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,8 @@ public S3TableValuedFunction(Map<String, String> properties) throws AnalysisExce
final boolean isAzureTvf = AzureProperties.checkAzureProviderPropertyExist(properties);
// Azure could run without region
if (isAzureTvf) {
// We have to copy properties because the map is immutable
properties = Maps.newHashMap(properties);
properties.put(S3Properties.REGION, "DUMMY-REGION");
}
// 1. analyze common properties
Expand Down

0 comments on commit 1b3aab1

Please sign in to comment.