Copilot commented on code in PR #56561:
URL: https://github.com/apache/doris/pull/56561#discussion_r2386595832
##########
regression-test/suites/function_p0/test_math_function.groovy:
##########
@@ -49,6 +49,57 @@ suite("test_math_function") {
qt_select_atan""" select atan(cast('nan' as double)), atan(cast('inf' as
double)), atan(cast('-inf' as double)), atan(cast('0.0' as double)),
atan(cast('-0.0' as double)), atan(cast('1.0' as double)), atan(cast('-1.0' as
double)), atan(cast('1e308' as double)), atan(cast('-1e308' as double)) """
+ def mathFuncTestTable = "match_function_test_table";
Review Comment:
The table name contains a typo: 'match_function_test_table' should likely be
'math_function_test_table' to be consistent with the test suite name.
```suggestion
def mathFuncTestTable = "math_function_test_table";
```
--
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]