-
Updated
Nov 20, 2021 - C++
olap
Here are 163 public repositories matching this topic...
Use case:
Adding an array element to an existing array inside the database without the need to select the array first and update the full array value afterwards.
CREATE TABLE t1 (id INTEGER, tags ARRAY(TEXT));
INSERT INTO t1 (id, tags) VALUES (1, ['database']);
UPDATE t1 SET
tags = array_append(excluded.tags, 'search engine');
WHERE id = 1;
**Feature descr
-
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:
-
Updated
Nov 20, 2021 - Rust
增加fe,broker版本信息
-
Updated
Aug 6, 2021 - Go
-
Updated
Oct 13, 2021 - Python
Is your feature request related to a problem or challenge? Please describe what you are trying to do.
I just tried out the official Ballista 0.6.0 release by following the instructions shown here and here.
Overall, this was really great and this is the first Ballista release that is easy to try out via `cargo
-
Updated
Dec 2, 2016 - Python
-
Updated
Oct 6, 2021
-
Updated
Apr 26, 2021 - Java
-
Updated
Feb 2, 2019 - JavaScript
-
Updated
Mar 24, 2021 - Go
AOE v0.1.0 limitations:
- AOE has a global hard limit of ? table count.
- AOE has a hard limit of ? columns per table.
-
Updated
Sep 23, 2021 - Rust
-
Updated
Oct 16, 2021 - Go
-
Updated
Nov 7, 2021 - Rust
-
Updated
Oct 1, 2021
-
Updated
Nov 6, 2021 - Kotlin
-
Updated
Jul 21, 2021 - Java
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."
Feature Request
Summary
Is your feature request related to a problem? Please describe:
In sqlite3,
I test the duckdb,