v.23.8New Feature
Add tupleConcat function, closes #52759, PR #53239
Add tupleConcat function. Closes #52759. #53239 (Nikolay Degterinsky).Why it matters
This feature introduces thetupleConcat function to enable users to concatenate multiple tuples into a single tuple. It addresses the need for seamless tuple merging, simplifying operations that require combining tuple elements and enhancing query expressiveness.How to use it
Use thetupleConcat function by passing the tuples you want to concatenate as arguments. For example:SELECT tupleConcat(tuple(1, 2), tuple(3, 4))This returns a single tuple with elements from both tuples.