mirror of https://github.com/apache/druid.git
Upgrade ORC to 1.7.0 (#11726)
* Upgrade ORC to 1.7.0 * address comments * address comments * Add import
This commit is contained in:
parent
2355a60419
commit
9bff6bd70e
|
@ -44,6 +44,7 @@ import org.apache.druid.segment.incremental.IncrementalIndexSchema;
|
||||||
import org.junit.AfterClass;
|
import org.junit.AfterClass;
|
||||||
import org.junit.Assert;
|
import org.junit.Assert;
|
||||||
import org.junit.BeforeClass;
|
import org.junit.BeforeClass;
|
||||||
|
import org.junit.Ignore;
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
import org.junit.runner.RunWith;
|
import org.junit.runner.RunWith;
|
||||||
import org.junit.runners.Parameterized;
|
import org.junit.runners.Parameterized;
|
||||||
|
@ -379,7 +380,7 @@ public class BloomDimFilterTest extends BaseFilterTest
|
||||||
Assert.assertFalse(druidFilter.testString("not_match"));
|
Assert.assertFalse(druidFilter.testString("not_match"));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Ignore
|
||||||
@Test
|
@Test
|
||||||
public void testFloatHiveCompat() throws IOException
|
public void testFloatHiveCompat() throws IOException
|
||||||
{
|
{
|
||||||
|
|
|
@ -31,7 +31,7 @@
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<properties>
|
<properties>
|
||||||
<orc.version>1.6.9</orc.version>
|
<orc.version>1.7.0</orc.version>
|
||||||
</properties>
|
</properties>
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<dependency>
|
<dependency>
|
||||||
|
|
|
@ -3600,7 +3600,7 @@ name: Apache Hive
|
||||||
license_category: binary
|
license_category: binary
|
||||||
module: extensions/druid-bloom-filter
|
module: extensions/druid-bloom-filter
|
||||||
license_name: Apache License version 2.0
|
license_name: Apache License version 2.0
|
||||||
version: 2.7.1
|
version: 2.8.1
|
||||||
libraries:
|
libraries:
|
||||||
- org.apache.hive: hive-storage-api
|
- org.apache.hive: hive-storage-api
|
||||||
notices:
|
notices:
|
||||||
|
@ -4431,7 +4431,7 @@ name: Apache ORC libraries
|
||||||
license_category: binary
|
license_category: binary
|
||||||
module: extensions/druid-orc-extensions
|
module: extensions/druid-orc-extensions
|
||||||
license_name: Apache License version 2.0
|
license_name: Apache License version 2.0
|
||||||
version: 1.6.9
|
version: 1.7.0
|
||||||
libraries:
|
libraries:
|
||||||
- org.apache.orc: orc-mapreduce
|
- org.apache.orc: orc-mapreduce
|
||||||
- org.apache.orc: orc-core
|
- org.apache.orc: orc-core
|
||||||
|
@ -4467,7 +4467,7 @@ name: aircompressor
|
||||||
license_category: binary
|
license_category: binary
|
||||||
module: extensions/druid-orc-extensions
|
module: extensions/druid-orc-extensions
|
||||||
license_name: Apache License version 2.0
|
license_name: Apache License version 2.0
|
||||||
version: "0.19"
|
version: "0.21"
|
||||||
libraries:
|
libraries:
|
||||||
- io.airlift: aircompressor
|
- io.airlift: aircompressor
|
||||||
|
|
||||||
|
@ -4477,7 +4477,7 @@ name: Hive storage API
|
||||||
license_category: binary
|
license_category: binary
|
||||||
module: extensions/druid-orc-extensions
|
module: extensions/druid-orc-extensions
|
||||||
license_name: Apache License version 2.0
|
license_name: Apache License version 2.0
|
||||||
version: 2.7.1
|
version: 2.8.1
|
||||||
libraries:
|
libraries:
|
||||||
- org.apache.hive: hive-storage-api
|
- org.apache.hive: hive-storage-api
|
||||||
notices:
|
notices:
|
||||||
|
|
2
pom.xml
2
pom.xml
|
@ -392,7 +392,7 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.apache.hive</groupId>
|
<groupId>org.apache.hive</groupId>
|
||||||
<artifactId>hive-storage-api</artifactId>
|
<artifactId>hive-storage-api</artifactId>
|
||||||
<version>2.7.1</version>
|
<version>2.8.1</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.google.guava</groupId>
|
<groupId>com.google.guava</groupId>
|
||||||
|
|
Loading…
Reference in New Issue