fix_hashtable_lookup

This commit is contained in:
sunsuodong 2020-10-23 17:12:42 +08:00
parent e10d55165a
commit 13a8fbfeee
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ int HashtableLookupCPUKernel::Run() {
output_string_pack[i] = null_string_pack;
hits_data[i] = 0;
} else {
output_string_pack[i] = all_string_pack[i];
output_string_pack[i] = all_string_pack[index];
hits_data[i] = 1;
}
}