-
Notifications
You must be signed in to change notification settings - Fork 5.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
expression: round function for int should use round half up rule #27128
Conversation
[REVIEW NOTIFICATION] This pull request has not been approved. To complete the pull request process, please ask the reviewers in the list to review by filling The full list of commands accepted by this bot can be found here. Reviewer can indicate their review by submitting an approval review. |
/run-all-tests |
sorry test fails, my change should have no impact on other codes. need time dig.. |
types/helper.go
Outdated
// e.g, 1.5 -> 2, -1.5 -> -2. | ||
func RoundFloat(f float64) float64 { | ||
return math.RoundToEven(f) | ||
} | ||
|
||
// Round rounds the argument f to dec decimal places. | ||
// Round rounds the argument f to dec decimal places use “round to nearest even” rule as default. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the quotation mark is Chinese quoation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
// Round rounds the argument f to dec decimal places use “round to nearest even” rule as default. | |
// Round rounds the argument f to dec decimal places use "round to nearest even" rule as default. |
// dec defaults to 0 if not specified. dec can be negative | ||
// to cause dec digits left of the decimal point of the | ||
// value f to become zero. | ||
func Round(f float64, dec int) float64 { | ||
func Round(f float64, dec int, r ...RoundRule) float64 { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It looks too hacky to me, perhaps we can just add a rule
parameter to the signature of this function and change all the places where it is used.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe we should add a function func RoundInt64(f int64, dec int) int64
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes, i came up with 2 change way:
- current one
- prons: less change, adhere to golang which is only float64 version of round also; and since it is
float64
, it make sense useRoundNearestEven
rule as default - crons: a little performance affact
- prons: less change, adhere to golang which is only float64 version of round also; and since it is
- addtional methons like
RoundInt64
- prons: better performance, straightforward, maybe adhere to mysql implements better
- crons: more change
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
each have its own advantage, if you agree later one is better, i can update
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it's better that integer round does not reuse floating-point round, because Float64
can't represent all integer values and will introduce inaccuracy in computation.
I can offer an example that shows why floating-point round isn't suitable:
In TiDB:
mysql> select round(123456789, -5);
+----------------------+
| round(123456789, -5) |
+----------------------+
| 123499999 |
+----------------------+
1 row in set (0.001 sec)
In MySQL 8.0:
mysql> select round(123456789, -5);
+----------------------+
| round(123456789, -5) |
+----------------------+
| 123500000 |
+----------------------+
1 row in set (0.006 sec)
TiDB's output is expected for floating-point round even if you use "round to even" rule: https://coliru.stacked-crooked.com/a/a3dbb35ff61b3944.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
By the way, MySQL 8 will report an error if round result overflows:
mysql> select round(18446744073709551615, -19);
ERROR 1690 (22003): BIGINT UNSIGNED value is out of range in 'round(18446744073709551615,-(19))'
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thank you for suggestion, i will add a round function for integer, and maybe adjust some old names to make them consistent
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TiDB's output is expected for floating-point round even if you use "round to even" rule: https://coliru.stacked-crooked.com/a/a3dbb35ff61b3944.
f := 123499999.99999999
i := int64(f)
i2 := math.Round(f)
fmt.Printf("i: %+v, i2: %+v", i, i2)
// OutPut: i: 123499999, i2: 1.235e+08
for tidb round(123456789, -5)
get 123499999
is caused by convert int64(f)
, can be fixed by use convert math.Round(f)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can be fixed by use convert
math.Round(f)
I can offer another example:
TiDB:
mysql> select round(2146213728964879326, -15);
+---------------------------------+
| round(2146213728964879326, -15) |
+---------------------------------+
| 2145999999999999744 |
+---------------------------------+
1 row in set (0.000 sec)
MySQL 8.0:
mysql> select round(2146213728964879326, -15);
+---------------------------------+
| round(2146213728964879326, -15) |
+---------------------------------+
| 2146000000000000000 |
+---------------------------------+
1 row in set (0.001 sec)
I guess this one cannot be simply fixed by math.Round
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes, you are right, round is not as easy as thought, see the link in my comments.
I will add your example as test case and hopefully get a perfect solution.
e11596e
to
b899bc7
Compare
seems correct rounding is not easy, https://www.cockroachlabs.com/blog/rounding-implementations-in-go/ |
848be94
to
cf5e4fa
Compare
this pr is deprecated, see #27403 which try resolve this issue use the second way |
@feitian124 shall we close this PR then? |
What problem does this PR solve?
Issue Number: close #26993
Problem Summary:
Result of function
round(50, -2)
is100
in mysql, but0
in tidb.#21324 expression: change the round rule for approximate value to round to nearest even,
but
50
is exact-value, should uses the “round half up” ruleWhat is changed and how it works?
What's Changed:
change
func Round(f float64, dec int)
tofunc Round(f float64, dec int, r ...RoundRule)
to accept ar ...RoundRule
parameter,which use
RoundNearestEven
as default if not specified.Check List
Tests
Release note