xtdb / xtdb

An immutable database for application development and time-travel data compliance, with SQL and XTQL. Developed by @juxt

Home Page:https://xtdb.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

List concatenation

FiV0 opened this issue · comments

Currently there is no way to concat lists or a list and an element in the EE.
Postgres allows the following three (although on arrays in their case):

SELECT [1, 2, 3] || [4, 5]
SELECT [1, 2, 3] || 4
SELECT 1 || [2, 3, 4]