stillalex commented on code in PR #1664:
URL: https://github.com/apache/solr/pull/1664#discussion_r1222252450


##########
solr/core/src/java/org/apache/solr/search/SolrDocumentFetcher.java:
##########
@@ -539,6 +541,21 @@ public Reader readerValue() {
     public Number numericValue() {
       return null;
     }
+
+    @Override
+    public StoredValue storedValue() {
+      if (fieldType().stored() == false) {
+        return null;
+      } else {
+        return new StoredValue(stringValue());
+      }
+    }
+
+    @Override
+    public InvertableType invertableType() {
+      // TODO SOLR-16799 when to use InvertableType.TOKEN_STREAM and when to 
use null?
+      return null;
+    }

Review Comment:
   hmm. I agree, will remove the TODO



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@solr.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@solr.apache.org
For additional commands, e-mail: issues-h...@solr.apache.org

Reply via email to