Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Add example with NULL value
- Loading branch information
Showing
with
5 additions
and
4 deletions.
-
+3
−2
resources/function_help/json/max
-
+2
−2
resources/function_help/json/min
|
@@ -7,6 +7,7 @@ |
|
|
{"arg":"value1", "syntaxOnly": true}, |
|
|
{"arg":"value2", "syntaxOnly": true}, |
|
|
{"arg":"value", "descOnly": true, "description":"a number"}], |
|
|
"examples": [ { "expression":"max(2,10.2,5.5)", "returns":"10.2"} |
|
|
] |
|
|
"examples": [ |
|
|
{ "expression":"max(2,10.2,5.5)", "returns":"10.2"}, |
|
|
{ "expression":"max(20.5,NULL,6.2)", "returns":"20.5"}] |
|
|
} |
|
@@ -6,6 +6,6 @@ |
|
|
"arguments": [ {"arg":"value1", "syntaxOnly": true}, |
|
|
{"arg":"value2", "syntaxOnly": true}, |
|
|
{"arg":"value", "descOnly": true, "description":"a number"}], |
|
|
"examples": [ { "expression":"min(20.5,10,6.2)", "returns":"6.2"} |
|
|
] |
|
|
"examples": [ { "expression":"min(20.5,10,6.2)", "returns":"6.2"}, |
|
|
{ "expression":"min(2,-10.3,NULL)", "returns":"-10.3"}] |
|
|
} |