iamsanjay commented on code in PR #2292:
URL: https://github.com/apache/solr/pull/2292#discussion_r1528010534


##########
solr/core/src/test/org/apache/solr/search/QueryEqualityTest.java:
##########
@@ -911,13 +911,56 @@ public void testFuncVector() throws Exception {
   }
 
   public void testFuncKnnVector() throws Exception {

Review Comment:
   I tested another test case for 2 args variant. Passed! 
   ```
   
   try (SolrQueryRequest req =
                    req(
                            "f1", "vector",
                            "f2", "vector1")) {
         assertFuncEquals(
                 req,
                 "vectorSimilarity($f1, $f2)",
                 "vectorSimilarity($f1, vector1)",
                 "vectorSimilarity(vector, $f2)",
                 "vectorSimilarity(vector, vector1)"
                 );
       }
   ```



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