random

random data generator

Overview

PIGSTY 3rd Party Extension: pg_random : random data generator

Information

Metadata

  • Latest Version: 2.0.0-dev
  • 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: pg_random_$v*
  • RPM Ver : 2.0.0-dev
  • RPM Deps: N/A
  • DEB Repo: PIGSTY
  • DEB Name: postgresql-$v-random
  • DEB Ver : 2.0.0-dev
  • DEB Deps: N/A

Packages

OS Arch PG17 PG16 PG15 PG14 PG13
el8 x86_64 pg_random_17
PIGSTY 2.0.0
pg_random_16
PIGSTY 2.0.0
pg_random_15
PIGSTY 2.0.0
pg_random_14
PIGSTY 2.0.0
pg_random_13
PIGSTY 2.0.0
el8 aarch64 pg_random_17
PIGSTY 2.0.0
pg_random_16
PIGSTY 2.0.0
pg_random_15
PIGSTY 2.0.0
pg_random_14
PIGSTY 2.0.0
pg_random_13
PIGSTY 2.0.0
el9 x86_64 pg_random_17
PIGSTY 2.0.0
pg_random_16
PIGSTY 2.0.0
pg_random_15
PIGSTY 2.0.0
pg_random_14
PIGSTY 2.0.0
pg_random_13
PIGSTY 2.0.0
el9 aarch64 pg_random_17
PIGSTY 2.0.0
pg_random_16
PIGSTY 2.0.0
pg_random_15
PIGSTY 2.0.0
pg_random_14
PIGSTY 2.0.0
pg_random_13
PIGSTY 2.0.0
d12 x86_64 postgresql-17-random
PIGSTY 2.0.0-dev
postgresql-16-random
PIGSTY 2.0.0-dev
postgresql-15-random
PIGSTY 2.0.0-dev
postgresql-14-random
PIGSTY 2.0.0-dev
postgresql-13-random
PIGSTY 2.0.0-dev
d12 aarch64 postgresql-17-random
PIGSTY 2.0.0-dev
postgresql-16-random
PIGSTY 2.0.0-dev
postgresql-15-random
PIGSTY 2.0.0-dev
postgresql-14-random
PIGSTY 2.0.0-dev
postgresql-13-random
PIGSTY 2.0.0-dev
u22 x86_64 postgresql-17-random
PIGSTY 2.0.0-dev
postgresql-16-random
PIGSTY 2.0.0-dev
postgresql-15-random
PIGSTY 2.0.0-dev
postgresql-14-random
PIGSTY 2.0.0-dev
postgresql-13-random
PIGSTY 2.0.0-dev
u22 aarch64 postgresql-17-random
PIGSTY 2.0.0-dev
postgresql-16-random
PIGSTY 2.0.0-dev
postgresql-15-random
PIGSTY 2.0.0-dev
postgresql-14-random
PIGSTY 2.0.0-dev
postgresql-13-random
PIGSTY 2.0.0-dev
u24 x86_64 postgresql-17-random
PIGSTY 2.0.0-dev
postgresql-16-random
PIGSTY 2.0.0-dev
postgresql-15-random
PIGSTY 2.0.0-dev
postgresql-14-random
PIGSTY 2.0.0-dev
postgresql-13-random
PIGSTY 2.0.0-dev
u24 aarch64 postgresql-17-random
PIGSTY 2.0.0-dev
postgresql-16-random
PIGSTY 2.0.0-dev
postgresql-15-random
PIGSTY 2.0.0-dev
postgresql-14-random
PIGSTY 2.0.0-dev
postgresql-13-random
PIGSTY 2.0.0-dev

Installation

Install random via the pig CLI tool:


pig ext install pg_random; # Extension Namepig ext install random; # normalized package name

Install pg_random via Pigsty playbook:

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

Install pg_random RPM from YUM repo directly:

dnf install pg_random_17*;
dnf install pg_random_16*;
dnf install pg_random_15*;
dnf install pg_random_14*;
dnf install pg_random_13*;

Install pg_random DEB from APT repo directly:

apt install postgresql-17-random;
apt install postgresql-16-random;
apt install postgresql-15-random;
apt install postgresql-14-random;
apt install postgresql-13-random;

Enable random extension on PostgreSQL cluster:

CREATE EXTENSION random;




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