Giter Site home page Giter Site logo

support quantilesDD about dbeaver HOT 7 OPEN

tuyula avatar tuyula commented on May 31, 2024
support quantilesDD

from dbeaver.

Comments (7)

E1izabeth avatar E1izabeth commented on May 31, 2024 1

Thank you for details.

from dbeaver.

E1izabeth avatar E1izabeth commented on May 31, 2024

Please provide driver and server version. You can get this information by clicking Test connection... button in the Connection configuration dialog.

from dbeaver.

E1izabeth avatar E1izabeth commented on May 31, 2024

Also please provide example of query to reproduce this issue.

from dbeaver.

E1izabeth avatar E1izabeth commented on May 31, 2024

Besides that, it's not clear why do you created this feature request in DBeaver, but not in Clickhouse driver repository. Could you explain?

from dbeaver.

tuyula avatar tuyula commented on May 31, 2024

first i have table which ddl is

CREATE TABLE signoz_metrics.exp_hist
(

    `env` LowCardinality(String) DEFAULT 'default',
    `temporality` LowCardinality(String) DEFAULT 'Unspecified',
    `metric_name` LowCardinality(String),
    `fingerprint` UInt64 CODEC(Delta(8), ZSTD(1)),
    `unix_milli` Int64 CODEC(DoubleDelta, ZSTD(1)),
    `count` UInt64 CODEC(ZSTD(1)),
    `sum` Float64 CODEC(Gorilla, ZSTD(1)),
    `min` Float64 CODEC(Gorilla, ZSTD(1)),
    `max` Float64 CODEC(Gorilla, ZSTD(1)),
    `sketch` AggregateFunction(quantilesDD(0.01, 0.5, 0.75, 0.9, 0.95, 0.99), UInt64) CODEC(ZSTD(1))
)
ENGINE = MergeTree
PARTITION BY toDate(unix_milli / 1000)
ORDER BY (env, temporality, metric_name, fingerprint, unix_milli)
TTL toDateTime(unix_milli / 1000) + toIntervalSecond(2592000)
SETTINGS ttl_only_drop_parts = 1,
    index_granularity = 8192; 

from dbeaver.

tuyula avatar tuyula commented on May 31, 2024

then i click the table by dbwaver
image
and my driver is
image

from dbeaver.

E1izabeth avatar E1izabeth commented on May 31, 2024

I reproduced the issue. It works fine with just quantiles instead of quantilesDD. I don't think it's a DBeaver issue.

from dbeaver.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.