From 2fcd92dcd9703fd4ad3641ba37c2300d8bfd63c5 Mon Sep 17 00:00:00 2001 From: Kjell Winblad Date: Wed, 6 Mar 2024 15:52:42 +0100 Subject: [PATCH] docs: add changelog entry --- changes/ce/fix-12657.en.md | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 changes/ce/fix-12657.en.md diff --git a/changes/ce/fix-12657.en.md b/changes/ce/fix-12657.en.md new file mode 100644 index 000000000..eb3cbdd41 --- /dev/null +++ b/changes/ce/fix-12657.en.md @@ -0,0 +1,9 @@ +The rule engine SQL-based language previously did not allow putting any expressions as array elements in array literals (only constants and variable references where allowed). This has not been fixed so that one can use any expressions as array elements. + +The following is now permitted, for example: + +``` +select + [21 + 21, abs(-abs(-2)), [1 + 1], 4] as my_array +from "t/#" +```