cockroachdb / cockroach

CockroachDB — the cloud native, distributed SQL database designed for high availability, effortless scale, and control over data placement.
https://www.cockroachlabs.com
Other
30.17k stars 3.82k forks source link

sql: support multi-dimensional arrays #32552

Open knz opened 6 years ago

knz commented 6 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 6 months 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..