Skip to content

Commit

Permalink
solr The field STR is ambiguous
Browse files Browse the repository at this point in the history
  • Loading branch information
col-panic committed Jun 25, 2024
1 parent 9f7c1a5 commit 26eb5ae
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -603,7 +603,8 @@ public void lazyRead(EntryImpl entry, StreamCodec codec) throws IOException {
}
},
// types that combine tag + length (or other info) in a single byte
_TAG_AND_LEN(TAG_AND_LEN, UPPER_3_BITS, null), _STR(STR, UPPER_3_BITS, DataEntry.Type.STR) {
_TAG_AND_LEN(TAG_AND_LEN, UPPER_3_BITS, null),
_STR(org.apache.solr.common.util.JavaBinCodec.STR, UPPER_3_BITS, DataEntry.Type.STR) {
@Override
public void lazyRead(EntryImpl entry, StreamCodec codec) throws IOException {
entry.size = readObjSz(codec, this);
Expand Down

0 comments on commit 26eb5ae

Please sign in to comment.