abhishekagarwal87 commented on a change in pull request #10635:
URL: https://github.com/apache/druid/pull/10635#discussion_r660433584



##########
File path: docs/misc/math-expr.md
##########
@@ -258,3 +258,12 @@ supported features:
 * math functions: `abs`, `acos`, `asin`, `atan`, `cbrt`, `ceil`, `cos`, 
`cosh`, `cot`, `exp`, `expm1`, `floor`, `getExponent`, `log`, `log10`, `log1p`, 
`nextUp`, `rint`, `signum`, `sin`, `sinh`, `sqrt`, `tan`, `tanh`, `toDegrees`, 
`toRadians`, `ulp`, `atan2`, `copySign`, `div`, `hypot`, `max`, `min`, 
`nextAfter`,  `pow`, `remainder`, `scalb` are supported for numeric types
 * time functions: `timestamp_floor` (with constant granularity argument) is 
supported for numeric types
 * other: `parse_long` is supported for numeric and string types
+
+
+## Other functions
+
+| function | description |
+| --- | --- |
+| human_readable_binary_byte_format(value[, precision]) | Format a number in 
human-readable [IEC](https://en.wikipedia.org/wiki/Binary_prefix) format. 
`precision` must be in the range of [0,3] (default: 2). For example:<li> 
human_readable_binary_byte_format(1048576) returns `1.00 
MiB`</li><li>human_readable_binary_byte_format(1048576, 1) returns `1.000 
MiB`</li> |

Review comment:
       ```suggestion
   | human_readable_binary_byte_format(value[, precision]) | Format a number in 
human-readable [IEC](https://en.wikipedia.org/wiki/Binary_prefix) format. 
`precision` must be in the range of [0,3] (default: 2). For example:<li> 
human_readable_binary_byte_format(1048576) returns `1.00 
MiB`</li><li>human_readable_binary_byte_format(1048576, 1) returns `1.0 
MiB`</li> |
   ```




-- 
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