Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,12 @@ All notable changes to this project will be documented in this file. It uses the

### 🚀 Distribution

* Added the [re2 extension] to the OCI images.
* Added the [ca-certificates package] and the [re2 extension] to the OCI
(née Docker) images.

[v0.2.1]: https://github.com/ClickHouse/pg_clickhouse/compare/v0.2.0...v0.2.1
[ca-certificates package]: https://packages.debian.org/source/trixie/ca-certificates
"Debian Packages: Common CA certificates"
[re2 extension]: https://github.com/ClickHouse/pg_re2
"pg_re2: ClickHouse-compatible regex functions using RE2"
[#204]: https://github.com/ClickHouse/pg_clickhouse/pull/204
Expand Down Expand Up @@ -60,7 +63,7 @@ ALTER EXTENSION pg_clickhouse UPDATE TO '0.2';
* `CURRENT_DATE` -> `toDate(now(TZ))`
* `CURRENT_TIMESTAMP` and `LOCALTIMESTAMP` => `now64(9, TZ)`
* `CURRENT_TIMESTAMP(n)` and `LOCALTIMESTAMP(n)` => `now64(n, TZ)`
* `clock_timestamp()`, `statement_timestamp()` &
* `clock_timestamp()`, `statement_timestamp()`, &
`transaction_timestamp()` => `nowInBlock64(n, TZ)`
* Added pushdown for the `CURRENT_TIME` and `LOCALTIME` SQL Value Functions
to `toTime64(now64(6, TZ), 6)`, supported by ClickHouse 25.8+.
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ RUN cd /tmp && pgxn download re2 && unzip re2-*.zip && rm re2-*.zip && cd re2-*
FROM postgres:$PG_MAJOR-trixie

# Install dependencies
RUN apt-get update && apt-get install -y --no-install-recommends libcurl4t64 uuid libre2-11 \
RUN apt-get update && apt-get install -y --no-install-recommends libcurl4t64 uuid libre2-11 ca-certificates \
&& apt-get clean \
&& rm -rf /var/cache/apt/* /var/lib/apt/lists/*

Expand Down
Loading
Loading