From 0d26e31d422868743f48312bd543b951d631c20c Mon Sep 17 00:00:00 2001 From: Marco Descher Date: Tue, 25 Jun 2024 11:15:03 +0200 Subject: [PATCH] solr The field STR is ambiguous --- .../src/org/apache/solr/common/util/FastJavaBinDecoder.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bundles/org.apache.solr/src/org/apache/solr/common/util/FastJavaBinDecoder.java b/bundles/org.apache.solr/src/org/apache/solr/common/util/FastJavaBinDecoder.java index f1c03bd02c..6fb16800eb 100644 --- a/bundles/org.apache.solr/src/org/apache/solr/common/util/FastJavaBinDecoder.java +++ b/bundles/org.apache.solr/src/org/apache/solr/common/util/FastJavaBinDecoder.java @@ -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);