okumin commented on a change in pull request #2551:
URL: https://github.com/apache/hive/pull/2551#discussion_r680140617
##########
File path: ql/src/test/queries/clientpositive/smb_mapjoin_complex_type.q
##########
@@ -10,10 +10,10 @@ set hive.merge.mapfiles=false;
set hive.merge.mapredfiles=false;
CREATE TABLE test_list1 (key INT, value array<int>, col_1 STRING) CLUSTERED BY
(value) SORTED BY (value) INTO 2 BUCKETS;
-INSERT INTO test_list1 VALUES (99, array(0,0), 'Alice'), (99, array(2,2),
'Mat'), (100, array(0,0), 'Bob'), (101, array(2,2), 'Car');
+INSERT INTO test_list1 VALUES (99, array(0,0), 'Alice'), (99, array(2,2),
'Mat'), (100, array(0,0), 'Bob'), (101, array(2,2), 'Car'), (102, array(1, 2,
3, 4), 'Mallory');
CREATE TABLE test_list2 (key INT, value array<int>, col_2 STRING) CLUSTERED BY
(value) SORTED BY (value) INTO 2 BUCKETS;
-INSERT INTO test_list2 VALUES (102, array(2,2), 'Del'), (103, array(2,2),
'Ema'), (104, array(3,3), 'Fli');
+INSERT INTO test_list2 VALUES (102, array(2,2), 'Del'), (103, array(2,2),
'Ema'), (104, array(3,3), 'Fli'), (105, array(1, 2, 3, 4), 'Victor');
Review comment:
FYI: Actually, SMB Map JOIN is not affected by this issue because
WritableComarator is not reused, unlike CommonMergeJoinOperator.
https://github.com/maheshk114/hive/blob/9a6e6cafdcac47f57c04947fefcaa35815243d77/ql/src/java/org/apache/hadoop/hive/ql/exec/SMBMapJoinOperator.java#L472-L473
--
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]