The Wayback Machine - https://web.archive.org/web/20211123065749/https://github.com/topics/olap
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(
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:
Jimexist
Jimexist commented Nov 17, 2021

Is your feature request related to a problem or challenge? Please describe what you are trying to do.

now that we have #1085 we can have set_agg as well. we can follow [presto][2]'s convention

Describe the solution you'd like

to have an aggregate function to set aggregate a group

Describe alternatives you've considered

alternative is to have array_distinct as in [trino

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