pgx_ulid
pgx_ulid
pgx_ulid : ulid type and methods
Overview
| ID | Extension | Package | Version | Category | License | Language |
|---|---|---|---|---|---|---|
| 4510 | pgx_ulid | pgx_ulid | 0.2.2 | FUNC | MIT | Rust |
| Attribute | Has Binary | Has Library | Need Load | Has DDL | Relocatable | Trusted |
|---|---|---|---|---|---|---|
--sLd-- | No | Yes | Yes | Yes | no | no |
| Relationships | |
|---|---|
| See Also | pg_idkit pg_uuidv7 sequential_uuids uuid-ossp pg_hashids permuteseq |
manual updated pgrx by Vonng
Packages
| Type | Repo | Version | PG Major Compatibility | Package Pattern | Dependencies |
|---|---|---|---|---|---|
| EXT | PIGSTY | 0.2.2 | 18 17 16 15 14 13 | pgx_ulid | - |
| RPM | PIGSTY | 0.2.2 | 18 17 16 15 14 13 | pgx_ulid_$v | - |
| DEB | PIGSTY | 0.2.2 | 18 17 16 15 14 13 | postgresql-$v-pgx-ulid | - |
| Linux / PG | PG18 | PG17 | PG16 | PG15 | PG14 | PG13 |
|---|---|---|---|---|---|---|
el8.x86_64 | PIGSTY 0.2.2 | PIGSTY 0.2.2 | PIGSTY 0.2.2 | PIGSTY 0.2.2 | PIGSTY 0.2.2 | MISS |
el8.aarch64 | PIGSTY 0.2.2 | PIGSTY 0.2.2 | PIGSTY 0.2.2 | PIGSTY 0.2.2 | PIGSTY 0.2.2 | MISS |
el9.x86_64 | PIGSTY 0.2.2 | PIGSTY 0.2.2 | PIGSTY 0.2.2 | PIGSTY 0.2.2 | PIGSTY 0.2.2 | MISS |
el9.aarch64 | PIGSTY 0.2.2 | PIGSTY 0.2.2 | PIGSTY 0.2.2 | PIGSTY 0.2.2 | PIGSTY 0.2.2 | MISS |
el10.x86_64 | PIGSTY 0.2.2 | PIGSTY 0.2.2 | PIGSTY 0.2.2 | PIGSTY 0.2.2 | PIGSTY 0.2.2 | MISS |
el10.aarch64 | PIGSTY 0.2.2 | PIGSTY 0.2.2 | PIGSTY 0.2.2 | PIGSTY 0.2.2 | PIGSTY 0.2.2 | MISS |
d12.x86_64 | PIGSTY 0.2.2 | PIGSTY 0.2.2 | PIGSTY 0.2.2 | PIGSTY 0.2.2 | PIGSTY 0.2.2 | MISS |
d12.aarch64 | PIGSTY 0.2.2 | PIGSTY 0.2.2 | PIGSTY 0.2.2 | PIGSTY 0.2.2 | PIGSTY 0.2.2 | MISS |
d13.x86_64 | PIGSTY 0.2.2 | PIGSTY 0.2.2 | PIGSTY 0.2.2 | PIGSTY 0.2.2 | PIGSTY 0.2.2 | MISS |
d13.aarch64 | PIGSTY 0.2.2 | PIGSTY 0.2.2 | PIGSTY 0.2.2 | PIGSTY 0.2.2 | PIGSTY 0.2.2 | MISS |
u22.x86_64 | PIGSTY 0.2.2 | PIGSTY 0.2.2 | PIGSTY 0.2.2 | PIGSTY 0.2.2 | PIGSTY 0.2.2 | MISS |
u22.aarch64 | PIGSTY 0.2.2 | PIGSTY 0.2.2 | PIGSTY 0.2.2 | PIGSTY 0.2.2 | PIGSTY 0.2.2 | MISS |
u24.x86_64 | PIGSTY 0.2.2 | PIGSTY 0.2.2 | PIGSTY 0.2.2 | PIGSTY 0.2.2 | PIGSTY 0.2.2 | MISS |
u24.aarch64 | PIGSTY 0.2.2 | PIGSTY 0.2.2 | PIGSTY 0.2.2 | PIGSTY 0.2.2 | PIGSTY 0.2.2 | MISS |
Source
pig build pkg pgx_ulid; # build rpm / deb with pigInstall
Make sure PGDG and PIGSTY repo available:
pig repo add pgsql -u # add both repo and update cacheInstall this extension with pig:
pig install pgx_ulid; # install via package name, for the active PG version
pig install pgx_ulid -v 18; # install for PG 18
pig install pgx_ulid -v 17; # install for PG 17
pig install pgx_ulid -v 16; # install for PG 16
pig install pgx_ulid -v 15; # install for PG 15
pig install pgx_ulid -v 14; # install for PG 14Config this extension to shared_preload_libraries:
shared_preload_libraries = 'pgx_ulid';Create this extension with:
CREATE EXTENSION pgx_ulid;Last updated on