Aditya Mahajan
Aditya Mahajan
Hello Jackie, I was trying to identify if there is any gap in the test. I can think of two possible reasons that this test could fail a) The case...
> @aditya0811 Thanks for taking this issue! I feel the problem is from the implicit cast from float to double within the double comparison. The literal is parsed as double,...
Hey Jackie, when you say expected result is wrong, you mean the comparison in the case block in L721 in CaseTransformFunctionTest.java? ``` case FLOAT_SV_COLUMN: switch (type) { case EQUALS: results[i]...
Hey Jackie, sorry I am not able to follow. Lets say `_floatSVValues[INDEX_TO_COMPARE] = 0.1f`. In the case block in L721 in `CaseTransformFunctionTest` we are considering this as float `0.1f`. Lets...
ohk, so in the test, we try to cast `floatSVValues[INDEX_TO_COMPARE]` as as float?
Hello Jackie, I was able to reproduce the error by changing `protected static final int NUM_ROWS = 1` and below in `setUp()` in `BaseTransformFunctionTest.java`. ``` floatSVValues[i] = 0.1f ``` And...
Raised PR https://github.com/apache/pinot/pull/12922
Hello @gortiz I can try looking into this. I primarily see two parts to this. a) Implementing buffer implementation using Foreign API by creating maven sub project. b) Configuring classes...
ohk, in this case I will start looking for > How to compile a maven subproject that requires Java 22 while not affecting the rest of the project (which requires...
@gortiz why cant we use reflection as discussed in para 1 [here](https://maven.apache.org/plugins/maven-compiler-plugin/multirelease.html#the-forward-compatibility-solution)? And depending on java runtime invoke appropriate methods.