You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The CQL Decimal type supports "decimal values in the range (-10^28 + 1)/10^8 to (10^28-1)/10^-8 with a step size of 10^-8." CQL Execution supports CQL Decimal using JavaScript Number. This implementation has a few limitations regarding the CQL specification:
Precision is lost at the upper and lower ends of the required range of numbers
Initial precision is not maintained in all cases (e.g., there is no discernible difference between 1, 1.0, and 1.00)
The CQL Decimal type supports "decimal values in the range (-10^28 + 1)/10^8 to (10^28-1)/10^-8 with a step size of 10^-8." CQL Execution supports CQL Decimal using JavaScript Number. This implementation has a few limitations regarding the CQL specification:
The approach for supporting CQL Decimal should be the same (or similar) as for supporting CQL Long (#207).
The text was updated successfully, but these errors were encountered: