kecookier commented on issue #4928: URL: https://github.com/apache/incubator-gluten/issues/4928#issuecomment-1993302558
The following unit test case can reproduce the issue. I'm sure that got wrong value while parsing double in function `SIMDGetJsonObjectFunction::extractStringResult()`. More info about UT can refer to this commit https://github.com/kecookier/velox/commit/f87115d074772f3c00d326cd607742125b101beb#diff-fdbb1f97f88c92ea26b933c047486a61efcf71cc9cd1995f77d09fd3c7578d7aR39 ```C++ EXPECT_EQ( "0.0215434648799772", getJsonObject(R"({"dScore":0.0215434648799772})", "$.dScore")); --------------------------------------------------------------- [zk] dv:0.0215435 numberResult:0.0215435 Expected equality of these values: "0.0215434648799772" Which is: 0x53d043d getJsonObject(R"({"dScore":0.0215434648799772})", "$.dScore") Which is: ("0.0215435") ``` Hi @PHILO-HE , reviewing the commit history, I believe you have more expertise in this section. Would you be willing to assist in resolving this issue, please? -- 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]
