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 2df49cb commit 90656f1Copy full SHA for 90656f1
parquet-column/src/main/java/org/apache/parquet/ValidInt96Stats.java
@@ -50,7 +50,7 @@ public static boolean hasValidInt96Stats(String createdBy) {
50
try {
51
ParsedVersion version = VersionParser.parse(createdBy);
52
if ("parquet-mr".equals(version.application)) {
53
- return version.version != null && version.version.compareTo("1.15.0") > 0;
+ return version.version != null && version.version.compareTo("1.16.0") > 0;
54
}
55
if ("parquet-mr compatible Photon".equals(version.application)) {
56
return true;
0 commit comments