Skip to content

Commit

Permalink
Add example with NULL value
Browse files Browse the repository at this point in the history
  • Loading branch information
DelazJ committed Jan 3, 2018
1 parent 0c292a0 commit cdbb0df
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions resources/function_help/json/max
Expand Up @@ -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"}]
}
4 changes: 2 additions & 2 deletions resources/function_help/json/min
Expand Up @@ -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"}]
}

0 comments on commit cdbb0df

Please sign in to comment.