Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: add pg_mooncake to extensions list #2399

Merged
merged 6 commits into from
Oct 30, 2024
Merged
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
2 changes: 2 additions & 0 deletions content/docs/extensions/extensions-intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ Explore supported Postgres extensions by category. Also see:

<DetailIconCards>

<a href="https://github.com/Mooncake-Labs/pg_mooncake" description="An experimental Postgres extension that adds native columnstore tables with DuckDB execution" icon="a-chart">pg_mooncake</a>

<a href="https://github.com/citusdata/postgresql-hll" description="Implements a HyperLogLog data structure as a native data type for efficient and tunable distinct value counting" icon="a-chart">hll</a>

<a href="/docs/extensions/timescaledb" description="Enables Postgres as a time-series database for efficient storage and retrieval of time-series data" icon="a-chart">timescaledb</a>
Expand Down
1 change: 1 addition & 0 deletions content/docs/extensions/pg-extensions.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ Postgres 17, released in September 2024, currently lacks support for several ext
| [pg_jsonschema](https://github.com/supabase/pg_jsonschema) | 0.3.1 | 0.3.1 | 0.3.1 | - | |
| [pg_partman](https://github.com/pgpartman/pg_partman) | 5.1.0 | 5.1.0 | 5.1.0 | 5.1.0 | |
| [pg_prewarm](/docs/extensions/pg_prewarm) | 1.2 | 1.2 | 1.2 | 1.2 | |
| [pg_mooncake](https://github.com/Mooncake-Labs/pg_mooncake) | - | 0.0.1 | 0.0.1 | 0.0.1 | This extension is **experimental**. Using a separate, dedicated Neon project is recommended. Run `SET neon.allow_unstable_extensions='true'` before installing. |
| [pg_roaringbitmap](https://github.com/ChenHuajun/pg_roaringbitmap) | 0.5 | 0.5 | 0.5 | 0.5 | Install with `CREATE EXTENSION roaringbitmap;` |
| [pg_stat_statements](/docs/extensions/pg_stat_statements) | 1.9 | 1.10 | 1.10 | 1.11 | |
| [pg_tiktoken](/docs/extensions/pg_tiktoken) | 0.0.1 | 0.0.1 | 0.0.1 | - | The [neon_superuser](/docs/manage/roles#the-neonsuperuser-role) role has `EXECUTE` privilege on the `pg_stat_statements_reset()` function. |
Expand Down
Loading