# pg_intmap **Repository Path**: mirrors_adjust/pg_intmap ## Basic Information - **Project Name**: pg_intmap - **Description**: Compressed integer-to-integer map - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-09-01 - **Last Updated**: 2025-10-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ![CI](https://github.com/adjust/pg_intmap/workflows/CI/badge.svg) ![experimental](https://img.shields.io/badge/status-experimental-orange) # pg_intmap Compressed integer containers. ### intmap Integer to integer map. Example: ```sql postgres=# select '10=>125, 20=>250, 30=>0'::intmap->20; ?column? ---------- 250 (1 row) ``` ### intarr Integer array. Example: ```sql postgres=# select '{100,225,-70}'::intarr->2; ?column? ---------- 225 (1 row) ```