geserdugarov commented on code in PR #12120:
URL: https://github.com/apache/hudi/pull/12120#discussion_r1814747964
##########
hudi-client/hudi-client-common/src/test/java/org/apache/hudi/index/bucket/TestBucketIdentifier.java:
##########
@@ -121,9 +119,8 @@ public void testGetHashKeys() {
assertEquals("bcd", keys.get(1));
keys = identifier.getHashKeys(new HoodieKey("f1:abc,f2:bcd,efg",
"partition"), "f1,f2");
- assertEquals(3, keys.size());
+ assertEquals(2, keys.size());
assertEquals("abc", keys.get(0));
- assertEquals("bcd", keys.get(1));
- assertEquals("efg", keys.get(2));
+ assertEquals("bcd,efg", keys.get(1));
Review Comment:
@danny0405 , I described a couple of examples in
https://github.com/apache/hudi/issues/12155. If you don't mind, could you,
please, take a look?
--
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]