Exclude sketches-core from druid-sql (#5223)

This commit is contained in:
Jonathan Wei 2018-01-05 15:12:20 -08:00 committed by Parag Jain
parent 02544f9197
commit 9186547689

View File

@ -41,6 +41,18 @@
<dependency>
<groupId>org.apache.calcite</groupId>
<artifactId>calcite-core</artifactId>
<exclusions>
<!--
~ Calcite 1.15.0 uses sketches-core 0.9.0 for a profiling feature:
~ (https://issues.apache.org/jira/browse/CALCITE-1616).
~ This conflicts with druid-datasketches which uses a newer version of sketches-core.
~ Druid does not use this Calcite profiling feature, so we exclude sketches-core here.
-->
<exclusion>
<groupId>com.yahoo.datasketches</groupId>
<artifactId>sketches-core</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.calcite</groupId>