Sfoglia il codice sorgente

docs: add changelog entry

Kjell Winblad 2 anni fa
parent
commit
2fcd92dcd9
1 ha cambiato i file con 9 aggiunte e 0 eliminazioni
  1. 9 0
      changes/ce/fix-12657.en.md

+ 9 - 0
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/#"
+```