Skip to content
This repository has been archived by the owner on Sep 18, 2023. It is now read-only.

[NSE-273]Support spark311 for branch 1.1.1 #319

Merged
Merged
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
85b5cb7
[NSE-262] fix remainer loss in decimal divide (#263)
rui-mo Apr 21, 2021
7c382d5
[NSE-261] ArrowDataSource: Add S3 Support (#270)
zhztheplayer Apr 22, 2021
7e7d8c2
[NSE-196] clean up configs in unit tests (#271)
rui-mo Apr 22, 2021
94af4ac
[NSE-265] Reserve enough memory before UnsafeAppend in builder (#266)
JkSelf Apr 23, 2021
333affd
[NSE-274] Comment to trigger tpc-h RAM test (#275)
zhztheplayer Apr 23, 2021
821bfa9
bump cmake to 3.16 (#281)
zhouyuan Apr 25, 2021
7415b7b
[NSE-276] Add option to switch Hadoop version (#277)
zhztheplayer Apr 27, 2021
1bf4d1d
[NSE-119] clean up on comments (#288)
zhouyuan Apr 27, 2021
c2c1737
[NSE-206]Update installation guide and configuration guide. (#289)
weiting-chen Apr 27, 2021
0b43448
[NSE-206]Fix Prerequisite and Arrow Installation Steps. (#290)
weiting-chen Apr 27, 2021
2591312
[NSE-245]Adding columnar RDD cache support (#246)
xuechendi Apr 29, 2021
1126320
[NSE-207] fix issues found from aggregate unit tests (#233)
rui-mo Apr 30, 2021
e2eb35d
[NSE-206]Update documents and License for 1.1.0 (#292)
Apr 30, 2021
0cc6bb9
[NSE-293] fix unsafemap with key = '0' (#294)
zhouyuan May 5, 2021
eb3f9da
[NSE-257] fix multiple slf4j bindings (#291)
rui-mo May 7, 2021
56bcb73
[NSE-297] Disable incremental compiler in GHA CI (#298)
zhztheplayer May 7, 2021
b6c267a
[NSE-285] ColumnarWindow: Support Date input in MAX/MIN (#286)
zhztheplayer May 8, 2021
bca337a
[NSE-304] Upgrade to Arrow 4.0.0: Change basic GHA TPC-H test target …
zhztheplayer May 10, 2021
2f5a532
[NSE-302] remove exception (#303)
rui-mo May 10, 2021
975fcaa
[NSE-273] support spark311 (#272)
zhouyuan May 11, 2021
8aa6b13
[NSE-311] Build reports errors (#312)
zhztheplayer May 12, 2021
e60389d
[NSE-257] fix the dependency issue on v2
rui-mo May 12, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
[NSE-257] fix the dependency issue on v2
rui-mo authored May 12, 2021
commit e60389d619f6d6ad083fc44baf8105c287db68c1
28 changes: 25 additions & 3 deletions arrow-data-source/pom.xml
Original file line number Diff line number Diff line change
@@ -48,9 +48,31 @@
<version>3.1.0</version>
</dependency>
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-common</artifactId>
<version>${hadoop.version}</version>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-common</artifactId>
<version>${hadoop.version}</version>
<exclusions>
<exclusion>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
</exclusion>
<exclusion>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
</exclusion>
<exclusion>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</exclusion>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
</exclusion>
<exclusion>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.hadoop</groupId>