Aggarwal-Raghav commented on code in PR #6239:
URL: https://github.com/apache/hive/pull/6239#discussion_r2661007507
##########
ql/src/test/org/apache/hadoop/hive/ql/exec/vector/mapjoin/MapJoinTestConfig.java:
##########
@@ -394,6 +394,9 @@ public static VectorMapJoinDesc
createVectorMapJoinDesc(MapJoinTestDescription t
case LONG:
hashTableKeyType = HashTableKeyType.LONG;
break;
+ case DATE:
+ hashTableKeyType = HashTableKeyType.DATE;
+ break;
Review Comment:
In `TestMapJoinOperator.java`, the following are the join keys for UT. The
`bigTableKeyColumnNums = new int[] {0};` determines the join column.
```
- TestLong0: long
- testLong0_NoRegularKeys: long
- testLong1: int
- testLong2: short
- testLong3: int
- testLong3_NoRegularKeys: int
- testLong4: int
- testLong5: long
- testLong6: long
- testDate0: date
- testMultiKey0: short, int
- testMultiKey1: timestamp, short, string
- testMultiKey2: long, short, string
- testMultiKey3: date, byte
- testString0: string
- testString1: binary
- testString2: string
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]