From 66784ee562d9fc4fb3ae54869df8513a0d169f7d Mon Sep 17 00:00:00 2001 From: vama-tg <156010229+vama-tg@users.noreply.github.com> Date: Fri, 12 Dec 2025 17:36:23 -0800 Subject: [PATCH] Update function name for TG v4.1 The name of this version for TG v4.1 contains an additional term "_string". --- .../pages/functions/token_where/gsql_is_not_empty.adoc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/modules/ddl-and-loading/pages/functions/token_where/gsql_is_not_empty.adoc b/modules/ddl-and-loading/pages/functions/token_where/gsql_is_not_empty.adoc index 6baf70bf..cb6b4548 100644 --- a/modules/ddl-and-loading/pages/functions/token_where/gsql_is_not_empty.adoc +++ b/modules/ddl-and-loading/pages/functions/token_where/gsql_is_not_empty.adoc @@ -1,4 +1,4 @@ -= gsql_is_not_empty() += gsql_is_not_empty_string() Returns true if a string is empty after removing all white space. Returns false otherwise. @@ -6,7 +6,7 @@ This function does not alter the input the token. == Syntax -`gsql_is_not_empty( token )` +`gsql_is_not_empty_string( token )` == Return value @@ -16,6 +16,6 @@ True if the string is empty after removing all white space from the string. == Example ---- -gsql_is_not_empty("h e ll o") - true -gsql_is_not_empty(" ") -> false ----- \ No newline at end of file +gsql_is_not_empty_string("h e ll o") - true +gsql_is_not_empty_string(" ") -> false +----