pg_liquid
Liquid-inspired Datalog graph query extension for PostgreSQL
Repository
michael-golfi/pg_liquid
https://github.com/michael-golfi/pg_liquid
Source
pg_liquid-0.1.7.tar.gz
pg_liquid-0.1.7.tar.gz
Overview
| ID | Extension | Bin | Lib | Load | Create | Trust | Reloc | Schema |
|---|---|---|---|---|---|---|---|---|
| 2610 | pg_liquid | No | Yes | No | Yes | No | No | liquid |
Version
| Type | Repo | Version | PG Ver | Package | Deps |
|---|---|---|---|---|---|
| EXT | PIGSTY | 0.1.7 | 1817161514 | pg_liquid | - |
| RPM | PIGSTY | 0.1.7 | 1817161514 | pg_liquid_$v | - |
| DEB | PIGSTY | 0.1.7 | 1817161514 | postgresql-$v-pg-liquid | - |
Build
You can build the RPM / DEB packages for pg_liquid using pig build:
Install
You can install pg_liquid directly. First, make sure the PGDG and PIGSTY repositories are added and enabled:
Install the extension using pig or apt/yum/dnf:
Install
pig
dnf
apt
Create Extension:
Usage
Source: Docs site, README, Release v0.1.7, SQL install script
pg_liquid brings Liquid-style graph and compound queries into PostgreSQL. It stores graph state in the liquid schema and exposes SQL entry points for plain queries, principal-bound queries, and least-privilege reads.
Core query surface
liquid.query(program text): executes Liquid facts, rules, and one terminal query.liquid.query_as(principal text, program text): principal-bound execution.liquid.read_as(principal text, program text): least-privilege read wrapper; intended for application-facing reads.
Language and modeling features
- facts and rules terminated by
. - one terminal
?query per program - graph edges via
Edge(...) - typed compounds such as
Type@(role=value, ...) - query-local recursive rules
- built-in policy compounds such as
CompoundReadByRoleandliquid/acts_for
Row normalizers
liquid.create_row_normalizer(...): projects relational rows into Liquid compounds.liquid.rebuild_row_normalizer(...): regenerates bindings after table changes.liquid.drop_row_normalizer(...): removes the normalizer and optionally purges generated bindings.
Caveats
- Upstream validates the extension on PostgreSQL 14 through 18.
query_asandread_asare revoked fromPUBLICin the shipped SQL; grant them deliberately.read_as(...)is the safer application entry point when clients should not assert new facts.
Was this page helpful?
Thanks—your feedback helps us improve this page.
What got in the way? (optional)