Changes between Version 3 and Version 4 of Ticket #2386


Ignore:
Timestamp:
Jun 20, 2022, 6:59:38 AM (2 years ago)
Author:
Dimitar Misev
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #2386 – Description

    v3 v4  
    1 rasql should support `round(scalarExp/mddExp)` operator to round floating-point arguments. The implementation should be similar to sin/cos for example, and use [https://en.cppreference.com/w/cpp/numeric/math/round std::round] under the hood (1 and 3).
     1rasql should support `round(scalarExp/mddExp)` operator to round floating-point arguments. The implementation should be similar to sin/cos for example, and use [https://en.cppreference.com/w/cpp/numeric/math/round std::round] under the hood (1 and 3). On integer inputs it shouldn't do anything, i.e. return the input as is.