Skip to content

Commit

Permalink
[MINOR] Fix the look up warning msg (apache#11286)
Browse files Browse the repository at this point in the history
Co-authored-by: leixin1 <[email protected]>
  • Loading branch information
LXin96 and leixin1 authored May 25, 2024
1 parent 376571a commit 660c6c7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -616,7 +616,7 @@ private int[] getLookupKeys(int[][] keys) {
for (int[] key : keys) {
if (key.length > 1) {
throw new UnsupportedOperationException(
"Hive lookup can not support nested key now.");
"Hoodie lookup can not support nested key now.");
}
keyIndices[i] = key[0];
i++;
Expand Down

0 comments on commit 660c6c7

Please sign in to comment.