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. It worked alright! 
   ```
   
   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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to