-
Updated
Feb 11, 2022 - C++
olap
Here are 178 public repositories matching this topic...
add stop instructions
Proposed changes
Issue Number: close #xxx
Problem Summary:
Describe the overview of changes.
Checklist(Required)
- Does it affect the original behavior: (Yes/No/I Don't know)
- Has unit tests been added: (Yes/No/No Need)
- Has document been added or modified: (Yes/No/No Need)
- Does it need to update dependencies: (Yes/No)
- Are there any ch
Use case:
Add the ability to search for an element in an array and retrieve back the array index.
As per the PostgreSQL documentation:
array_position ( anycompatiblearray, anycompatible [, integer ] ) → integer
Returns the subscript of the first occurrence of the second argument in the array, or NULL if it's not present
-
Updated
Feb 11, 2022 - Rust
-
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:
we should delete following files:
be/src/util/perf_counters.h
be/src/util/perf_counters.cpp
Welcome newcomers to solve this issue
Describe the bug
If the column names in a CSV file are uppercase, then typing lowercase column names in SQL queries will result in an Error: Invalid identifier for schema.
To Reproduce
Here is a simple example program that runs a query on 2 tables.
#[tokio::main]
async fn main() -> datafusion::error::Result<()> {
let mut ctx = ExecutionContext::new();
ctx.regis-
Updated
Aug 6, 2021 - Go
-
Updated
Oct 13, 2021 - Python
-
Updated
Dec 2, 2016 - Python
-
Updated
Oct 6, 2021
In risinglightdb/risinglight@38482e0, we added insert / create column name by simply setting the data chunk header. In the future, the column name should always be derived in planner (optimizer).
-
Updated
Dec 9, 2021 - Java
-
Updated
Feb 2, 2019 - JavaScript
AOE v0.1.0 limitations:
- AOE has a global hard limit of ? table count.
- AOE has a hard limit of ? columns per table.
-
Updated
Mar 24, 2021 - Go
-
Updated
Dec 11, 2021 - Rust
-
Updated
Oct 16, 2021 - Go
-
Updated
Feb 10, 2022 - Rust
-
Updated
Feb 5, 2022 - Python
-
Updated
Feb 11, 2022 - Kotlin
-
Updated
Jan 5, 2022
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],