You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@drill.apache.org by cg...@apache.org on 2023/02/09 02:55:52 UTC

[drill] branch master updated: DRILL-8396: Update checkstyle version (#2751)

This is an automated email from the ASF dual-hosted git repository.

cgivre pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/drill.git


The following commit(s) were added to refs/heads/master by this push:
     new 20bdd9103c DRILL-8396: Update checkstyle version (#2751)
20bdd9103c is described below

commit 20bdd9103c46c71aac80399635427bd5c4f2d3ba
Author: Volodymyr Vysotskyi <vv...@gmail.com>
AuthorDate: Thu Feb 9 04:55:44 2023 +0200

    DRILL-8396: Update checkstyle version (#2751)
---
 .../java/org/apache/drill/exec/store/parquet/ParquetReaderUtility.java  | 2 +-
 pom.xml                                                                 | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/exec/java-exec/src/main/java/org/apache/drill/exec/store/parquet/ParquetReaderUtility.java b/exec/java-exec/src/main/java/org/apache/drill/exec/store/parquet/ParquetReaderUtility.java
index 8f47b58493..16fd9fcbdb 100644
--- a/exec/java-exec/src/main/java/org/apache/drill/exec/store/parquet/ParquetReaderUtility.java
+++ b/exec/java-exec/src/main/java/org/apache/drill/exec/store/parquet/ParquetReaderUtility.java
@@ -515,7 +515,7 @@ public class ParquetReaderUtility {
     // as we will know from the Drill version written in the files that the dates are correct
     int rowGroupIndex = 0;
     Map<String, SchemaElement> schemaElements = ParquetReaderUtility.getColNameToSchemaElementMapping(footer);
-    findDateColWithStatsLoop : for (SchemaPath schemaPath : columns) {
+    for (SchemaPath schemaPath : columns) {
       List<ColumnDescriptor> parquetColumns = footer.getFileMetaData().getSchema().getColumns();
       for (int i = 0; i < parquetColumns.size(); ++i) {
         ColumnDescriptor column = parquetColumns.get(i);
diff --git a/pom.xml b/pom.xml
index 811173c141..332aaa20bc 100644
--- a/pom.xml
+++ b/pom.xml
@@ -483,7 +483,7 @@
           <dependency>
             <groupId>com.puppycrawl.tools</groupId>
             <artifactId>checkstyle</artifactId>
-            <version>8.29</version>
+            <version>10.7.0</version>
           </dependency>
         </dependencies>
         <configuration>