dsmiley commented on code in PR #3158:
URL: https://github.com/apache/solr/pull/3158#discussion_r1944771535


##########
solr/core/src/java/org/apache/solr/search/facet/FacetField.java:
##########
@@ -152,7 +152,7 @@ public FacetProcessor<FacetField> 
createFacetProcessor(FacetContext fcontext) {
       }
     }
 

Review Comment:
   There's a comment below: `// multi-valued after this point`.  Can you please 
move that up above the condition you are modifying, since I think it belongs 
higher.  



##########
solr/core/src/test/org/apache/solr/search/facet/TestJsonFacets.java:
##########
@@ -4907,6 +4907,38 @@ public void testQueryJoinBooksAndPages() throws 
Exception {
             + ", books2:{ buckets:[ {val:q,count:1}, {val:w,count:1} ] }"
             + "}");
   }
+  
+  @Test
+  public void testMultivalueEnumTypes() throws Exception {
+    final Client client = Client.localClient();
+    
+    final SolrParams p = params("rows", "0");
+    
+    client.deleteByQuery("*:*", null);
+    
+    List<SolrInputDocument> docsToAdd = new ArrayList<>(6);

Review Comment:
   Whoops; right; never mind.  We have too many weird test infrastructure 
things.



-- 
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