The Wayback Machine - https://web.archive.org/web/20220324201559/https://github.com/topics/embedded-database
Skip to content
#

embedded-database

Here are 130 public repositories matching this topic...

duckdb
pgabry
pgabry commented Jan 13, 2022

In Big Query there is a function array_concat_agg that aggregates array fields by concatenating the arrays. In Snowflake there is a flatten function that can unnest nested arrays into single array. I am looking for similar functionality in duckdb.

select flatten([[1, 2], [2, 3], [4, 5]] would return [1, 2, 2, 3, 4, 5]
I would also need a distinct option:
`select flatten(DISTINCT [[1, 2],

good first issue feature
skyzh
skyzh commented Mar 22, 2022

After risinglightdb/risinglight#464 refactor has been completed, we can remove some prior optimizations in storage crate!

https://github.com/risinglightdb/risinglight/blob/5708a8e2f1d72dd5e7db3c3fb5b93f5c59c348e6/src/storage/chunk.rs#L18-L27

Now ArrayImpl has an Arc inside, so we can safely change the Arc<ArrayImpl> to ArrayImpl in storage chunk with cheap c

enhancement good first issue

Improve this page

Add a description, image, and links to the embedded-database topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the embedded-database topic, visit your repo's landing page and select "manage topics."

Learn more