edgar2020 commented on code in PR #16826:
URL: https://github.com/apache/druid/pull/16826#discussion_r1704376019


##########
docs/querying/sql-scalar.md:
##########
@@ -56,9 +56,9 @@ to FLOAT. At runtime, Druid will widen 32-bit floats to 
64-bit for most expressi
 |`LOG10(expr)`|Logarithm (base 10).|
 |`POWER(expr, power)`|`expr` raised to the power of `power`.|
 |`SQRT(expr)`|Square root.|
-|`TRUNCATE(expr, [digits])`|Truncate `expr` to a specific number of decimal 
digits. If digits is negative, then this truncates that many places to the left 
of the decimal point. Digits defaults to zero if not specified.|
-|`TRUNC(expr, [digits])`|Alias for `TRUNCATE`.|
-|`ROUND(expr, [digits])`|`ROUND(x, y)` would return the value of the x rounded 
to the y decimal places. While x can be an integer or floating-point number, y 
must be an integer. The type of the return value is specified by that of x. y 
defaults to 0 if omitted. When y is negative, x is rounded on the left side of 
the y decimal points. If `expr` evaluates to either `NaN`, `expr` will be 
converted to 0. If `expr` is infinity, `expr` will be converted to the nearest 
finite double. |
+|`TRUNCATE(expr[, digits])`|Truncate `expr` to a specific number of decimal 
digits. If digits is negative, then this truncates that many places to the left 
of the decimal point. Digits defaults to zero if not specified.|
+|`TRUNC(expr[, digits])`|Alias for `TRUNCATE`.|
+|`ROUND(expr[, digits])`|`ROUND(x, y)` would return the value of the x rounded 
to the y decimal places. While x can be an integer or floating-point number, y 
must be an integer. The type of the return value is specified by that of x. y 
defaults to 0 if omitted. When y is negative, x is rounded on the left side of 
the y decimal points. If `expr` evaluates to either `NaN`, `expr` will be 
converted to 0. If `expr` is infinity, `expr` will be converted to the nearest 
finite double. |

Review Comment:
   Decided to remove ROUND(x,y) since no other function used that method.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@druid.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@druid.apache.org
For additional commands, e-mail: commits-h...@druid.apache.org

Reply via email to