Skip to main content
Managed Postgres includes a curated set of extensions to extend the functionality of your database. Below is the list of available extensions.

Installing extensions

To install an extension, connect to your database and run:
To see which extensions are currently installed:
To view all available extensions and their versions:

Available extensions

pg_clickhouse extension

The pg_clickhouse extension is pre-installed on every Managed Postgres instance. It allows you to query ClickHouse databases directly from PostgreSQL, enabling a unified query layer for both transactions and analytics. See the pg_clickhouse documentation for setup instructions and usage details.

pg_stat_ch extension

The pg_stat_ch extension powers query-level observability for your Managed Postgres instance. It captures per-query telemetry (timings, rows, buffers, WAL, errors) and ships it into the ClickHouse Cloud UI, where it surfaces as the slow-query, error, and workload views. No setup required.

pg_re2 extension

The pg_re2 extension adds ClickHouse-compatible regex functions to Managed Postgres, backed by Google’s RE2 engine. Useful when porting queries between the two or running hybrid workloads that need identical pattern-matching semantics on both sides.
Last modified on July 2, 2026