-
Updated
Mar 28, 2022 - C++
olap
Here are 183 public repositories matching this topic...
Proposed changes
Doris's Routine Load realizes the import of data from Kafka to Doris, and make a feature of real-time synchronization of data from Pulsar to Doris based on Pulsar IO.
-
The custom abstract class DorisAbstractSink implements the interface org.apache.pulsar.io.core.Sink.
-
The DorisGenericRecordSink class inherits the abstract class DorisAbstractSink, and the speci
-
Updated
Mar 28, 2022 - Rust
Use case:
Concatenate TEXT or to TEXT castable type values using a given separator, for example concatenate address parts by comma.
SELECT concat_ws(',', '535 Mission St.', '14th floor', 'San Francisco', 'CA', '94105') AS address;
--> 535 Mission St., 14th floor, San Francisco, CA 94105Feature description:
Add support for the `concat_ws ( sep text, val1 "any" [
-
Updated
Apr 30, 2021 - JavaScript
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:
- for now, always install
omniscidb-cpuinside a conda environment (also it is a good practice), eg:
Make WritableFile a derived class of io::OutputStream can remove some duplicate code and make IO system more clear.
TPC-DS has many queries with IN predicates where all elements are constants. It's a low-hanging fruit if we could implement an InSet function for this all constants value case.
While implementing this, we could either use a hashtable or a chain of if-elif-else, depending on the length and the type of the constants array.
Q8:
WHERE substr(ca_zip, 1, 5) IN (
'2412-
Updated
Aug 6, 2021 - Go
-
Updated
Oct 13, 2021 - Python
-
Updated
Dec 2, 2016 - Python
-
Updated
Oct 6, 2021
Currently, users will need to manually call pin and unpin. If there are futures cancelled or somehow, it is possible that we fail to unpin by ourselves.
We should implement a struct called Version, and implement Drop for it. pin will return a
Search before asking
- I had searched in the issues and found no similar feature requirement.
Description
Add internationalization configuration of menu. The document is located in dlink-web/src/locales//menu.ts.
增加菜单的国际化配置,文件位于 dlink-web/src/locales//menu.ts。
Use case
No response
Related issues
_No respons
Is there an existing issue for the same feature request?
- I have checked the existing issues.
Is your feature request related to a problem?
Describe the feature you'd like
- Similar to MySQL 8.0 in syntax.
- Function syntax
Returns the population standa
-
Updated
Dec 9, 2021 - Java
-
Updated
Feb 2, 2019 - JavaScript
-
Updated
Mar 24, 2021 - Go
-
Updated
Dec 11, 2021 - Rust
-
Updated
Oct 16, 2021 - Go
-
Updated
Feb 26, 2022 - Rust
-
Updated
Feb 18, 2022 - Python
-
Updated
Mar 17, 2022 - Kotlin
Improve this page
Add a description, image, and links to the olap topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the olap topic, visit your repo's landing page and select "manage topics."


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],