From 69ddd51af1382610550248cd9d0ca56aeb6c9763 Mon Sep 17 00:00:00 2001 From: Kjell Winblad Date: Fri, 8 Mar 2024 12:35:39 +0100 Subject: [PATCH] docs: add change log entry --- changes/ce/feat-12671.en.md | 1 + 1 file changed, 1 insertion(+) create mode 100644 changes/ce/feat-12671.en.md diff --git a/changes/ce/feat-12671.en.md b/changes/ce/feat-12671.en.md new file mode 100644 index 000000000..d49f11269 --- /dev/null +++ b/changes/ce/feat-12671.en.md @@ -0,0 +1 @@ +An `unescape` function has been added to the rule engine SQL language to handle expansion of escape sequences in strings. This addition has been done because string literals in the SQL language don't support any escape codes (e.g., `\n` and `\t`). This enhancement allows for more flexible string manipulation within SQL expressions.