clickhousedb_fdw icon indicating copy to clipboard operation
clickhousedb_fdw copied to clipboard

PostgreSQL's Foreign Data Wrapper For ClickHouse

Results 24 clickhousedb_fdw issues
Sort by recently updated
recently updated
newest added

Hello, are there any plans to add support for Postgresql 14 ?

I can access `Array` types by calling them `varchar` and then parsing them with `('{' || left(right(field, -1), -1) || '}')::int[]`, perhaps in a local view. But is there some...

Not too sure what the issue is, but if i do `select * from table` it produces rows just fine, however the moment I put an `order by col` on...

Currently, we are using clickhousedb_fdw in PG 11 on our production server. We are planning to upgrade PG version to 12 or 13. But we found that clickhousedb_fdw does not...

Do you plan to support Postgresql version 12 ?.

In some cases after grouping by certain column(s) ClickHouse still might return a lot of rows, so performing LIMIT on clickhouse side will be beneficial. EXPLAIN VERBOSE select city from...

I've noticed that some queries shows different results in postgres and clickhouse when, if I'm not wrong, they should be the same. A simple example: ### Postgres ```sql SELECT COUNT(DISTINCT...

Can you make a release version? The release version can help us to get bug.

The following two queries yield different results while I understand they should be equivalent. The second one yields the correct result. ```SQL SELECT COUNT(1) FROM (SELECT DISTINCT report_id FROM clickhouse_reportusages)...