Skip to content
#

olap

Here are 163 public repositories matching this topic...

duckdb
Ethanzjp
Ethanzjp commented Mar 21, 2021

Feature Request

Summary

Is your feature request related to a problem? Please describe:

In sqlite3,

sqlite> select sqlite_version();
3.31.1

I test the duckdb,

#include <duckdb.hpp>
int
main(int argc, char** argv){
    duckdb::DuckDB db(nullptr);
    duckdb::Connection con(db);
    auto result = con.Query("SELECT duck_version();");
    result->Print(
proddata
proddata commented Nov 17, 2021

Use case:
Selecting a subset of array elements of an existing array inside the database without the need to unnest the array first or use a user-defined function.

CREATE TABLE t1 (id INTEGER, tags ARRAY(TEXT));
INSERT INTO t1 (id, tags) VALUES (1, ['database','search engine','document store']);
SELECT array_slice(tags,2,3) FROM t1;
--> ['search engine','document s
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:

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