Github user vrozov commented on a diff in the pull request:
https://github.com/apache/drill/pull/1111#discussion_r166842824
--- Diff: contrib/storage-hive/hive-exec-shade/pom.xml ---
@@ -39,23 +39,28 @@
<groupId>log4j</groupId>
</exclusion>
<exclusion>
- <groupId>commons-codec</groupId>
- <artifactId>commons-codec</artifactId>
- </exclusion>
- <exclusion>
- <artifactId>calcite-avatica</artifactId>
- <groupId>org.apache.calcite</groupId>
+ <groupId>org.json</groupId>
+ <artifactId>json</artifactId>
</exclusion>
</exclusions>
</dependency>
+ <dependency>
+ <groupId>org.apache.parquet</groupId>
+ <artifactId>parquet-column</artifactId>
+ <version>${parquet.version}</version>
--- End diff --
Why is it safe to change one library? Will it be safer to upgrade all hive
dependencies on parquet to the same version?
---