From 34cad6e863f9879e1dd5f2827b50a3087670fe19 Mon Sep 17 00:00:00 2001 From: Matthew Wells Date: Thu, 22 Jun 2023 12:38:57 -0700 Subject: [PATCH] Updated documentation of round function return type (#1725) * fixed round documentation Signed-off-by: Matthew Wells --- docs/user/dql/functions.rst | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/user/dql/functions.rst b/docs/user/dql/functions.rst index 2a6e70a085..fa37dc7778 100644 --- a/docs/user/dql/functions.rst +++ b/docs/user/dql/functions.rst @@ -901,7 +901,10 @@ Usage: ROUND(x, d) rounds the argument x to d decimal places, d defaults to 0 if Argument 1 type: INTEGER/LONG/FLOAT/DOUBLE Argument 2 type (optional): INTEGER -Return type: LONG +Return type map: + +(INTEGER/LONG[, INTEGER]) -> LONG +(FLOAT/DOUBLE[, INTEGER]) -> DOUBLE Example::