pg_variables
pg_variables : Session-scoped variables with scalar, array, and record types
Overview
| ID | Extension | Package | Version | Category | License | Language |
|---|---|---|---|---|---|---|
| 2820 | pg_variables | pg_variables | 1.2.5 |
FEAT | PostgreSQL | C |
| Attribute | Has Binary | Has Library | Need Load | Has DDL | Relocatable | Trusted |
|---|---|---|---|---|---|---|
| --s-d-r | No | Yes | No | Yes | yes | no |
| Relationships | |
|---|---|
| Need By | pgelog |
| See Also | session_variable omni_var pg_fsql pg_query_rewrite |
Packages
| Type | Repo | Version | PG Major Compatibility | Package Pattern | Dependencies |
|---|---|---|---|---|---|
| EXT | PIGSTY | 1.2.5 |
18 17 16 15 14 | pg_variables |
- |
| RPM | PIGSTY | 1.2.5 |
18 17 16 15 14 | pg_variables_$v |
- |
| DEB | PIGSTY | 1.2.5 |
18 17 16 15 14 | postgresql-$v-pg-variables |
- |
| Linux / PG | PG18 | PG17 | PG16 | PG15 | PG14 |
|---|---|---|---|---|---|
| el8.x86_64 | PIGSTY 1.2.5 | PIGSTY 1.2.5 | PIGSTY 1.2.5 | PIGSTY 1.2.5 | PIGSTY 1.2.5 |
| el8.aarch64 | PIGSTY 1.2.5 | PIGSTY 1.2.5 | PIGSTY 1.2.5 | PIGSTY 1.2.5 | PIGSTY 1.2.5 |
| el9.x86_64 | PIGSTY 1.2.5 | PIGSTY 1.2.5 | PIGSTY 1.2.5 | PIGSTY 1.2.5 | PIGSTY 1.2.5 |
| el9.aarch64 | PIGSTY 1.2.5 | PIGSTY 1.2.5 | PIGSTY 1.2.5 | PIGSTY 1.2.5 | PIGSTY 1.2.5 |
| el10.x86_64 | PIGSTY 1.2.5 | PIGSTY 1.2.5 | PIGSTY 1.2.5 | PIGSTY 1.2.5 | PIGSTY 1.2.5 |
| el10.aarch64 | PIGSTY 1.2.5 | PIGSTY 1.2.5 | PIGSTY 1.2.5 | PIGSTY 1.2.5 | PIGSTY 1.2.5 |
| d12.x86_64 | PIGSTY 1.2.5 | PIGSTY 1.2.5 | PIGSTY 1.2.5 | PIGSTY 1.2.5 | PIGSTY 1.2.5 |
| d12.aarch64 | PIGSTY 1.2.5 | PIGSTY 1.2.5 | PIGSTY 1.2.5 | PIGSTY 1.2.5 | PIGSTY 1.2.5 |
| d13.x86_64 | PIGSTY 1.2.5 | PIGSTY 1.2.5 | PIGSTY 1.2.5 | PIGSTY 1.2.5 | PIGSTY 1.2.5 |
| d13.aarch64 | PIGSTY 1.2.5 | PIGSTY 1.2.5 | PIGSTY 1.2.5 | PIGSTY 1.2.5 | PIGSTY 1.2.5 |
| u22.x86_64 | PIGSTY 1.2.5 | PIGSTY 1.2.5 | PIGSTY 1.2.5 | PIGSTY 1.2.5 | PIGSTY 1.2.5 |
| u22.aarch64 | PIGSTY 1.2.5 | PIGSTY 1.2.5 | PIGSTY 1.2.5 | PIGSTY 1.2.5 | PIGSTY 1.2.5 |
| u24.x86_64 | PIGSTY 1.2.5 | PIGSTY 1.2.5 | PIGSTY 1.2.5 | PIGSTY 1.2.5 | PIGSTY 1.2.5 |
| u24.aarch64 | PIGSTY 1.2.5 | PIGSTY 1.2.5 | PIGSTY 1.2.5 | PIGSTY 1.2.5 | PIGSTY 1.2.5 |
| u26.x86_64 | PIGSTY 1.2.5 | PIGSTY 1.2.5 | PIGSTY 1.2.5 | PIGSTY 1.2.5 | PIGSTY 1.2.5 |
| u26.aarch64 | PIGSTY 1.2.5 | PIGSTY 1.2.5 | PIGSTY 1.2.5 | PIGSTY 1.2.5 | PIGSTY 1.2.5 |
Source
github.com/postgrespro/pg_variables
pg_variables-1.2.5.tar.gz
Install
Make sure PGDG and PIGSTY repo available:
Install this extension with pig:
Create this extension with:
Usage
- Sources: README, repository tags, control file
pg_variables provides session-scoped variables grouped into named packages. Variables live only in the current session and are non-transactional by default unless created with is_transactional := true.
Basic Set And Get
Transactional variables participate in savepoints and rollbacks:
Core APIs
The README documents generic scalar and array APIs:
pgv_set(package, name, value, is_transactional default false)pgv_get(package, name, NULL::type, strict default true)
It also documents record-oriented APIs:
pgv_insert()pgv_update()pgv_delete()pgv_select()
Useful administration helpers include pgv_exists(), pgv_remove(), pgv_free(), pgv_list(), and pgv_stats().
Error And Strictness Behavior
pgv_get() checks both existence and type. The README shows that missing packages, missing variables, or mismatched types raise errors unless strict := false, in which case NULL is returned for missing values.
Deprecated Helpers And Version Note
Upstream still ships deprecated type-specific helpers such as pgv_set_int() / pgv_get_int() and pgv_set_jsonb() / pgv_get_jsonb(), but recommends the generic pgv_set() / pgv_get() API.
The repository tag is v1.2.5, while the current pg_variables.control file still declares default_version = '1.2'. That matches the packaging note that the release tag advanced without changing the SQL extension version string.