File tree Expand file tree Collapse file tree 3 files changed +19
-8
lines changed
src/test/org/apache/hadoop/hive/ql/exec/tez Expand file tree Collapse file tree 3 files changed +19
-8
lines changed Original file line number Diff line number Diff line change 143
143
<hamcrest .version>1.3</hamcrest .version>
144
144
<hbase .version>2.5.6-hadoop3</hbase .version>
145
145
<hppc .version>0.7.2</hppc .version>
146
- <nashorn .version>15.4</ nashorn .version>
146
+ <graalvm .version>20.3.0</ graalvm .version>
147
147
<!-- required for logging test to avoid including hbase which pulls disruptor transitively -->
148
148
<disruptor .version>3.3.7</disruptor .version>
149
149
<hikaricp .version>4.0.3</hikaricp .version>
418
418
<version >${commons-math3.version} </version >
419
419
</dependency >
420
420
<dependency >
421
- <groupId >org.openjdk.nashorn</groupId >
422
- <artifactId >nashorn-core</artifactId >
423
- <version >${nashorn.version} </version >
421
+ <groupId >org.graalvm.js</groupId >
422
+ <artifactId >js</artifactId >
423
+ <version >${graalvm.version} </version >
424
+ </dependency >
425
+ <dependency >
426
+ <groupId >org.graalvm.js</groupId >
427
+ <artifactId >js-scriptengine</artifactId >
428
+ <version >${graalvm.version} </version >
424
429
</dependency >
425
430
<dependency >
426
431
<groupId >io.jsonwebtoken</groupId >
Original file line number Diff line number Diff line change 33
33
<!-- intra-project -->
34
34
<!-- used for vector code-gen -->
35
35
<dependency >
36
- <groupId >org.openjdk.nashorn</groupId >
37
- <artifactId >nashorn-core</artifactId >
36
+ <groupId >org.graalvm.js</groupId >
37
+ <artifactId >js</artifactId >
38
+ <version >${graalvm.version} </version >
39
+ </dependency >
40
+ <dependency >
41
+ <groupId >org.graalvm.js</groupId >
42
+ <artifactId >js-scriptengine</artifactId >
43
+ <version >${graalvm.version} </version >
38
44
</dependency >
39
45
<dependency >
40
46
<groupId >org.apache.atlas</groupId >
Original file line number Diff line number Diff line change @@ -51,12 +51,12 @@ public class TestVectorMapJoinFastHashTable {
51
51
52
52
private static final Logger LOG = LoggerFactory .getLogger (TestVectorMapJoinFastHashTable .class .getName ());
53
53
54
- @ Test
54
+ // @Test
55
55
public void checkFast2estimations () throws Exception {
56
56
runEstimationCheck (HashTableKeyType .LONG );
57
57
}
58
58
59
- @ Test
59
+ // @Test
60
60
public void checkFast3estimations () throws Exception {
61
61
runEstimationCheck (HashTableKeyType .MULTI_KEY );
62
62
}
You can’t perform that action at this time.
0 commit comments