Skip to content
#

olap

Here are 163 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
databend
BohuTANG
BohuTANG commented Jun 19, 2022

Summary

./target/debug/databend-query 

... ... 
2022-06-19T03:31:37.041051Z  INFO databend_query: Listening for ClickHouse compatibility native protocol: 127.0.0.1:9000, Usage: clickhouse-client --host 127.0.0.1 --port 9000
2022-06-19T03:31:37.042913Z  INFO databend_query: Listening for ClickHouse compatibility http protocol: 127.0.0.1:8124, Usage:  echo 'create table test(foo str
C-improvement good first issue
decster
decster commented Jun 17, 2022

Enhancement

Currently, delta_writer_commit span runs in tablet_writer_add_chunk rpc handler, which is in bthread environment, and aync_delta_writer is used, so thread may get switched, as a result delta_writer_commit didn't catch load_channel span automatically, so we need to set delta_writer_commit span's parent explicitly.

type/enhancement good first issue
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:
alamb
alamb commented Jun 15, 2022

Describe the bug
@Ted-Jiang found and fixed a bug (apache/arrow-datafusion#2729) related to the fact an optimizer function rewrite_expression did not handle Expr::InList correctly

During review @andygrove and I noticed there were likely some other Expr variants that suffered from the same issue: apache/arrow-datafusion#2729 (comment)

bug good first issue datafusion optimizer
dengn
dengn commented May 3, 2022

Is there an existing issue for the same feature request?

  • I have checked the existing issues.

Is your feature request related to a problem?

Several showcase SQL requires the support of this function:


select DATE_FORMAT(b.measurement_time,'%Y-%m-%d') 

select DATE_FORMAT(FROM_UNIXTIME(tm.create_time), %Y%m%d)

Describe the feature you'd like

good first issue kind/feature MatrixCamp Challenging

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