From a3383689a63a725c1411611fef8983222a568360 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89tienne=20Trimaille?= Date: Tue, 19 Nov 2024 15:47:09 +0100 Subject: [PATCH] Add an example with a string to the to_bool expression --- resources/function_help/json/to_bool | 3 +++ 1 file changed, 3 insertions(+) diff --git a/resources/function_help/json/to_bool b/resources/function_help/json/to_bool index a39e2109f2a..c9950a94e73 100644 --- a/resources/function_help/json/to_bool +++ b/resources/function_help/json/to_bool @@ -13,6 +13,9 @@ },{ "expression": "to_bool('123')", "returns": "true" + },{ + "expression": "to_bool('false')", + "returns": "true" },{ "expression": "to_bool(0)", "returns": "false"