Skip to content
#

olap

Here are 143 public repositories matching this topic...

proddata
proddata commented Apr 23, 2021

Use case:
Right now one can only use date_trunc() to easily define time buckets. date_trunc() only supports predefine time intervals like 1 minute, 1 hour, etc. . In time-series use cases it is often necessary to define different time bucket sizes like e.g. '5 minutes' or '20 minutes'

a workaround for this is the - error prone - integer division on the timestamp e.g.

S
duckdb
EthanDBer
EthanDBer 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(
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