Copilot commented on code in PR #16589:
URL: https://github.com/apache/pinot/pull/16589#discussion_r2275417668


##########
pinot-core/src/test/java/org/apache/pinot/core/operator/transform/function/BaseTransformFunctionTest.java:
##########
@@ -205,8 +206,8 @@ public void setUp()
 
       Random random = new Random();
       for (int j = 0; j < VECTOR_DIM_SIZE; j++) {
-        _vector1Values[i][j] = random.nextFloat();;
-        _vector2Values[i][j] = random.nextFloat();;
+        _vector1Values[i][j] = random.nextFloat();

Review Comment:
   This change removes extra semicolons from the lines, which is a good 
improvement but appears unrelated to the main PR purpose of adding QueryContext 
support.



##########
pinot-core/src/test/java/org/apache/pinot/core/operator/transform/function/BaseTransformFunctionTest.java:
##########
@@ -205,8 +206,8 @@ public void setUp()
 
       Random random = new Random();
       for (int j = 0; j < VECTOR_DIM_SIZE; j++) {
-        _vector1Values[i][j] = random.nextFloat();;
-        _vector2Values[i][j] = random.nextFloat();;
+        _vector1Values[i][j] = random.nextFloat();
+        _vector2Values[i][j] = random.nextFloat();

Review Comment:
   This change removes extra semicolons from the lines, which is a good 
improvement but appears unrelated to the main PR purpose of adding QueryContext 
support.



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