From 8754d55a095fc8470a87d211fa110c192693f5e9 Mon Sep 17 00:00:00 2001 From: Matthias Kuhn Date: Tue, 8 Jan 2019 11:36:16 +0100 Subject: [PATCH] Fix JSON --- resources/function_help/json/nullif | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/function_help/json/nullif b/resources/function_help/json/nullif index bf50901401b..a557755fe1c 100644 --- a/resources/function_help/json/nullif +++ b/resources/function_help/json/nullif @@ -6,6 +6,6 @@ {"arg":"value2", "description": "The control value that will trigger the NULL substitution."}], "examples": [ { "expression":"nullif('(none)', '(none)')", "returns":"NULL"}, { "expression":"nullif('text', '(none)')", "returns":"'text'"}, - { "expression":"nullif(\"name\", ''), "returns":"NULL, if name is an empty string (or already NULL), the name in any other case."} ] + { "expression":"nullif(\"name\", '')", "returns":"NULL, if name is an empty string (or already NULL), the name in any other case."} ] }