session_variable

Registration and manipulation of session variables and constants

Overview

PIGSTY 3rd Party Extension: session_variable : Registration and manipulation of session variables and constants

Information

Metadata

  • Latest Version: 3.4
  • Postgres Support: 17,16,15,14,13
  • Need Load: Shared library do not need explicit loading
  • Need DDL: Need CREATE EXTENSION DDL
  • Relocatable: Can not install to arbitrary schema
  • Trusted: Unknown
  • Schemas: N/A
  • Requires: N/A

RPM / DEB

  • RPM Repo: PIGSTY
  • RPM Name: session_variable_$v*
  • RPM Ver : 3.4
  • RPM Deps: N/A
  • DEB Repo: PIGSTY
  • DEB Name: postgresql-$v-session-variable
  • DEB Ver : 3.4
  • DEB Deps: N/A

Packages

OS Arch PG17 PG16 PG15 PG14 PG13
el8 x86_64 session_variable_17
PIGSTY 3.4
session_variable_16
PIGSTY 3.4
session_variable_15
PIGSTY 3.4
session_variable_14
PIGSTY 3.4
session_variable_13
PIGSTY 3.4
el8 aarch64 session_variable_17
PIGSTY 3.4
session_variable_16
PIGSTY 3.4
session_variable_15
PIGSTY 3.4
session_variable_14
PIGSTY 3.4
session_variable_13
PIGSTY 3.4
el9 x86_64 session_variable_17
PIGSTY 3.4
session_variable_16
PIGSTY 3.4
session_variable_15
PIGSTY 3.4
session_variable_14
PIGSTY 3.4
session_variable_13
PIGSTY 3.4
el9 aarch64 session_variable_17
PIGSTY 3.4
session_variable_16
PIGSTY 3.4
session_variable_15
PIGSTY 3.4
session_variable_14
PIGSTY 3.4
session_variable_13
PIGSTY 3.4
d12 x86_64 postgresql-17-session-variable
PIGSTY 3.4
postgresql-16-session-variable
PIGSTY 3.4
postgresql-15-session-variable
PIGSTY 3.4
postgresql-14-session-variable
PIGSTY 3.4
postgresql-13-session-variable
PIGSTY 3.4
d12 aarch64 postgresql-17-session-variable
PIGSTY 3.4
postgresql-16-session-variable
PIGSTY 3.4
postgresql-15-session-variable
PIGSTY 3.4
postgresql-14-session-variable
PIGSTY 3.4
postgresql-13-session-variable
PIGSTY 3.4
u22 x86_64 postgresql-17-session-variable
PIGSTY 3.4
postgresql-16-session-variable
PIGSTY 3.4
postgresql-15-session-variable
PIGSTY 3.4
postgresql-14-session-variable
PIGSTY 3.4
postgresql-13-session-variable
PIGSTY 3.4
u22 aarch64 postgresql-17-session-variable
PIGSTY 3.4
postgresql-16-session-variable
PIGSTY 3.4
postgresql-15-session-variable
PIGSTY 3.4
postgresql-14-session-variable
PIGSTY 3.4
postgresql-13-session-variable
PIGSTY 3.4
u24 x86_64 postgresql-17-session-variable
PIGSTY 3.4
postgresql-16-session-variable
PIGSTY 3.4
postgresql-15-session-variable
PIGSTY 3.4
postgresql-14-session-variable
PIGSTY 3.4
postgresql-13-session-variable
PIGSTY 3.4
u24 aarch64 postgresql-17-session-variable
PIGSTY 3.4
postgresql-16-session-variable
PIGSTY 3.4
postgresql-15-session-variable
PIGSTY 3.4
postgresql-14-session-variable
PIGSTY 3.4
postgresql-13-session-variable
PIGSTY 3.4

Installation

Install session_variable via the pig CLI tool:

pig ext install session_variable

Install session_variable via Pigsty playbook:

./pgsql.yml -t pg_extension -e '{"pg_extensions": ["session_variable"]}' # -l <cls>

Install session_variable RPM from YUM repo directly:

dnf install session_variable_17*;
dnf install session_variable_16*;
dnf install session_variable_15*;
dnf install session_variable_14*;
dnf install session_variable_13*;

Install session_variable DEB from APT repo directly:

apt install postgresql-17-session-variable;
apt install postgresql-16-session-variable;
apt install postgresql-15-session-variable;
apt install postgresql-14-session-variable;
apt install postgresql-13-session-variable;

Enable session_variable extension on PostgreSQL cluster:

CREATE EXTENSION session_variable;




Last modified 2025-02-17: add extension part (cfa504b)