edgedb
edgedb copied to clipboard
Slicing arrays of tuples doesn't work
select [(1,'foo'), (2,'bar'), (3,'baz')][1:];
gives
edgedb error: InternalServerError: return type record[] is not supported for SQL functions
We will need to essentially inline the array slicing code, at least for tuple types.