Skip to content

Commit

Permalink
Fix the raw bytes column in real-time segment (#6574)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jackie-Jiang committed Feb 11, 2021
1 parent 7ac8650 commit 0cff39d
Showing 1 changed file with 2 additions and 0 deletions.
Expand Up @@ -807,6 +807,8 @@ private static Object getValue(int docId, MutableForwardIndex forwardIndex, @Nul
return forwardIndex.getDouble(docId);
case STRING:
return forwardIndex.getString(docId);
case BYTES:
return forwardIndex.getBytes(docId);
default:
throw new IllegalStateException();
}
Expand Down

0 comments on commit 0cff39d

Please sign in to comment.