Skip to content
#

olap

Here are 188 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
xmnlab
xmnlab commented Mar 19, 2019

Hey everyone!

mapd-core-cpu is already available on conda-forge (https://anaconda.org/conda-forge/omniscidb-cpu)

now we should add some instructions on the documentation.

at this moment it is available for linux and osx.

some additional information about the configuration:

  1. for now, always install omniscidb-cpu inside a conda environment (also it is a good practice), eg:
jdye64
jdye64 commented Apr 22, 2022

A section in CONTRIBUTING.md for Code Formatting would be useful for new developers to understand patterns, standards, and also prevent unnecessary commits with linter errors.

Describe the solution you'd like
A short section in CONTRIBUTING.md explaining to new devs how to format their code from the cli and as part of pre-commit

enhancement good first issue
dhruvpat3l
dhruvpat3l commented Apr 17, 2022

What type of PR is this?

  • API-change
  • BUG
  • Improvement
  • Documentation
  • Feature
  • Test and CI
  • Code Refactoring

Which issue(s) this PR fixes:

issue #2095

What this PR does / why we need it:

Add cosh() built-in function

Special notes for your reviewer:

Not Available

**Additional documentation (e.g. design docs, usage do

Improve this page

Add a description, image, and links to the olap 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 olap topic, visit your repo's landing page and select "manage topics."

Learn more