documentdb_core
documentdb_core
documentdb : Core API surface for DocumentDB for PostgreSQL
Overview
| ID | Extension | Package | Version | Category | License | Language |
|---|---|---|---|---|---|---|
| 9010 | documentdb_core | documentdb | 0.107 | SIM | MIT | C |
| Attribute | Has Binary | Has Library | Need Load | Has DDL | Relocatable | Trusted |
|---|---|---|---|---|---|---|
--sLd-- | No | Yes | Yes | Yes | no | no |
| Relationships | |
|---|---|
| Need By | documentdb |
| See Also | mongo_fdw rum pg_jsonschema jsquery pg_cron postgis vector |
| Siblings | documentdb documentdb_distributed |
FerretDB Fork, work with FerretDB 2.7
Packages
| Type | Repo | Version | PG Major Compatibility | Package Pattern | Dependencies |
|---|---|---|---|---|---|
| EXT | PIGSTY | 0.107 | 18 17 16 15 14 13 | documentdb | - |
| RPM | PIGSTY | 0.107 | 18 17 16 15 14 13 | documentdb_$v* | postgresql$v-contrib, pg_cron_$v, pgvector_$v, rum_$v |
| DEB | PIGSTY | 0.107 | 18 17 16 15 14 13 | postgresql-$v-documentdb | postgresql-$v-cron, postgresql-$v-pgvector, postgresql-$v-rum |
| Linux / PG | PG18 | PG17 | PG16 | PG15 | PG14 | PG13 |
|---|---|---|---|---|---|---|
el8.x86_64 | MISS | PIGSTY 0.107 | PIGSTY 0.107 | PIGSTY 0.107 | MISS | MISS |
el8.aarch64 | MISS | PIGSTY 0.107 | PIGSTY 0.107 | PIGSTY 0.107 | MISS | MISS |
el9.x86_64 | MISS | PIGSTY 0.107 | PIGSTY 0.107 | PIGSTY 0.107 | MISS | MISS |
el9.aarch64 | MISS | PIGSTY 0.107 | PIGSTY 0.107 | PIGSTY 0.107 | MISS | MISS |
el10.x86_64 | MISS | PIGSTY 0.107 | PIGSTY 0.107 | PIGSTY 0.107 | MISS | MISS |
el10.aarch64 | MISS | PIGSTY 0.107 | PIGSTY 0.107 | PIGSTY 0.107 | MISS | MISS |
d12.x86_64 | MISS | PIGSTY 0.107 | PIGSTY 0.107 | PIGSTY 0.107 | MISS | MISS |
d12.aarch64 | MISS | PIGSTY 0.107 | PIGSTY 0.107 | PIGSTY 0.107 | MISS | MISS |
d13.x86_64 | MISS | PIGSTY 0.107 | PIGSTY 0.107 | PIGSTY 0.107 | MISS | MISS |
d13.aarch64 | MISS | PIGSTY 0.107 | PIGSTY 0.107 | PIGSTY 0.107 | MISS | MISS |
u22.x86_64 | MISS | PIGSTY 0.107 | PIGSTY 0.107 | PIGSTY 0.107 | MISS | MISS |
u22.aarch64 | MISS | PIGSTY 0.107 | PIGSTY 0.107 | PIGSTY 0.107 | MISS | MISS |
u24.x86_64 | MISS | PIGSTY 0.107 | PIGSTY 0.107 | PIGSTY 0.107 | MISS | MISS |
u24.aarch64 | MISS | PIGSTY 0.107 | PIGSTY 0.107 | PIGSTY 0.107 | MISS | MISS |
Source
pig build pkg documentdb; # build rpm / deb with pigInstall
Make sure PGDG and PIGSTY repo available:
pig repo add pgsql -u # add both repo and update cacheInstall this extension with pig:
pig install documentdb; # install via package name, for the active PG version
pig install documentdb_core; # install by extension name, for the current active PG version
pig install documentdb_core -v 17; # install for PG 17
pig install documentdb_core -v 16; # install for PG 16
pig install documentdb_core -v 15; # install for PG 15Config this extension to shared_preload_libraries:
shared_preload_libraries = 'pg_documentdb, pg_documentdb_core';Create this extension with:
CREATE EXTENSION documentdb_core;Last updated on