pg_trickle
pg_trickle
pg_trickle : Streaming tables and differential view maintenance for PostgreSQL 18
Overview
| ID | Extension | Package | Version | Category | License | Language |
|---|---|---|---|---|---|---|
| 2860 | pg_trickle
|
pg_trickle
|
0.16.0 |
FEAT
|
Apache-2.0
|
Rust
|
| Attribute | Has Binary | Has Library | Need Load | Has DDL | Relocatable | Trusted |
|---|---|---|---|---|---|---|
--sLd--
|
No
|
Yes
|
Yes
|
Yes
|
no
|
no
|
| Relationships | |
|---|---|
| See Also | pg_ivm
pg_incremental
pg_partman
timeseries
|
Packages
| Type | Repo | Version | PG Major Compatibility | Package Pattern | Dependencies |
|---|---|---|---|---|---|
| EXT | PIGSTY
|
0.16.0 |
18
17
16
15
14
|
pg_trickle |
- |
| RPM | PIGSTY
|
0.16.0 |
18
17
16
15
14
|
pg_trickle_$v |
- |
| DEB | PIGSTY
|
0.16.0 |
18
17
16
15
14
|
postgresql-$v-pg-trickle |
- |
| Linux / PG | PG18 | PG17 | PG16 | PG15 | PG14 |
|---|---|---|---|---|---|
el8.x86_64
|
PIGSTY 0.16.0
|
MISS
|
MISS
|
MISS
|
MISS
|
el8.aarch64
|
PIGSTY 0.16.0
|
MISS
|
MISS
|
MISS
|
MISS
|
el9.x86_64
|
PIGSTY 0.16.0
|
MISS
|
MISS
|
MISS
|
MISS
|
el9.aarch64
|
PIGSTY 0.16.0
|
MISS
|
MISS
|
MISS
|
MISS
|
el10.x86_64
|
PIGSTY 0.16.0
|
MISS
|
MISS
|
MISS
|
MISS
|
el10.aarch64
|
PIGSTY 0.16.0
|
MISS
|
MISS
|
MISS
|
MISS
|
d12.x86_64
|
PIGSTY 0.16.0
|
MISS
|
MISS
|
MISS
|
MISS
|
d12.aarch64
|
PIGSTY 0.16.0
|
MISS
|
MISS
|
MISS
|
MISS
|
d13.x86_64
|
PIGSTY 0.16.0
|
MISS
|
MISS
|
MISS
|
MISS
|
d13.aarch64
|
PIGSTY 0.16.0
|
MISS
|
MISS
|
MISS
|
MISS
|
u22.x86_64
|
PIGSTY 0.16.0
|
MISS
|
MISS
|
MISS
|
MISS
|
u22.aarch64
|
PIGSTY 0.16.0
|
MISS
|
MISS
|
MISS
|
MISS
|
u24.x86_64
|
PIGSTY 0.16.0
|
MISS
|
MISS
|
MISS
|
MISS
|
u24.aarch64
|
PIGSTY 0.16.0
|
MISS
|
MISS
|
MISS
|
MISS
|
Source
pig build pkg pg_trickle; # build rpm/debInstall
Make sure PGDG and PIGSTY repo available:
pig repo add pgsql -u # add both repo and update cacheInstall this extension with pig:
pig install pg_trickle; # install via package name, for the active PG version
pig install pg_trickle -v 18; # install for PG 18Config this extension to shared_preload_libraries:
shared_preload_libraries = 'pg_trickle';Create this extension with:
CREATE EXTENSION pg_trickle;Last updated on