Dear MariaDB Developer Community,
I hope you are doing well.
I am Harshit Vijay Kumar, a final-year undergraduate student in Computer Science. I have been researching MDEV-36107 for GSoC 2025 and, during my exploration of operator operations in MariaDB, I came across some behaviors that caught my attention. To further investigate, I compared these behaviors with MySQL to understand their differences.
Observations:(1) Handling Large Number Multiplications Using Exponents
Currently, multiplying two large integers results in an overflow, returning 0
instead of using an exponent-based representation.
0
3.2451855365842673e+32
324518553658426733978210646499548233026655740664701555572736.0
(2) Rounding Floating-Point Outputs
MariaDB currently returns full precision in floating-point calculations, which can lead to unnecessary precision in practical use cases.
2.07754934752054456636693475540234567891
2.077549347520544
1.00000000000000
==
Equality OperatorCurrently, MariaDB allows the assignment operator (=
) for comparisons. However, since =
is primarily used for assignments, this dual-purpose behavior can be confusing.
Proposal: Introduce a dedicated ==
equality operator for clear and intuitive comparisons across INT, FLOAT, BOOL, and CHAR types.
Expected behavior:
If values match → return 1
If values don’t match → return 0
To implement these improvements, I plan to add test cases in mysql-test
covering all edge cases for these operators. I will follow the approach used in the following implementations:
I would really appreciate your insights on these ideas. If any of these behaviors have intentional design choices, I would love to understand the rationale behind them.
Looking forward to your feedback!
Best Regards,
Harshit Vijay Kumar