[MDEV-16873] Compare two FLOAT expressions as floats rather than doubles Created: 2018-08-01 Updated: 2023-11-28 |
|
| Status: | Open |
| Project: | MariaDB Server |
| Component/s: | Data types |
| Fix Version/s: | 10.11 |
| Type: | Task | Priority: | Major |
| Reporter: | Alexander Barkov | Assignee: | Unassigned |
| Resolution: | Unresolved | Votes: | 0 |
| Labels: | None | ||
| Issue Links: |
|
||||||||||||||||
| Description |
|
This script returns empty set:
This happens because:
So the two sides of the comparison represent results of different type conversion sequences:
Note, all three type conversions involved in this script:
are lossy. We'll fix the float type handler to compare two float values as floats rather than as doubles. Note, comparison between FLOAT and non-FLOAT will still be performed as DOUBLE. After this change, it will be possible to rewrite the above script as follows:
so both sides of the comparison will be results of DECIMAL->FLOAT conversion, without any double representation on the way. The script will return the inserted value. |
| Comments |
| Comment by Alexander Barkov [ 2018-08-01 ] |
|
This task is waiting for |
| Comment by Sergei Golubchik [ 2018-08-10 ] |
|
This is questionable. The script does not return the inserted value, because the inserted values was truncated during insertion. Such a truncation at INSERT time can happen for many types, not only for FLOAT. And always when a truncation happens — for any type — the value won't later be found in the table, this is natural and expected. There's one important difference, though. Normally one gets a warning when INSERT truncates a value. This immediately sets the expectations correctly — the value was modified during insertion, it will not be found in the table. But for FLOAT there is no warning, so the expectation is that the value should be found. FLOAT type is quite unique in this regard. |
| Comment by Alexander Barkov [ 2021-05-11 ] |
|
FLOAT->DOUBLE->FLOAT conversion is actually not lossy. serg is right. The only reason for SELECT to return empty set is that the value gets truncated during INSERT. So the only thing we can do here is to add the warning on INSERT. |