pg_map
Map type for PostgreSQL, bundled as a required pg_lake component.
pg_lake : Map type for PostgreSQL, bundled as a required pg_lake component.
Overview
| ID | Extension | Package | Version | Category | License | Language |
|---|---|---|---|---|---|---|
| 2563 | pg_map | pg_lake | 3.4 |
OLAP | Apache-2.0 | C |
| Attribute | Has Binary | Has Library | Need Load | Has DDL | Relocatable | Trusted |
|---|---|---|---|---|---|---|
| --s-d-- | No | Yes | No | Yes | no | no |
| Relationships | |
|---|---|
| Schemas | map_type pg_catalog |
| Need By | pg_lake_engine |
| See Also | hstore pgbson collection pgjq jsquery intarray arraymath pg_jsonschema jsonschema pg_projection |
| Siblings | pg_lake pg_extension_base pg_extension_updater pg_lake_engine pg_lake_iceberg pg_lake_table pg_lake_copy |
This packaged provider is Snowflake pg_lake pg_map 3.4, not the unrelated semenikhind/pg_map 1.0 array-mapping extension. The catalog name is unique, so the packaged provider supersedes that source-only row and is reassigned with the pg_lake family to OLAP ID 2563. Extension SQL/control version is 3.4; source and DEB/RPM package version is 3.4.0.
Packages
| Type | Repo | Version | PG Major Compatibility | Package Pattern | Dependencies |
|---|---|---|---|---|---|
| EXT | PIGSTY | 3.4 |
18 17 16 15 14 | pg_lake |
- |
| RPM | PIGSTY | 3.4.0 |
18 17 16 15 14 | pg_lake_$v |
- |
| DEB | PIGSTY | 3.4.0 |
18 17 16 15 14 | postgresql-$v-pg-lake |
- |
| Linux / PG | PG18 | PG17 | PG16 | PG15 | PG14 |
|---|---|---|---|---|---|
| el8.x86_64 | N/A | N/A | N/A | N/A | N/A |
| el8.aarch64 | N/A | N/A | N/A | N/A | N/A |
| el9.x86_64 | PIGSTY 3.4.0 | PIGSTY 3.4.0 | PIGSTY 3.4.0 | N/A | N/A |
| el9.aarch64 | PIGSTY 3.4.0 | PIGSTY 3.4.0 | PIGSTY 3.4.0 | N/A | N/A |
| el10.x86_64 | PIGSTY 3.4.0 | PIGSTY 3.4.0 | PIGSTY 3.4.0 | N/A | N/A |
| el10.aarch64 | PIGSTY 3.4.0 | PIGSTY 3.4.0 | PIGSTY 3.4.0 | N/A | N/A |
| d12.x86_64 | PIGSTY 3.4.0 | PIGSTY 3.4.0 | PIGSTY 3.4.0 | N/A | N/A |
| d12.aarch64 | PIGSTY 3.4.0 | PIGSTY 3.4.0 | PIGSTY 3.4.0 | N/A | N/A |
| d13.x86_64 | PIGSTY 3.4.0 | PIGSTY 3.4.0 | PIGSTY 3.4.0 | N/A | N/A |
| d13.aarch64 | PIGSTY 3.4.0 | PIGSTY 3.4.0 | PIGSTY 3.4.0 | N/A | N/A |
| u22.x86_64 | PIGSTY 3.4.0 | PIGSTY 3.4.0 | PIGSTY 3.4.0 | N/A | N/A |
| u22.aarch64 | PIGSTY 3.4.0 | PIGSTY 3.4.0 | PIGSTY 3.4.0 | N/A | N/A |
| u24.x86_64 | PIGSTY 3.4.0 | PIGSTY 3.4.0 | PIGSTY 3.4.0 | N/A | N/A |
| u24.aarch64 | PIGSTY 3.4.0 | PIGSTY 3.4.0 | PIGSTY 3.4.0 | N/A | N/A |
| u26.x86_64 | PIGSTY 3.4.0 | PIGSTY 3.4.0 | PIGSTY 3.4.0 | N/A | N/A |
| u26.aarch64 | PIGSTY 3.4.0 | PIGSTY 3.4.0 | PIGSTY 3.4.0 | N/A | N/A |
Source
github.com/Snowflake-Labs/pg_lake/tree/main/pg_map
pg_lake-3.4.0.tar.gz
Install
Make sure PGDG and PIGSTY repo available:
Install this extension with pig:
Create this extension with:
Usage
Sources:
- Official pg_map README
- Version 3.4 control file
- Base SQL definition
- Official extension tests and examples
pg_map generates strongly typed key/value map domains from PostgreSQL types. A generated map is an array of composite key/value pairs, with type-specific extraction, cardinality, entry, and operator functions. It is used by pg_lake for nested data but can also be used directly.
Create and Use a Map Type
Construct a value and read it through generated functions or the -> operator:
Generated API
map_type.create(keytype regtype, valtype regtype, typname text default null): idempotently creates or returns a map type for a key/value pair.map_type.extract(map, key)and generatedmap -> key: return the value for a key.map_type.cardinality(map): returns the number of entries.map_type.entries(map): expands a map tokey, valuerows.- Generated names normally follow
map_type.key_<keytype>_val_<valuetype>; supplytypnamewhen a controlled name is required.
Type and Lifecycle Caveats
- Array types cannot be used as map keys. Array values and nested generated map types are supported.
- A call to
map_type.createcreates PostgreSQL types, functions, and operators. Treat it as schema DDL and run it in migrations rather than per-request code. - Generated objects are registered as dependencies of
pg_map; dropping the extension can remove them and columns that depend on them whenCASCADEis used. - Map values use PostgreSQL composite-array syntax. Duplicate-key and ordering semantics should be tested for the application’s chosen construction path rather than assumed from JSON objects.
- Version
3.4changes no map SQL API relative to3.3.