cockroachdb / cockroach

CockroachDB - the open source, cloud-native distributed SQL database.
https://www.cockroachlabs.com
Other
29.51k stars 3.7k forks source link

sql: support multi-dimensional arrays #32552

Open knz opened 5 years ago

knz commented 5 years ago

Forked from #2115.

Support multi-dimensional array types eg create table t(a int[][])

Note that this is made difficult by the lack of lexicographical encoding for arrays with more than 1 dimensions. This can only be implemented when the sql/kv mapping is extended to support other ordering than lexicographic.

Jira issue: CRDB-4733

ajwerner commented 1 year ago

Putting re-triaged issue in the backlog.

cpaczek commented 1 month ago

This may be something you still want to implement but was able to find a workaround to allow CRDB to work with Strapi

https://github.com/strapi/strapi/pull/20373

Currently aiming for Cockroach to be supported in Strapi for v5 stable release later this year..