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 cb9522c commit ee7f913Copy full SHA for ee7f913
plugin/trino-hive/src/main/java/io/trino/plugin/hive/aws/athena/PartitionProjection.java
@@ -20,7 +20,6 @@
20
import io.trino.plugin.hive.metastore.Table;
21
import io.trino.spi.predicate.Domain;
22
import io.trino.spi.predicate.TupleDomain;
23
-import org.apache.hadoop.fs.Path;
24
25
import java.util.List;
26
import java.util.Map;
@@ -82,7 +81,7 @@ public Optional<List<String>> getProjectedPartitionNamesByFilter(List<String> co
82
81
.collect(toImmutableList());
83
return Optional.of(cartesianProduct(projectedPartitionValues)
84
.stream()
85
- .map(parts -> String.join(Path.SEPARATOR, parts))
+ .map(parts -> String.join("/", parts))
86
.collect(toImmutableList()));
87
}
88
0 commit comments