Contents

SQL Reference

Complete reference for all SQL functions, views, and catalog tables provided by pgtrickle.


Table of Contents


Functions

Core Lifecycle

Create, modify, and manage the lifecycle of stream tables.


pgtrickle.create_stream_table

Create a new stream table.

pgtrickle.create_stream_table(
    name                  text,
    query                 text,
    schedule              text      DEFAULT 'calculated',
    refresh_mode          text      DEFAULT 'AUTO',
    initialize            bool      DEFAULT true,
    diamond_consistency   text      DEFAULT NULL,
    diamond_schedule_policy text    DEFAULT NULL,
    cdc_mode              text      DEFAULT NULL,
    append_only           bool      DEFAULT false
) → void

Parameters:

Parameter Type Default Description
name text Name of the stream table. May be schema-qualified (myschema.my_st). Defaults to public schema.
query text The defining SQL query. Must be a valid SELECT statement using supported operators.
schedule text 'calculated' Refresh schedule as a Prometheus/GNU-style duration string (e.g., '30s', '5m', '1h', '1h30m', '1d') or a cron expression (e.g., '*/5 * * * *', '@hourly'). Use 'calculated' for CALCULATED mode (inherits schedule from downstream dependents).
refresh_mode text 'AUTO' 'AUTO' (adaptive — uses DIFFERENTIAL when possible, falls back to FULL if the query is not differentiable), 'FULL' (truncate and reload), 'DIFFERENTIAL' (apply delta only — errors if the query is not differentiable), or 'IMMEDIATE' (synchronous in-transaction maintenance via statement-level triggers).
initialize bool true If true, populates the table immediately via a full refresh. If false, creates the table empty.
diamond_consistency text NULL (defaults to 'none') Diamond dependency consistency mode: 'none' (independent refresh) or 'atomic' (SAVEPOINT-based atomic group refresh).
diamond_schedule_policy text NULL (defaults to 'fastest') Schedule policy for atomic diamond groups: 'fastest' (fire when any member is due) or 'slowest' (fire when all are due). Set on the convergence node.
cdc_mode text NULL (use pg_trickle.cdc_mode) Optional per-stream-table CDC override: 'auto', 'trigger', or 'wal'. This affects all deferred TABLE sources of the stream table.
append_only bool false When true, differential refreshes use a fast INSERT path instead of MERGE. Skips DELETE/UPDATE/IS DISTINCT FROM checks. If a DELETE or UPDATE is later detected in the change buffer, the flag is automatically reverted to false. Not compatible with FULL, IMMEDIATE, or keyless sources.

When refresh_mode => 'IMMEDIATE', the cluster-wide pg_trickle.cdc_mode setting is ignored. IMMEDIATE mode always uses statement-level IVM triggers instead of CDC triggers or WAL replication slots. If you explicitly pass cdc_mode => 'wal' together with refresh_mode => 'IMMEDIATE', pg_trickle rejects the call because WAL CDC is asynchronous and incompatible with in-transaction maintenance.

Duration format:

Unit Suffix Example
Seconds s '30s'
Minutes m '5m'
Hours h '2h'
Days d '1d'
Weeks w '1w'
Compound '1h30m', '2m30s'

Cron expression format:

schedule also accepts standard cron expressions for time-based scheduling. The scheduler refreshes the stream table when the cron schedule fires, rather than checking staleness.

Format Fields Example Description
5-field min hour dom mon dow '*/5 * * * *' Every 5 minutes
6-field sec min hour dom mon dow '0 */5 * * * *' Every 5 minutes at :00 seconds
Alias '@hourly' Every hour
Alias '@daily' Every day at midnight
Alias '@weekly' Every Sunday at midnight
Alias '@monthly' First of every month
Weekday range '0 6 * * 1-5' 6 AM on weekdays

Note: Cron-scheduled stream tables do not participate in CALCULATED schedule resolution. The stale column in monitoring views returns NULL for cron-scheduled tables.

Example:

-- Duration-based: refresh when data is staler than 2 minutes (refresh_mode defaults to 'AUTO')
SELECT pgtrickle.create_stream_table(
    name     => 'order_totals',
    query    => 'SELECT region, SUM(amount) AS total FROM orders GROUP BY region',
    schedule => '2m'
);

-- Cron-based: refresh every hour
SELECT pgtrickle.create_stream_table(
    name         => 'hourly_summary',
    query        => 'SELECT date_trunc(''hour'', ts), COUNT(*) FROM events GROUP BY 1',
    schedule     => '@hourly',
    refresh_mode => 'FULL'
);

-- Cron-based: refresh at 6 AM on weekdays
SELECT pgtrickle.create_stream_table(
    name         => 'daily_report',
    query        => 'SELECT region, SUM(revenue) AS total FROM sales GROUP BY region',
    schedule     => '0 6 * * 1-5',
    refresh_mode => 'FULL'
);

-- Immediate mode: maintained synchronously within the same transaction
-- No schedule needed — updates happen automatically when base table changes
SELECT pgtrickle.create_stream_table(
    name         => 'live_totals',
    query        => 'SELECT region, SUM(amount) AS total FROM orders GROUP BY region',
    refresh_mode => 'IMMEDIATE'
);

-- Force WAL CDC for this stream table even if the global GUC is 'trigger'
SELECT pgtrickle.create_stream_table(
    name         => 'wal_orders',
    query        => 'SELECT id, amount FROM orders',
    schedule     => '1s',
    refresh_mode => 'DIFFERENTIAL',
    cdc_mode     => 'wal'
);

Aggregate Examples:

All supported aggregate functions work in AUTO mode (and all other modes). Examples below omit refresh_mode — the default 'AUTO' selects DIFFERENTIAL automatically. Explicit modes are shown only when the mode itself is being demonstrated.

-- Algebraic aggregates (fully differential — no rescan needed)
SELECT pgtrickle.create_stream_table(
    name     => 'sales_summary',
    query    => 'SELECT region, COUNT(*) AS cnt, SUM(amount) AS total, AVG(amount) AS avg_amount
     FROM orders GROUP BY region',
    schedule => '1m'
);

-- Semi-algebraic aggregates (MIN/MAX)
SELECT pgtrickle.create_stream_table(
    name     => 'salary_ranges',
    query    => 'SELECT department, MIN(salary) AS min_sal, MAX(salary) AS max_sal
     FROM employees GROUP BY department',
    schedule => '2m'
);

-- Group-rescan aggregates (BOOL_AND/OR, STRING_AGG, ARRAY_AGG, JSON_AGG, JSONB_AGG,
--                          BIT_AND, BIT_OR, BIT_XOR, JSON_OBJECT_AGG, JSONB_OBJECT_AGG,
--                          STDDEV, STDDEV_POP, STDDEV_SAMP, VARIANCE, VAR_POP, VAR_SAMP,
--                          MODE, PERCENTILE_CONT, PERCENTILE_DISC,
--                          CORR, COVAR_POP, COVAR_SAMP, REGR_AVGX, REGR_AVGY,
--                          REGR_COUNT, REGR_INTERCEPT, REGR_R2, REGR_SLOPE,
--                          REGR_SXX, REGR_SXY, REGR_SYY, ANY_VALUE)
SELECT pgtrickle.create_stream_table(
    name     => 'team_members',
    query    => 'SELECT department,
            STRING_AGG(name, '', '' ORDER BY name) AS members,
            ARRAY_AGG(employee_id) AS member_ids,
            BOOL_AND(active) AS all_active,
            JSON_AGG(name) AS members_json
     FROM employees
     GROUP BY department',
    schedule => '1m'
);

-- Bitwise aggregates
SELECT pgtrickle.create_stream_table(
    name     => 'permission_summary',
    query    => 'SELECT department,
            BIT_OR(permissions) AS combined_perms,
            BIT_AND(permissions) AS common_perms,
            BIT_XOR(flags) AS xor_flags
     FROM employees
     GROUP BY department',
    schedule => '1m'
);

-- JSON object aggregates
SELECT pgtrickle.create_stream_table(
    name     => 'config_map',
    query    => 'SELECT department,
            JSON_OBJECT_AGG(setting_name, setting_value) AS settings,
            JSONB_OBJECT_AGG(key, value) AS metadata
     FROM config
     GROUP BY department',
    schedule => '1m'
);

-- Statistical aggregates
SELECT pgtrickle.create_stream_table(
    name     => 'salary_stats',
    query    => 'SELECT department,
            STDDEV_POP(salary) AS sd_pop,
            STDDEV_SAMP(salary) AS sd_samp,
            VAR_POP(salary) AS var_pop,
            VAR_SAMP(salary) AS var_samp
     FROM employees
     GROUP BY department',
    schedule => '1m'
);

-- Ordered-set aggregates (MODE, PERCENTILE_CONT, PERCENTILE_DISC)
SELECT pgtrickle.create_stream_table(
    name     => 'salary_percentiles',
    query    => 'SELECT department,
            MODE() WITHIN GROUP (ORDER BY grade) AS most_common_grade,
            PERCENTILE_CONT(0.5) WITHIN GROUP (ORDER BY salary) AS median_salary,
            PERCENTILE_DISC(0.9) WITHIN GROUP (ORDER BY salary) AS p90_salary
     FROM employees
     GROUP BY department',
    schedule => '1m'
);

-- Regression / correlation aggregates (CORR, COVAR_*, REGR_*)
SELECT pgtrickle.create_stream_table(
    name     => 'regression_stats',
    query    => 'SELECT department,
            CORR(salary, experience) AS sal_exp_corr,
            COVAR_POP(salary, experience) AS covar_pop,
            COVAR_SAMP(salary, experience) AS covar_samp,
            REGR_SLOPE(salary, experience) AS slope,
            REGR_INTERCEPT(salary, experience) AS intercept,
            REGR_R2(salary, experience) AS r_squared,
            REGR_COUNT(salary, experience) AS regr_n
     FROM employees
     GROUP BY department',
    schedule => '1m'
);

-- ANY_VALUE aggregate (PostgreSQL 16+)
SELECT pgtrickle.create_stream_table(
    name     => 'dept_sample',
    query    => 'SELECT department, ANY_VALUE(office_location) AS sample_office
     FROM employees GROUP BY department',
    schedule => '1m'
);

-- FILTER clause on aggregates
SELECT pgtrickle.create_stream_table(
    name     => 'order_metrics',
    query    => 'SELECT region,
            COUNT(*) AS total,
            COUNT(*) FILTER (WHERE status = ''active'') AS active_count,
            SUM(amount) FILTER (WHERE status = ''shipped'') AS shipped_total
     FROM orders
     GROUP BY region',
    schedule => '1m'
);

CTE Examples:

Non-recursive CTEs are fully supported in both FULL and DIFFERENTIAL modes:

-- Simple CTE
SELECT pgtrickle.create_stream_table(
    name     => 'active_order_totals',
    query    => 'WITH active_users AS (
        SELECT id, name FROM users WHERE active = true
    )
    SELECT a.id, a.name, SUM(o.amount) AS total
    FROM active_users a
    JOIN orders o ON o.user_id = a.id
    GROUP BY a.id, a.name',
    schedule => '1m'
);

-- Chained CTEs (CTE referencing another CTE)
SELECT pgtrickle.create_stream_table(
    name     => 'top_regions',
    query    => 'WITH regional AS (
        SELECT region, SUM(amount) AS total FROM orders GROUP BY region
    ),
    ranked AS (
        SELECT region, total FROM regional WHERE total > 1000
    )
    SELECT * FROM ranked',
    schedule => '2m'
);

-- Multi-reference CTE (referenced twice in FROM — shared delta optimization)
SELECT pgtrickle.create_stream_table(
    name     => 'self_compare',
    query    => 'WITH totals AS (
        SELECT user_id, SUM(amount) AS total FROM orders GROUP BY user_id
    )
    SELECT t1.user_id, t1.total, t2.total AS next_total
    FROM totals t1
    JOIN totals t2 ON t1.user_id = t2.user_id + 1',
    schedule => '1m'
);

-- Append-only stream table (INSERT-only fast path)
SELECT pgtrickle.create_stream_table(
    name        => 'event_log_st',
    query       => 'SELECT id, event_type, payload, created_at FROM events',
    schedule    => '30s',
    append_only => true
);

Recursive CTEs work with FULL, DIFFERENTIAL, and IMMEDIATE modes:

-- Recursive CTE (hierarchy traversal)
SELECT pgtrickle.create_stream_table(
    name         => 'category_tree',
    query        => 'WITH RECURSIVE cat_tree AS (
        SELECT id, name, parent_id, 0 AS depth
        FROM categories WHERE parent_id IS NULL
        UNION ALL
        SELECT c.id, c.name, c.parent_id, ct.depth + 1
        FROM categories c
        JOIN cat_tree ct ON c.parent_id = ct.id
    )
    SELECT * FROM cat_tree',
    schedule     => '5m',
    refresh_mode => 'FULL'  -- FULL mode: standard re-execution
);

-- Recursive CTE with DIFFERENTIAL mode (incremental semi-naive / DRed)
SELECT pgtrickle.create_stream_table(
    name         => 'org_chart',
    query        => 'WITH RECURSIVE reports AS (
        SELECT id, name, manager_id FROM employees WHERE manager_id IS NULL
        UNION ALL
        SELECT e.id, e.name, e.manager_id
        FROM employees e JOIN reports r ON e.manager_id = r.id
    )
    SELECT * FROM reports',
    schedule     => '2m',
    refresh_mode => 'DIFFERENTIAL'  -- Uses semi-naive, DRed, or recomputation (auto-selected)
);

-- Recursive CTE with IMMEDIATE mode (same-transaction maintenance)
SELECT pgtrickle.create_stream_table(
    name         => 'org_chart_live',
    query        => 'WITH RECURSIVE reports AS (
        SELECT id, name, manager_id FROM employees WHERE manager_id IS NULL
        UNION ALL
        SELECT e.id, e.name, e.manager_id
        FROM employees e JOIN reports r ON e.manager_id = r.id
    )
    SELECT * FROM reports',
    refresh_mode => 'IMMEDIATE'  -- Uses transition tables with semi-naive / DRed maintenance
);

Non-monotone recursive terms: If the recursive term contains operators like EXCEPT, aggregate functions, window functions, DISTINCT, INTERSECT (set), or anti-joins, the system automatically falls back to recomputation to guarantee correctness. Semi-naive and DRed strategies require monotone recursive terms (JOIN, UNION ALL, filter/project only).

Set Operation Examples:

INTERSECT, INTERSECT ALL, EXCEPT, EXCEPT ALL, UNION, and UNION ALL are supported:

-- INTERSECT: customers who placed orders in BOTH regions
SELECT pgtrickle.create_stream_table(
    name     => 'bi_region_customers',
    query    => 'SELECT customer_id FROM orders_east
     INTERSECT
     SELECT customer_id FROM orders_west',
    schedule => '2m'
);

-- INTERSECT ALL: preserves duplicates (bag semantics)
SELECT pgtrickle.create_stream_table(
    name     => 'common_items',
    query    => 'SELECT item_name FROM warehouse_a
     INTERSECT ALL
     SELECT item_name FROM warehouse_b',
    schedule => '1m'
);

-- EXCEPT: orders not yet shipped
SELECT pgtrickle.create_stream_table(
    name     => 'unshipped_orders',
    query    => 'SELECT order_id FROM orders
     EXCEPT
     SELECT order_id FROM shipments',
    schedule => '1m'
);

-- EXCEPT ALL: preserves duplicate counts (bag subtraction)
SELECT pgtrickle.create_stream_table(
    name     => 'excess_inventory',
    query    => 'SELECT sku FROM stock_received
     EXCEPT ALL
     SELECT sku FROM stock_shipped',
    schedule => '5m'
);

-- UNION: deduplicated merge of two sources
SELECT pgtrickle.create_stream_table(
    name     => 'all_contacts',
    query    => 'SELECT email FROM customers
     UNION
     SELECT email FROM newsletter_subscribers',
    schedule => '5m'
);

LATERAL Set-Returning Function Examples:

Set-returning functions (SRFs) in the FROM clause are supported in both FULL and DIFFERENTIAL modes. Common SRFs include jsonb_array_elements, jsonb_each, jsonb_each_text, and unnest:

-- Flatten JSONB arrays into rows
SELECT pgtrickle.create_stream_table(
    name     => 'flat_children',
    query    => 'SELECT p.id, child.value AS val
     FROM parent_data p,
     jsonb_array_elements(p.data->''children'') AS child',
    schedule => '1m'
);

-- Expand JSONB key-value pairs (multi-column SRF)
SELECT pgtrickle.create_stream_table(
    name     => 'flat_properties',
    query    => 'SELECT d.id, kv.key, kv.value
     FROM documents d,
     jsonb_each(d.metadata) AS kv',
    schedule => '2m'
);

-- Unnest arrays
SELECT pgtrickle.create_stream_table(
    name     => 'flat_tags',
    query    => 'SELECT t.id, tag.tag
     FROM tagged_items t,
     unnest(t.tags) AS tag(tag)',
    schedule => '1m'
);

-- SRF with WHERE filter
SELECT pgtrickle.create_stream_table(
    name     => 'high_value_items',
    query    => 'SELECT p.id, (e.value)::int AS amount
     FROM products p,
     jsonb_array_elements(p.prices) AS e
     WHERE (e.value)::int > 100',
    schedule => '5m'
);

-- SRF combined with aggregation
SELECT pgtrickle.create_stream_table(
    name         => 'element_counts',
    query        => 'SELECT a.id, count(*) AS cnt
     FROM arrays a,
     jsonb_array_elements(a.data) AS e
     GROUP BY a.id',
    schedule     => '1m',
    refresh_mode => 'FULL'
);

LATERAL Subquery Examples:

LATERAL subqueries in the FROM clause are supported in both FULL and DIFFERENTIAL modes. Use them for top-N per group, correlated aggregation, and conditional expansion:

-- Top-N per group: latest item per order
SELECT pgtrickle.create_stream_table(
    name     => 'latest_items',
    query    => 'SELECT o.id, o.customer, latest.amount
     FROM orders o,
     LATERAL (
         SELECT li.amount
         FROM line_items li
         WHERE li.order_id = o.id
         ORDER BY li.created_at DESC
         LIMIT 1
     ) AS latest',
    schedule => '1m'
);

-- Correlated aggregate
SELECT pgtrickle.create_stream_table(
    name     => 'dept_summaries',
    query    => 'SELECT d.id, d.name, stats.total, stats.cnt
     FROM departments d,
     LATERAL (
         SELECT SUM(e.salary) AS total, COUNT(*) AS cnt
         FROM employees e
         WHERE e.dept_id = d.id
     ) AS stats',
    schedule => '1m'
);

-- LEFT JOIN LATERAL: preserve outer rows with NULLs when subquery returns no rows
SELECT pgtrickle.create_stream_table(
    name     => 'dept_stats_all',
    query    => 'SELECT d.id, d.name, stats.total
     FROM departments d
     LEFT JOIN LATERAL (
         SELECT SUM(e.salary) AS total
         FROM employees e
         WHERE e.dept_id = d.id
     ) AS stats ON true',
    schedule => '1m'
);

WHERE Subquery Examples:

Subqueries in the WHERE clause are automatically transformed into semi-join, anti-join, or scalar subquery operators in the DVM operator tree:

-- EXISTS subquery: customers who have placed orders
SELECT pgtrickle.create_stream_table(
    name     => 'active_customers',
    query    => 'SELECT c.id, c.name
     FROM customers c
     WHERE EXISTS (SELECT 1 FROM orders o WHERE o.customer_id = c.id)',
    schedule => '1m'
);

-- NOT EXISTS: customers with no orders
SELECT pgtrickle.create_stream_table(
    name     => 'inactive_customers',
    query    => 'SELECT c.id, c.name
     FROM customers c
     WHERE NOT EXISTS (SELECT 1 FROM orders o WHERE o.customer_id = c.id)',
    schedule => '1m'
);

-- IN subquery: products that have been ordered
SELECT pgtrickle.create_stream_table(
    name     => 'ordered_products',
    query    => 'SELECT p.id, p.name
     FROM products p
     WHERE p.id IN (SELECT product_id FROM order_items)',
    schedule => '1m'
);

-- NOT IN subquery: products never ordered
SELECT pgtrickle.create_stream_table(
    name     => 'unordered_products',
    query    => 'SELECT p.id, p.name
     FROM products p
     WHERE p.id NOT IN (SELECT product_id FROM order_items)',
    schedule => '1m'
);

-- Scalar subquery in SELECT list
SELECT pgtrickle.create_stream_table(
    name     => 'products_with_max_price',
    query    => 'SELECT p.id, p.name, (SELECT max(price) FROM products) AS max_price
     FROM products p',
    schedule => '1m'
);

Notes: - The defining query is parsed into an operator tree and validated for DVM support. - Views as sources — views referenced in the defining query are automatically inlined as subqueries (auto-rewrite pass #0). CDC triggers are created on the underlying base tables. Nested views (view → view → table) are fully expanded. The user’s original query is preserved in original_query for reinit and introspection. Materialized views are rejected in DIFFERENTIAL mode (use FULL mode or the underlying query directly). Foreign tables are also rejected in DIFFERENTIAL mode. - CDC triggers and change buffer tables are created automatically for each source table. - The ST is registered in the dependency DAG; cycles are rejected. - Non-recursive CTEs are inlined as subqueries during parsing (Tier 1). Multi-reference CTEs share delta computation (Tier 2). - Recursive CTEs in DIFFERENTIAL mode use three strategies, auto-selected per refresh: semi-naive evaluation for INSERT-only changes, recomputation fallback for mixed DELETE/UPDATE changes (see known limitation below), and recomputation fallback when CTE columns don’t match ST storage columns. Non-monotone recursive terms (containing EXCEPT, Aggregate, Window, DISTINCT, AntiJoin, or INTERSECT SET) automatically fall back to recomputation to ensure correctness.

⚠️ Known Limitation — Recursive CTE DIFFERENTIAL mode and mixed changes In DIFFERENTIAL mode, when the change buffer contains DELETE or UPDATE rows for a recursive CTE source, pg_trickle falls back to full recomputation (Strategy 3), not Delete-and-Rederive. DRed is only active in IMMEDIATE mode. Use refresh_mode = 'IMMEDIATE' for recursive CTE stream tables with frequent DELETE/UPDATE workloads on their sources. Tracked as P2-1 in the v0.9.0 roadmap. - LATERAL SRFs in DIFFERENTIAL mode use row-scoped recomputation: when a source row changes, only the SRF expansions for that row are re-evaluated. - LATERAL subqueries in DIFFERENTIAL mode also use row-scoped recomputation: when an outer row changes, the correlated subquery is re-executed only for that row. - WHERE subqueries (EXISTS, IN, scalar) are parsed into dedicated semi-join, anti-join, and scalar subquery operators with specialized delta computation. - ALL (subquery) is the only subquery form that is currently rejected. - ORDER BY is accepted but silently discarded — row order in the storage table is undefined (consistent with PostgreSQL’s CREATE MATERIALIZED VIEW behavior). Apply ORDER BY when querying the stream table. - TopK (ORDER BY + LIMIT) — When a top-level ORDER BY … LIMIT N is present (with a constant integer limit, optionally with OFFSET M), the query is recognized as a “TopK” pattern and accepted. TopK stream tables store exactly N rows (starting from position M+1 if OFFSET is specified) and are refreshed via a scoped-recomputation MERGE strategy. The DVM delta pipeline is bypassed; instead, each refresh re-evaluates the full ORDER BY + LIMIT [+ OFFSET] query and merges the result into the storage table. The catalog records topk_limit, topk_order_by, and optionally topk_offset for the stream table. TopK is not supported with set operations (UNION/INTERSECT/EXCEPT) or GROUP BY ROLLUP/CUBE/GROUPING SETS. - LIMIT / OFFSET without ORDER BY are rejected — stream tables materialize the full result set. Apply LIMIT when querying the stream table.


pgtrickle.create_stream_table_if_not_exists

Create a stream table if it does not already exist. If a stream table with the given name already exists, this is a silent no-op (an INFO message is logged). The existing definition is never modified.

pgtrickle.create_stream_table_if_not_exists(
    name                    text,
    query                   text,
    schedule                text      DEFAULT 'calculated',
    refresh_mode            text      DEFAULT 'AUTO',
    initialize              bool      DEFAULT true,
    diamond_consistency     text      DEFAULT NULL,
    diamond_schedule_policy text      DEFAULT NULL,
    cdc_mode                text      DEFAULT NULL
) → void

Parameters: Same as create_stream_table.

Example:

-- Safe to re-run in migrations:
SELECT pgtrickle.create_stream_table_if_not_exists(
    'order_totals',
    'SELECT customer_id, sum(amount) AS total FROM orders GROUP BY customer_id',
    '1m',
    'DIFFERENTIAL'
);

Notes: - Useful for deployment / migration scripts that should be safe to re-run. - If the stream table already exists, the provided query, schedule, and other parameters are ignored — the existing definition is preserved.


pgtrickle.create_or_replace_stream_table

Create a stream table if it does not exist, or replace the existing one if the definition changed. This is the declarative, idempotent API for deployment workflows (dbt, SQL migrations, GitOps).

pgtrickle.create_or_replace_stream_table(
    name                    text,
    query                   text,
    schedule                text      DEFAULT 'calculated',
    refresh_mode            text      DEFAULT 'AUTO',
    initialize              bool      DEFAULT true,
    diamond_consistency     text      DEFAULT NULL,
    diamond_schedule_policy text      DEFAULT NULL,
    cdc_mode                text      DEFAULT NULL,
    append_only             bool      DEFAULT false
) → void

Parameters: Same as create_stream_table.

Behavior:

Current state Action taken
Stream table does not exist Create — identical to create_stream_table(...)
Stream table exists, query and all config identical No-op — logs INFO, returns immediately
Stream table exists, query identical but config differs Alter config — delegates to alter_stream_table(...) for schedule, refresh_mode, diamond settings, cdc_mode, append_only
Stream table exists, query differs Replace query — in-place ALTER QUERY migration plus any config changes; a full refresh is applied

The initialize parameter is honoured on create only. On replace, the stream table is always repopulated via a full refresh.

Query comparison uses the post-rewrite (normalized) form of the SQL. Cosmetic differences such as whitespace, casing, and extra parentheses are ignored.

Example:

-- Idempotent deployment — safe to run on every deploy:
SELECT pgtrickle.create_or_replace_stream_table(
    name         => 'order_totals',
    query        => 'SELECT region, SUM(amount) AS total FROM orders GROUP BY region',
    schedule     => '2m',
    refresh_mode => 'DIFFERENTIAL'
);

-- If the query changed since last deploy, the stream table is
-- migrated in place (no data gap). If nothing changed, it's a no-op.

Notes: - Mirrors PostgreSQL’s CREATE OR REPLACE convention (CREATE OR REPLACE VIEW, CREATE OR REPLACE FUNCTION). - Never drops the stream table — even for incompatible schema changes, the ALTER QUERY path rebuilds storage in place while preserving the catalog entry (pgt_id). - For migration scripts that should not modify an existing definition, use create_stream_table_if_not_exists instead.


pgtrickle.alter_stream_table

Alter properties of an existing stream table.

pgtrickle.alter_stream_table(
    name                  text,
    query                 text      DEFAULT NULL,
    schedule              text      DEFAULT NULL,
    refresh_mode          text      DEFAULT NULL,
    status                text      DEFAULT NULL,
    diamond_consistency   text      DEFAULT NULL,
    diamond_schedule_policy text    DEFAULT NULL,
    cdc_mode              text      DEFAULT NULL,
    append_only           bool      DEFAULT NULL
) → void

Parameters:

Parameter Type Default Description
name text Name of the stream table (schema-qualified or unqualified).
query text NULL New defining query. Pass NULL to leave unchanged. When set, the function validates the new query, migrates the storage table schema if needed, updates catalog entries and dependencies, and runs a full refresh. Schema changes are classified as same (no DDL), compatible (ALTER TABLE ADD/DROP COLUMN), or incompatible (full storage rebuild with OID change).
schedule text NULL New schedule as a duration string (e.g., '5m'). Pass NULL to leave unchanged. Pass 'calculated' to switch to CALCULATED mode.
refresh_mode text NULL New refresh mode ('AUTO', 'FULL', 'DIFFERENTIAL', or 'IMMEDIATE'). Pass NULL to leave unchanged. Switching to/from 'IMMEDIATE' migrates trigger infrastructure (IVM triggers ↔ CDC triggers), clears or restores the schedule, and runs a full refresh.
status text NULL New status ('ACTIVE', 'SUSPENDED'). Pass NULL to leave unchanged. Resuming resets consecutive errors to 0.
diamond_consistency text NULL New diamond consistency mode ('none' or 'atomic'). Pass NULL to leave unchanged.
diamond_schedule_policy text NULL New schedule policy for atomic diamond groups ('fastest' or 'slowest'). Pass NULL to leave unchanged.
cdc_mode text NULL New requested CDC mode override ('auto', 'trigger', or 'wal'). Pass NULL to leave unchanged.
append_only bool NULL Enable or disable the append-only INSERT fast path. Pass NULL to leave unchanged. When true, rejected for FULL, IMMEDIATE, or keyless source stream tables.

If you switch a stream table to refresh_mode => 'IMMEDIATE' while the cluster-wide pg_trickle.cdc_mode GUC is set to 'wal', pg_trickle logs an INFO and proceeds with IVM triggers. WAL CDC does not apply to IMMEDIATE mode. If the stream table has an explicit cdc_mode => 'wal' override, switching to IMMEDIATE is rejected until you change the requested CDC mode back to 'auto' or 'trigger'.

Examples:

-- Change the defining query (same output schema — fast path)
SELECT pgtrickle.alter_stream_table('order_totals',
    query => 'SELECT customer_id, SUM(amount) AS total FROM orders WHERE status = ''active'' GROUP BY customer_id');

-- Change query and add a column (compatible schema migration)
SELECT pgtrickle.alter_stream_table('order_totals',
    query => 'SELECT customer_id, SUM(amount) AS total, COUNT(*) AS cnt FROM orders GROUP BY customer_id');

-- Change query and mode simultaneously
SELECT pgtrickle.alter_stream_table('order_totals',
    query => 'SELECT customer_id, SUM(amount) AS total FROM orders GROUP BY customer_id',
    refresh_mode => 'FULL');

-- Change schedule
SELECT pgtrickle.alter_stream_table('order_totals', schedule => '5m');

-- Switch to full refresh mode
SELECT pgtrickle.alter_stream_table('order_totals', refresh_mode => 'FULL');

-- Switch to immediate (transactional) mode — installs IVM triggers, clears schedule
SELECT pgtrickle.alter_stream_table('order_totals', refresh_mode => 'IMMEDIATE');

-- Switch from immediate back to differential — re-creates CDC triggers, restores schedule
SELECT pgtrickle.alter_stream_table('order_totals',
    refresh_mode => 'DIFFERENTIAL', schedule => '5m');

-- Pin a deferred stream table to trigger CDC even when the global GUC is 'auto'
SELECT pgtrickle.alter_stream_table('order_totals', cdc_mode => 'trigger');

-- Enable append-only INSERT fast path
SELECT pgtrickle.alter_stream_table('event_log_st', append_only => true);

-- Suspend a stream table
SELECT pgtrickle.alter_stream_table('order_totals', status => 'SUSPENDED');

-- Resume a suspended stream table
SELECT pgtrickle.resume_stream_table('order_totals');
-- Or via alter_stream_table
SELECT pgtrickle.alter_stream_table('order_totals', status => 'ACTIVE');

Notes: - When query is provided, the function runs the full query rewrite pipeline (view inlining, DISTINCT ON, GROUPING SETS, etc.) and validates the new query before applying changes. - The entire ALTER QUERY operation runs within a single transaction. If any step fails, the stream table is left unchanged. - For same-schema and compatible-schema changes, the storage table OID is preserved — views, policies, and publications referencing the stream table remain valid. - For incompatible schema changes (e.g., changing a column from integer to text), the storage table is rebuilt and the OID changes. A WARNING is emitted. - The stream table is temporarily suspended during query migration to prevent concurrent scheduler refreshes.


pgtrickle.drop_stream_table

Drop a stream table, removing the storage table and all catalog entries.

pgtrickle.drop_stream_table(name text) → void

Parameters:

Parameter Type Description
name text Name of the stream table to drop.

Example:

SELECT pgtrickle.drop_stream_table('order_totals');

Notes: - Drops the underlying storage table with CASCADE. - Removes all catalog entries (metadata, dependencies, refresh history). - Cleans up CDC triggers and change buffer tables for source tables that are no longer tracked by any ST.


pgtrickle.resume_stream_table

Resume a suspended stream table, clearing its consecutive error count and re-enabling automated and manual refreshes.

pgtrickle.resume_stream_table(name text) → void

Parameters:

Parameter Type Description
name text Name of the stream table to resume (schema-qualified or unqualified).

Example:

-- Resume a stream table that was auto-suspended due to repeated errors
SELECT pgtrickle.resume_stream_table('order_totals');

Notes: - Errors if the ST is not in SUSPENDED state. - Resets consecutive_errors to 0 and sets status = 'ACTIVE'. - Emits a resumed event on the pg_trickle_alert NOTIFY channel. - After resuming, the scheduler will include the ST in its next cycle.


pgtrickle.refresh_stream_table

Manually trigger a synchronous refresh of a stream table.

pgtrickle.refresh_stream_table(name text) → void

Parameters:

Parameter Type Description
name text Name of the stream table to refresh.

Example:

SELECT pgtrickle.refresh_stream_table('order_totals');

Notes: - Blocked if the ST is SUSPENDED — use pgtrickle.resume_stream_table(name) first. - Uses an advisory lock to prevent concurrent refreshes of the same ST. - For DIFFERENTIAL mode, generates and applies a delta query. For FULL mode, truncates and reloads. - Records the refresh in pgtrickle.pgt_refresh_history with initiated_by = 'MANUAL'.


Status & Monitoring

Query the state of stream tables, view refresh statistics, and diagnose problems.


pgtrickle.pgt_status

Get the status of all stream tables.

pgtrickle.pgt_status() → SETOF record(
    name                text,
    status              text,
    refresh_mode        text,
    is_populated        bool,
    consecutive_errors  int,
    schedule            text,
    data_timestamp      timestamptz,
    staleness           interval
)

Example:

SELECT * FROM pgtrickle.pgt_status();
name status refresh_mode is_populated consecutive_errors schedule data_timestamp staleness
public.order_totals ACTIVE DIFFERENTIAL true 0 5m 2026-02-21 12:00:00+00 00:02:30

pgtrickle.health_check

Run a set of health checks against the pg_trickle installation and return one row per check.

pgtrickle.health_check() → SETOF record(
    check_name  text,   -- identifier for the check
    severity    text,   -- 'OK', 'WARN', or 'ERROR'
    detail      text    -- human-readable explanation
)

Filter to problems only:

SELECT check_name, severity, detail
FROM pgtrickle.health_check()
WHERE severity != 'OK';

Checks: scheduler_running, error_tables, stale_tables, needs_reinit, consecutive_errors, buffer_growth (> 10 000 pending rows), slot_lag (retained WAL above pg_trickle.slot_lag_warning_threshold_mb, default 100 MB), worker_pool (all worker tokens in use — parallel mode only), job_queue (> 10 jobs queued — parallel mode only).


pgtrickle.refresh_timeline

Return recent refresh records across all stream tables in a single chronological view.

pgtrickle.refresh_timeline(
    max_rows int  DEFAULT 50
) → SETOF record(
    start_time      timestamptz,
    stream_table    text,
    action          text,
    status          text,
    rows_inserted   bigint,
    rows_deleted    bigint,
    duration_ms     float8,
    error_message   text
)

Example:

-- Most recent 20 events across all stream tables:
SELECT start_time, stream_table, action, status, round(duration_ms::numeric,1) AS ms
FROM pgtrickle.refresh_timeline(20);

-- Just failures in the last 100 events:
SELECT * FROM pgtrickle.refresh_timeline(100) WHERE status = 'ERROR';

pgtrickle.st_refresh_stats

Return per-ST refresh statistics aggregated from the refresh history.

pgtrickle.st_refresh_stats() → SETOF record(
    pgt_name                text,
    pgt_schema              text,
    status                 text,
    refresh_mode           text,
    is_populated           bool,
    total_refreshes        bigint,
    successful_refreshes   bigint,
    failed_refreshes       bigint,
    total_rows_inserted    bigint,
    total_rows_deleted     bigint,
    avg_duration_ms        float8,
    last_refresh_action    text,
    last_refresh_status    text,
    last_refresh_at        timestamptz,
    staleness_secs       float8,
    stale           bool
)

Example:

SELECT pgt_name, status, total_refreshes, avg_duration_ms, stale
FROM pgtrickle.st_refresh_stats();

pgtrickle.get_refresh_history

Return refresh history for a specific stream table.

pgtrickle.get_refresh_history(
    name      text,
    max_rows  int  DEFAULT 20
) → SETOF record(
    refresh_id       bigint,
    data_timestamp   timestamptz,
    start_time       timestamptz,
    end_time         timestamptz,
    action           text,
    status           text,
    rows_inserted    bigint,
    rows_deleted     bigint,
    duration_ms      float8,
    error_message    text
)

Example:

SELECT action, status, rows_inserted, duration_ms
FROM pgtrickle.get_refresh_history('order_totals', 5);

pgtrickle.get_staleness

Get the current staleness in seconds for a specific stream table.

pgtrickle.get_staleness(name text) → float8

Returns NULL if the ST has never been refreshed.

Example:

SELECT pgtrickle.get_staleness('order_totals');
-- Returns: 12.345  (seconds since last refresh)

CDC Diagnostics

Inspect CDC pipeline health, replication slots, change buffers, and trigger coverage.


pgtrickle.slot_health

Check replication slot health for all tracked CDC slots.

pgtrickle.slot_health() → SETOF record(
    slot_name          text,
    source_relid       bigint,
    active             bool,
    retained_wal_bytes bigint,
    wal_status         text
)

Example:

SELECT * FROM pgtrickle.slot_health();
slot_name source_relid active retained_wal_bytes wal_status
pg_trickle_slot_16384 16384 false 1048576 reserved

pgtrickle.check_cdc_health

Check CDC health for all tracked source tables. Returns per-source health status including the current CDC mode, replication slot details, estimated lag, and any alerts.

The alert column uses the critical threshold configured by pg_trickle.slot_lag_critical_threshold_mb (default 1024 MB).

pgtrickle.check_cdc_health() → SETOF record(
    source_relid   bigint,
    source_table   text,
    cdc_mode       text,
    slot_name      text,
    lag_bytes      bigint,
    confirmed_lsn  text,
    alert          text
)

Columns:

Column Type Description
source_relid bigint OID of the tracked source table
source_table text Resolved name of the source table (e.g., public.orders)
cdc_mode text Current CDC mode: TRIGGER, TRANSITIONING, or WAL
slot_name text Replication slot name (NULL for TRIGGER mode)
lag_bytes bigint Replication slot lag in bytes (NULL for TRIGGER mode)
confirmed_lsn text Last confirmed WAL position (NULL for TRIGGER mode)
alert text Alert message if unhealthy (e.g., slot_lag_exceeds_threshold, replication_slot_missing)

Example:

SELECT * FROM pgtrickle.check_cdc_health();
source_relid source_table cdc_mode slot_name lag_bytes confirmed_lsn alert
16384 public.orders TRIGGER
16390 public.events WAL pg_trickle_slot_16390 524288 0/1A8B000

pgtrickle.change_buffer_sizes

Show pending change counts and estimated on-disk sizes for all CDC-tracked source tables.

Returns one row per (stream_table, source_table) pair.

pgtrickle.change_buffer_sizes() → SETOF record(
    stream_table  text,     -- qualified stream table name
    source_table  text,     -- qualified source table name
    source_oid    bigint,
    cdc_mode      text,     -- 'trigger', 'wal', or 'transitioning'
    pending_rows  bigint,   -- rows in buffer not yet consumed
    buffer_bytes  bigint    -- estimated buffer table size in bytes
)

Example:

SELECT * FROM pgtrickle.change_buffer_sizes()
ORDER BY pending_rows DESC;

Useful for spotting a source table whose CDC buffer is growing unexpectedly (which may indicate a stalled differential refresh or a high-write source that has outpaced the schedule).


pgtrickle.worker_pool_status

Snapshot of the parallel refresh worker pool. Returns a single row.

pgtrickle.worker_pool_status() → SETOF record(
    active_workers  int,   -- workers currently executing refresh jobs
    max_workers     int,   -- cluster-wide worker budget (GUC)
    per_db_cap      int,   -- per-database dispatch cap (GUC)
    parallel_mode   text   -- current parallel_refresh_mode value
)

Example:

SELECT * FROM pgtrickle.worker_pool_status();

Returns 0 active workers when parallel_refresh_mode = 'off'.


pgtrickle.parallel_job_status

Active and recently completed scheduler jobs from the pgt_scheduler_jobs table. Shows jobs that are currently queued or running, plus jobs that finished within the last max_age_seconds (default 300).

pgtrickle.parallel_job_status(
    max_age_seconds int  DEFAULT 300
) → SETOF record(
    job_id         bigint,
    unit_key       text,        -- stable unit identifier (s:42, a:1,2, etc.)
    unit_kind      text,        -- 'singleton', 'atomic_group', 'immediate_closure'
    status         text,        -- 'QUEUED', 'RUNNING', 'SUCCEEDED', etc.
    member_count   int,
    attempt_no     int,
    scheduler_pid  int,
    worker_pid     int,         -- NULL if not yet claimed
    enqueued_at    timestamptz,
    started_at     timestamptz, -- NULL if still queued
    finished_at    timestamptz, -- NULL if not finished
    duration_ms    float8       -- NULL if not finished
)

Example — show running and recently failed jobs:

SELECT job_id, unit_key, status, duration_ms
FROM pgtrickle.parallel_job_status(60)
WHERE status NOT IN ('SUCCEEDED');

pgtrickle.trigger_inventory

List all CDC triggers that pg_trickle should have installed, and verify each one exists and is enabled in pg_catalog.

pgtrickle.trigger_inventory() → SETOF record(
    source_table  text,    -- qualified source table name
    source_oid    bigint,
    trigger_name  text,    -- expected trigger name
    trigger_type  text,    -- 'DML' or 'TRUNCATE'
    present       bool,    -- trigger exists in pg_catalog
    enabled       bool     -- trigger is not disabled
)

A present = false row means change capture is broken for that source.

Example:

-- Show only missing or disabled triggers:
SELECT source_table, trigger_type, trigger_name
FROM pgtrickle.trigger_inventory()
WHERE NOT present OR NOT enabled;

Dependency & Inspection

Visualize dependencies, understand query plans, and audit source table relationships.


pgtrickle.dependency_tree

Render all stream table dependencies as an indented ASCII tree.

pgtrickle.dependency_tree() → SETOF record(
    tree_line    text,    -- indented visual line (├──, └──, │ characters)
    node         text,    -- qualified name (schema.table)
    node_type    text,    -- 'stream_table' or 'source_table'
    depth        int,
    status       text,    -- NULL for source_table nodes
    refresh_mode text     -- NULL for source_table nodes
)

Roots (stream tables with no stream-table parents) appear at depth 0. Each dependent is indented beneath its parent. Plain source tables are rendered as leaf nodes tagged [src].

Example:

SELECT tree_line, status, refresh_mode
FROM pgtrickle.dependency_tree();
tree_line                               status   refresh_mode
----------------------------------------+---------+--------------
report_summary                          ACTIVE   DIFFERENTIAL
├── orders_by_region                    ACTIVE   DIFFERENTIAL
│   ├── public.orders [src]
│   └── public.customers [src]
└── revenue_totals                      ACTIVE   DIFFERENTIAL
    └── public.orders [src]

pgtrickle.diamond_groups

List all detected diamond dependency groups and their members.

When stream tables form diamond-shaped dependency graphs (multiple paths converge at a single fan-in node), the scheduler groups them for coordinated refresh. This function exposes those groups for monitoring and debugging.

pgtrickle.diamond_groups() → SETOF record(
    group_id        int4,
    member_name     text,
    member_schema   text,
    is_convergence  bool,
    epoch           int8,
    schedule_policy text
)

Return columns:

Column Type Description
group_id int4 Numeric identifier for the consistency group (1-based).
member_name text Name of the stream table in this group.
member_schema text Schema of the stream table.
is_convergence bool true if this member is a convergence (fan-in) node where multiple paths meet.
epoch int8 Group epoch counter — advances on each successful atomic refresh of the group.
schedule_policy text Effective schedule policy for this group ('fastest' or 'slowest'). Computed from convergence node settings with strictest-wins.

Example:

SELECT * FROM pgtrickle.diamond_groups();
group_id member_name member_schema is_convergence epoch schedule_policy
1 st_b public false 0 fastest
1 st_c public false 0 fastest
1 st_d public true 0 fastest

Notes: - Singleton stream tables (not part of any diamond) are omitted. - The DAG is rebuilt on each call from the catalog — results reflect the current dependency graph. - Groups are only relevant when diamond_consistency = 'atomic' is set on the convergence node or globally via the pg_trickle.diamond_consistency GUC.


pgtrickle.pgt_scc_status

List all cyclic strongly connected components (SCCs) and their convergence status.

When stream tables form circular dependencies (with pg_trickle.allow_circular = true), they are grouped into SCCs and iterated to a fixed point. This function exposes those groups for monitoring and debugging.

pgtrickle.pgt_scc_status() → SETOF record(
    scc_id              int4,
    member_count        int4,
    members             text[],
    last_iterations     int4,
    last_converged_at   timestamptz
)

Return columns:

Column Type Description
scc_id int4 SCC group identifier (1-based).
member_count int4 Number of stream tables in this SCC.
members text[] Array of schema.name for each member.
last_iterations int4 Number of fixpoint iterations in the last convergence (NULL if never iterated).
last_converged_at timestamptz Timestamp of the most recent refresh among SCC members (NULL if never refreshed).

Example:

SELECT * FROM pgtrickle.pgt_scc_status();
scc_id member_count members last_iterations last_converged_at
1 2 {public.reach_a,public.reach_b} 3 2026-03-15 12:00:00+00

Notes: - Only cyclic SCCs (with scc_id IS NOT NULL) are returned. Acyclic stream tables are omitted. - last_iterations reflects the maximum last_fixpoint_iterations across SCC members. - Results are queried from the catalog on each call.


pgtrickle.explain_st

Explain the DVM plan for a stream table’s defining query.

pgtrickle.explain_st(name text) → SETOF record(
    property  text,
    value     text
)

Example:

SELECT * FROM pgtrickle.explain_st('order_totals');
property value
Defining Query SELECT region, SUM(amount) …
Refresh Mode DIFFERENTIAL
Operator Tree Aggregate → Scan(orders)
Source Tables orders (oid=16384)
DVM Supported Yes

pgtrickle.list_sources

List the source tables that a stream table depends on.

pgtrickle.list_sources(name text) → SETOF record(
    source_table   text,         -- qualified source table name
    source_oid     bigint,
    source_type    text,         -- 'table', 'stream_table', etc.
    cdc_mode       text,         -- 'trigger', 'wal', or 'transitioning'
    columns_used   text          -- column-level dependency info (if available)
)

Example:

SELECT * FROM pgtrickle.list_sources('order_totals');

Returns the tables tracked by CDC for the given stream table, along with how they are being tracked. Useful when diagnosing why a stream table is not refreshing or to audit which source tables are being trigger-tracked.


Utilities

Low-level hashing functions used internally for row identity.


pgtrickle.pg_trickle_hash

Compute a 64-bit xxHash row ID from a text value.

pgtrickle.pg_trickle_hash(input text) → bigint

Marked IMMUTABLE, PARALLEL SAFE.

Example:

SELECT pgtrickle.pg_trickle_hash('some_key');
-- Returns: 1234567890123456789

pgtrickle.pg_trickle_hash_multi

Compute a row ID by hashing multiple text values (composite keys).

pgtrickle.pg_trickle_hash_multi(inputs text[]) → bigint

Marked IMMUTABLE, PARALLEL SAFE. Uses \x1E (record separator) between values and \x00NULL\x00 for NULL entries.

Example:

SELECT pgtrickle.pg_trickle_hash_multi(ARRAY['key1', 'key2']);

Expression Support

pgtrickle’s DVM parser supports a wide range of SQL expressions in defining queries. All expressions work in both FULL and DIFFERENTIAL modes.

Conditional Expressions

Expression Example Notes
CASE WHEN … THEN … ELSE … END CASE WHEN amount > 100 THEN 'high' ELSE 'low' END Searched CASE
CASE <expr> WHEN … THEN … END CASE status WHEN 1 THEN 'active' WHEN 2 THEN 'inactive' END Simple CASE
COALESCE(a, b, …) COALESCE(phone, email, 'unknown') Returns first non-NULL argument
NULLIF(a, b) NULLIF(divisor, 0) Returns NULL if a = b
GREATEST(a, b, …) GREATEST(score1, score2, score3) Returns the largest value
LEAST(a, b, …) LEAST(price, max_price) Returns the smallest value

Comparison Operators

Expression Example Notes
IN (list) category IN ('A', 'B', 'C') Also supports NOT IN
BETWEEN a AND b price BETWEEN 10 AND 100 Also supports NOT BETWEEN
IS DISTINCT FROM a IS DISTINCT FROM b NULL-safe inequality
IS NOT DISTINCT FROM a IS NOT DISTINCT FROM b NULL-safe equality
SIMILAR TO name SIMILAR TO '%pattern%' SQL regex matching
op ANY(array) id = ANY(ARRAY[1,2,3]) Array comparison
op ALL(array) score > ALL(ARRAY[50,60]) Array comparison

Boolean Tests

Expression Example
IS TRUE active IS TRUE
IS NOT TRUE flag IS NOT TRUE
IS FALSE completed IS FALSE
IS NOT FALSE valid IS NOT FALSE
IS UNKNOWN result IS UNKNOWN
IS NOT UNKNOWN flag IS NOT UNKNOWN

SQL Value Functions

Function Description
CURRENT_DATE Current date
CURRENT_TIME Current time with time zone
CURRENT_TIMESTAMP Current date and time with time zone
LOCALTIME Current time without time zone
LOCALTIMESTAMP Current date and time without time zone
CURRENT_ROLE Current role name
CURRENT_USER Current user name
SESSION_USER Session user name
CURRENT_CATALOG Current database name
CURRENT_SCHEMA Current schema name

Array and Row Expressions

Expression Example Notes
ARRAY[…] ARRAY[1, 2, 3] Array constructor
ROW(…) ROW(a, b, c) Row constructor
Array subscript arr[1] Array element access
Field access (rec).field Composite type field access
Star indirection (data).* Expand all fields

Subquery Expressions

Subqueries are supported in the WHERE clause and SELECT list. They are parsed into dedicated DVM operators with specialized delta computation for incremental maintenance.

Expression Example DVM Operator
EXISTS (subquery) WHERE EXISTS (SELECT 1 FROM orders WHERE orders.cid = c.id) Semi-Join
NOT EXISTS (subquery) WHERE NOT EXISTS (SELECT 1 FROM orders WHERE orders.cid = c.id) Anti-Join
IN (subquery) WHERE id IN (SELECT product_id FROM order_items) Semi-Join (rewritten as equality)
NOT IN (subquery) WHERE id NOT IN (SELECT product_id FROM order_items) Anti-Join
ALL (subquery) WHERE price > ALL (SELECT price FROM competitors) Anti-Join (NULL-safe)
Scalar subquery (SELECT) SELECT (SELECT max(price) FROM products) AS max_p Scalar Subquery

Notes: - EXISTS and IN (subquery) in the WHERE clause are transformed into semi-join operators. NOT EXISTS and NOT IN (subquery) become anti-join operators. - Multiple subqueries in the same WHERE clause are supported when combined with AND. Subqueries combined with OR are also supported — they are automatically rewritten into UNION of separate filtered queries. - Scalar subqueries in the SELECT list are supported as long as they return exactly one row and one column. - ALL (subquery) is supported — see the worked example below.

ALL (subquery) — Worked Example

ALL (subquery) tests whether a comparison holds against every row returned by the subquery. pg_trickle rewrites it to a NULL-safe anti-join so it can be maintained incrementally.

Comparison operators supported: >, >=, <, <=, =, <>

Example — products cheaper than all competitors:

-- Source tables
CREATE TABLE products (
    id    INT PRIMARY KEY,
    name  TEXT,
    price NUMERIC
);
CREATE TABLE competitor_prices (
    id          INT PRIMARY KEY,
    product_id  INT,
    price       NUMERIC
);

-- Sample data
INSERT INTO products VALUES (1, 'Widget', 9.99), (2, 'Gadget', 24.99), (3, 'Gizmo', 14.99);
INSERT INTO competitor_prices VALUES (1, 1, 12.99), (2, 1, 11.50), (3, 2, 19.99), (4, 3, 14.99);

-- Stream table: find products priced below ALL competitor prices
SELECT pgtrickle.create_stream_table(
    name  => 'cheapest_products',
    query => $$
        SELECT p.id, p.name, p.price
        FROM products p
        WHERE p.price < ALL (
            SELECT cp.price
            FROM competitor_prices cp
            WHERE cp.product_id = p.id
        )
    $$,
    schedule => '1m'
);

Result: Widget (9.99 < all of [12.99, 11.50]) is included. Gadget (24.99 ≮ 19.99) is excluded. Gizmo (14.99 ≮ 14.99) is excluded.

How pg_trickle handles it internally:

  1. WHERE price < ALL (SELECT ...) is parsed into an anti-join with a NULL-safe condition.
  2. The condition NOT (x op col) is wrapped as (col IS NULL OR NOT (x op col)) to correctly handle NULL values in the subquery — if any subquery row is NULL, the ALL comparison fails (standard SQL semantics).
  3. The anti-join uses the same incremental delta computation as NOT EXISTS, so changes to either products or competitor_prices are propagated efficiently.

Other common patterns:

-- Employees whose salary meets or exceeds all department maximums
WHERE salary >= ALL (SELECT max_salary FROM department_caps)

-- Orders with ratings better than all thresholds
WHERE rating > ALL (SELECT min_rating FROM quality_thresholds)

Auto-Rewrite Pipeline

pg_trickle transparently rewrites certain SQL constructs before parsing. These rewrites are applied automatically and require no user action:

Order Trigger Rewrite
#0 View references in FROM Inline view body as subquery
#1 DISTINCT ON (expr) Convert to ROW_NUMBER() OVER (PARTITION BY expr ORDER BY ...) = 1 subquery
#2 GROUPING SETS / CUBE / ROLLUP Decompose into UNION ALL of separate GROUP BY queries
#3 Scalar subquery in WHERE Convert to CROSS JOIN with inline view
#4 Correlated scalar subquery in SELECT Convert to LEFT JOIN with grouped inline view
#5 EXISTS/IN inside OR Split into UNION of separate filtered queries
#6 Multiple PARTITION BY clauses Split into joined subqueries, one per distinct partitioning
#7 Window functions inside expressions Lift to inner subquery with synthetic __pgt_wf_N columns (see below)

Window Functions in Expressions (Auto-Rewrite)

Window functions nested inside expressions (e.g., CASE WHEN ROW_NUMBER() ..., ABS(RANK() OVER (...) - 5)) are automatically rewritten. pg_trickle lifts each window function call into a synthetic column in an inner subquery, then applies the original expression in the outer SELECT.

This rewrite is transparent — you write your query naturally and pg_trickle handles it:

Your query:

SELECT
    id,
    name,
    CASE WHEN ROW_NUMBER() OVER (PARTITION BY dept ORDER BY salary DESC) = 1
         THEN 'top earner'
         ELSE 'other'
    END AS rank_label
FROM employees

What pg_trickle generates internally:

SELECT
    "__pgt_wf_inner".id,
    "__pgt_wf_inner".name,
    CASE WHEN "__pgt_wf_inner"."__pgt_wf_1" = 1
         THEN 'top earner'
         ELSE 'other'
    END AS "rank_label"
FROM (
    SELECT *, ROW_NUMBER() OVER (PARTITION BY dept ORDER BY salary DESC) AS "__pgt_wf_1"
    FROM employees
) "__pgt_wf_inner"

The inner subquery produces the window function result as a plain column (__pgt_wf_1), which the DVM engine can maintain incrementally using its existing window function support. The outer expression is then a simple column reference.

More examples:

-- Arithmetic with window functions
SELECT id, ABS(RANK() OVER (ORDER BY score) - 5) AS adjusted_rank
FROM players

-- COALESCE with window function
SELECT id, COALESCE(LAG(value) OVER (ORDER BY ts), 0) AS prev_value
FROM sensor_readings

-- Multiple window functions in expressions
SELECT id,
       ROW_NUMBER() OVER (ORDER BY created_at) * 100 AS seq,
       SUM(amount) OVER (ORDER BY created_at) / COUNT(*) OVER (ORDER BY created_at) AS running_avg
FROM transactions

All of these are handled automatically — each distinct window function call is extracted to its own __pgt_wf_N synthetic column.

HAVING Clause

HAVING is fully supported. The filter predicate is applied on top of the aggregate delta computation — groups that pass the HAVING condition are included in the stream table.

SELECT pgtrickle.create_stream_table(
    name     => 'big_departments',
    query    => 'SELECT department, COUNT(*) AS cnt FROM employees GROUP BY department HAVING COUNT(*) > 10',
    schedule => '1m'
);

Tables Without Primary Keys (Keyless Tables)

Tables without a primary key can be used as sources. pg_trickle generates a content-based row identity by hashing all column values using pg_trickle_hash_multi(). This allows DIFFERENTIAL mode to work, though at the cost of being unable to distinguish truly duplicate rows (rows with identical values in all columns).

-- No primary key — pg_trickle uses content hashing for row identity
CREATE TABLE events (ts TIMESTAMPTZ, payload JSONB);
SELECT pgtrickle.create_stream_table(
    name     => 'event_summary',
    query    => 'SELECT payload->>''type'' AS event_type, COUNT(*) FROM events GROUP BY 1',
    schedule => '1m'
);

Known Limitation — Duplicate Rows in Keyless Tables (G7.1)

When a keyless table contains exact duplicate rows (identical values in every column), content-based hashing produces the same __pgt_row_id for each copy. Consequences:

  • INSERT of a duplicate row may appear as a no-op (the hash already exists in the stream table).
  • DELETE of one copy may delete all copies (the MERGE matches on __pgt_row_id, hitting every duplicate).
  • Aggregate counts over keyless tables with duplicates may drift from the true query result.

Recommendation: Add a PRIMARY KEY or at least a UNIQUE constraint to source tables used in DIFFERENTIAL mode. This eliminates the ambiguity entirely. If duplicates are expected and correctness matters, use FULL refresh mode, which always recomputes from scratch.

Volatile Function Detection

pg_trickle checks all functions and operators in the defining query against pg_proc.provolatile:

  • VOLATILE functions (e.g., random(), clock_timestamp(), gen_random_uuid()) are rejected in DIFFERENTIAL and IMMEDIATE modes because they produce different results on each evaluation, breaking delta correctness.
  • VOLATILE operators — custom operators backed by volatile functions are also detected. The check resolves the operator’s implementation function via pg_operator.oprcode and checks its volatility in pg_proc.
  • STABLE functions (e.g., now(), current_timestamp, current_setting()) produce a warning in DIFFERENTIAL and IMMEDIATE modes — they are consistent within a single refresh but may differ between refreshes.
  • IMMUTABLE functions are always safe and produce no warnings.

FULL mode accepts all volatility classes since it re-evaluates the entire query each time.

COLLATE Expressions

COLLATE clauses on expressions are supported:

SELECT pgtrickle.create_stream_table(
    name     => 'sorted_names',
    query    => 'SELECT name COLLATE "C" AS c_name FROM users',
    schedule => '1m'
);

IS JSON Predicate (PostgreSQL 16+)

The IS JSON predicate validates whether a value is valid JSON. All variants are supported:

-- Filter rows with valid JSON
SELECT pgtrickle.create_stream_table(
    name     => 'valid_json_events',
    query    => 'SELECT id, payload FROM events WHERE payload::text IS JSON',
    schedule => '1m'
);

-- Type-specific checks
SELECT pgtrickle.create_stream_table(
    name         => 'json_objects_only',
    query        => 'SELECT id, data IS JSON OBJECT AS is_obj,
          data IS JSON ARRAY AS is_arr,
          data IS JSON SCALAR AS is_scalar
   FROM json_data',
    schedule     => '1m',
    refresh_mode => 'FULL'
);

Supported variants: IS JSON, IS JSON OBJECT, IS JSON ARRAY, IS JSON SCALAR, IS NOT JSON (all forms), WITH UNIQUE KEYS.

SQL/JSON Constructors (PostgreSQL 16+)

SQL-standard JSON constructor functions are supported in both FULL and DIFFERENTIAL modes:

-- JSON_OBJECT: construct a JSON object from key-value pairs
SELECT pgtrickle.create_stream_table(
    name     => 'user_json',
    query    => 'SELECT id, JSON_OBJECT(''name'' : name, ''age'' : age) AS data FROM users',
    schedule => '1m'
);

-- JSON_ARRAY: construct a JSON array from values
SELECT pgtrickle.create_stream_table(
    name         => 'value_arrays',
    query        => 'SELECT id, JSON_ARRAY(a, b, c) AS arr FROM measurements',
    schedule     => '1m',
    refresh_mode => 'FULL'
);

-- JSON(): parse a text value as JSON
-- JSON_SCALAR(): wrap a scalar value as JSON
-- JSON_SERIALIZE(): serialize a JSON value to text

Note: JSON_ARRAYAGG() and JSON_OBJECTAGG() are SQL-standard aggregate functions fully recognized by the DVM engine. In DIFFERENTIAL mode, they use the group-rescan strategy (affected groups are re-aggregated from source data). The full deparsed SQL is preserved to handle the special key: value, ABSENT ON NULL, ORDER BY, and RETURNING clause syntax.

JSON_TABLE (PostgreSQL 17+)

JSON_TABLE() generates a relational table from JSON data. It is supported in the FROM clause in both FULL and DIFFERENTIAL modes. Internally, it is modeled as a LateralFunction.

-- Extract structured data from a JSON column
SELECT pgtrickle.create_stream_table(
    name     => 'user_phones',
    query    => $$SELECT u.id, j.phone_type, j.phone_number
    FROM users u,
         JSON_TABLE(u.contact_info, '$.phones[*]'
           COLUMNS (
             phone_type TEXT PATH '$.type',
             phone_number TEXT PATH '$.number'
           )
         ) AS j$$,
    schedule => '1m'
);

Supported column types: - Regular columnsname TYPE PATH '$.path' (with optional ON ERROR/ON EMPTY behaviors) - EXISTS columnsname TYPE EXISTS PATH '$.path' - Formatted columnsname TYPE FORMAT JSON PATH '$.path' - Nested columnsNESTED PATH '$.path' COLUMNS (...)

The PASSING clause is also supported for passing named variables to path expressions.

Unsupported Expression Types

The following are rejected with clear error messages rather than producing broken SQL:

Expression Error Behavior Suggested Rewrite
TABLESAMPLE Rejected — stream tables materialize the complete result set Use WHERE random() < 0.1 if sampling is needed
FOR UPDATE / FOR SHARE Rejected — stream tables do not support row-level locking Remove the locking clause
Unknown node types Rejected with type information

Note: Window functions inside expressions (e.g., CASE WHEN ROW_NUMBER() OVER (...) ...) were unsupported in earlier versions but are now automatically rewritten — see Auto-Rewrite Pipeline § Window Functions in Expressions.


Restrictions & Interoperability

Stream tables are standard PostgreSQL heap tables stored in the pgtrickle schema with an additional __pgt_row_id BIGINT PRIMARY KEY column managed by the refresh engine. This section describes what you can and cannot do with them.

Referencing Other Stream Tables

Stream tables can reference other stream tables in their defining query. This creates a dependency edge in the internal DAG, and the scheduler refreshes upstream tables before downstream ones. By default, cycles are detected and rejected at creation time.

When pg_trickle.allow_circular = true, circular dependencies are allowed for stream tables that use DIFFERENTIAL refresh mode and have monotone defining queries (no aggregates, EXCEPT, window functions, or NOT EXISTS/NOT IN). Cycle members are assigned an scc_id and the scheduler iterates them to a fixed point. Non-monotone operators are rejected because they prevent convergence.

-- ST1 reads from a base table
SELECT pgtrickle.create_stream_table(
    name     => 'order_totals',
    query    => 'SELECT customer_id, SUM(amount) AS total FROM orders GROUP BY customer_id',
    schedule => '1m'
);

-- ST2 reads from ST1
SELECT pgtrickle.create_stream_table(
    name     => 'big_customers',
    query    => 'SELECT customer_id, total FROM pgtrickle.order_totals WHERE total > 1000',
    schedule => '1m'
);

Views as Sources in Defining Queries

PostgreSQL views can be used as source tables in a stream table’s defining query. Views are automatically inlined — replaced with their underlying SELECT definition as subqueries — so CDC triggers land on the actual base tables.

CREATE VIEW active_orders AS
  SELECT * FROM orders WHERE status = 'active';

-- This works (views are auto-inlined):
SELECT pgtrickle.create_stream_table(
    name     => 'order_summary',
    query    => 'SELECT customer_id, COUNT(*) FROM active_orders GROUP BY customer_id',
    schedule => '1m'
);
-- Internally, 'active_orders' is replaced with:
--   (SELECT ... FROM orders WHERE status = 'active') AS active_orders

Nested views (view → view → table) are fully expanded via a fixpoint loop. Column-renaming views (CREATE VIEW v(a, b) AS ...) work correctly — pg_get_viewdef() produces the proper column aliases.

When a view is inlined, the user’s original SQL is stored in the original_query catalog column for reinit and introspection. The defining_query column contains the expanded (post-inlining) form.

DDL hooks: CREATE OR REPLACE VIEW on a view that was inlined into a stream table marks that ST for reinit. DROP VIEW sets affected STs to ERROR status.

Materialized views are rejected in DIFFERENTIAL mode — their stale-snapshot semantics prevent CDC triggers from tracking changes. Use the underlying query directly, or switch to FULL mode. In FULL mode, materialized views are allowed (no CDC needed).

Foreign tables are rejected in DIFFERENTIAL mode — row-level triggers cannot be created on foreign tables. Use FULL mode instead.

Partitioned Tables as Sources

Partitioned tables are fully supported as source tables in both FULL and DIFFERENTIAL modes. CDC triggers are installed on the partitioned parent table, and PostgreSQL 13+ ensures the trigger fires for all DML routed to child partitions. The change buffer uses the parent table’s OID (pgtrickle_changes.changes_<parent_oid>).

CREATE TABLE orders (
    id INT, region TEXT, amount NUMERIC
) PARTITION BY LIST (region);
CREATE TABLE orders_us PARTITION OF orders FOR VALUES IN ('US');
CREATE TABLE orders_eu PARTITION OF orders FOR VALUES IN ('EU');

-- Works — inserts into any partition are captured:
SELECT pgtrickle.create_stream_table(
    name     => 'order_summary',
    query    => 'SELECT region, SUM(amount) FROM orders GROUP BY region',
    schedule => '1m'
);

ATTACH PARTITION detection: When a new partition is attached to a tracked source table via ALTER TABLE parent ATTACH PARTITION child ..., pg_trickle’s DDL event trigger detects the change in partition structure and automatically marks affected stream tables for reinitialize. This ensures pre-existing rows in the newly attached partition are included on the next refresh. DETACH PARTITION is also detected and triggers reinitialization.

WAL mode: When using WAL-based CDC (cdc_mode = 'wal'), publications for partitioned source tables are created with publish_via_partition_root = true. This ensures changes from child partitions are published under the parent table’s identity, matching trigger-mode CDC behavior.

Note: pg_trickle targets PostgreSQL 18. On PostgreSQL 12 or earlier (not supported), parent triggers do not fire for partition-routed rows, which would cause silent data loss.

Foreign Tables as Sources

Foreign tables (via postgres_fdw or other FDWs) can be used as stream table sources with these constraints:

CDC Method Supported? Why
Trigger-based ❌ No Foreign tables don’t support row-level triggers
WAL-based ❌ No Foreign tables don’t generate local WAL entries
FULL refresh ✅ Yes Re-executes the remote query each cycle
Polling-based ✅ Yes When pg_trickle.foreign_table_polling = on
-- Foreign table source — FULL refresh only
SELECT pgtrickle.create_stream_table(
    name         => 'remote_summary',
    query        => 'SELECT region, SUM(amount) FROM remote_orders GROUP BY region',
    schedule     => '5m',
    refresh_mode => 'FULL'
);

When pg_trickle detects a foreign table source, it emits an INFO message explaining the constraints. If you attempt to use DIFFERENTIAL mode without polling enabled, the creation will succeed but the refresh falls back to FULL.

Polling-based CDC creates a local snapshot table and computes EXCEPT ALL differences on each refresh. Enable with:

SET pg_trickle.foreign_table_polling = on;

For a complete step-by-step setup guide, see the Foreign Table Sources tutorial.

IMMEDIATE Mode Query Restrictions

The 'IMMEDIATE' refresh mode supports nearly all SQL constructs supported by 'DIFFERENTIAL' and 'FULL' modes. Queries are validated at stream table creation and when switching to IMMEDIATE mode via alter_stream_table.

Supported in IMMEDIATE mode:

  • Simple SELECT ... FROM table scans, filters, projections
  • JOIN (INNER, LEFT, FULL OUTER)
  • GROUP BY with standard aggregates (COUNT, SUM, AVG, MIN, MAX, etc.)
  • DISTINCT
  • Non-recursive WITH (CTEs)
  • UNION ALL, INTERSECT, EXCEPT
  • EXISTS / IN subqueries (SemiJoin, AntiJoin)
  • Subqueries in FROM
  • Window functions (ROW_NUMBER, RANK, DENSE_RANK, etc.)
  • LATERAL subqueries
  • LATERAL set-returning functions (unnest(), jsonb_array_elements(), etc.)
  • Scalar subqueries in SELECT
  • Cascading IMMEDIATE stream tables (ST depending on another IMMEDIATE ST)
  • Recursive CTEs (WITH RECURSIVE) — uses semi-naive evaluation (INSERT-only) or Delete-and-Rederive (DELETE/UPDATE); bounded by pg_trickle.ivm_recursive_max_depth (default 100) to guard against infinite loops from cyclic data

Not yet supported in IMMEDIATE mode:

None — all constructs that work in 'DIFFERENTIAL' mode are now also available in 'IMMEDIATE' mode.

Notes on WITH RECURSIVE in IMMEDIATE mode:

  • A __pgt_depth counter is injected into the generated semi-naive SQL. Propagation stops when the counter reaches ivm_recursive_max_depth (default 100). Raise this GUC for deeper hierarchies or set it to 0 to disable the guard.
  • A WARNING is emitted at stream table creation time reminding operators to monitor for stack depth limit exceeded errors on very deep hierarchies.
  • Non-linear recursion (multiple self-references) is rejected — PostgreSQL itself enforces this restriction.

Attempting to create a stream table with an unsupported construct produces a clear error message.

Logical Replication Targets

Tables that receive data via logical replication require special consideration. Changes arriving via replication do not fire normal row-level triggers, which means CDC triggers will miss those changes.

pg_trickle emits a WARNING at stream table creation time if any source table is detected as a logical replication target (via pg_subscription_rel).

Workarounds: - Use cdc_mode = 'wal' for WAL-based CDC that captures all changes regardless of origin. - Use FULL refresh mode, which recomputes entirely from the current table state. - Set a frequent refresh schedule with FULL mode to limit staleness.

Views on Stream Tables

PostgreSQL views can reference stream tables. The view reflects the data as of the most recent refresh.

CREATE VIEW top_customers AS
SELECT customer_id, total
FROM pgtrickle.order_totals
WHERE total > 500
ORDER BY total DESC;

Materialized Views on Stream Tables

Materialized views can reference stream tables, though this is typically redundant (both are physical snapshots of a query). The materialized view requires its own REFRESH MATERIALIZED VIEW — it does not auto-refresh when the stream table refreshes.

Logical Replication of Stream Tables

Stream tables can be published for logical replication like any ordinary table:

-- On publisher
CREATE PUBLICATION my_pub FOR TABLE pgtrickle.order_totals;

-- On subscriber
CREATE SUBSCRIPTION my_sub
  CONNECTION 'host=... dbname=...'
  PUBLICATION my_pub;

Caveats: - The __pgt_row_id column is replicated (it is the primary key), which is an internal implementation detail. - The subscriber receives materialized data, not the defining query. Refreshes on the publisher propagate as normal DML via logical replication. - Do not install pg_trickle on the subscriber and attempt to refresh the replicated table — it will have no CDC triggers or catalog entries. - The internal change buffer tables (pgtrickle_changes.changes_<oid>) and catalog tables are not published by default; subscribers only receive the final output.

Known Delta Computation Limitations

The following edge cases produce incorrect delta results in DIFFERENTIAL mode under specific data mutation patterns. They have no effect on FULL mode.

JOIN Key Column Change + Simultaneous Right-Side Delete

When a row’s join key column is updated in the same refresh cycle as the joined-side row is deleted, the delta query may fail to emit the required DELETE from the stream table:

-- Stream table joining orders with customers
SELECT pgtrickle.create_stream_table(
    name     => 'order_details',
    query    => 'SELECT o.id, c.name FROM orders o JOIN customers c ON o.cust_id = c.id',
    schedule => '1m'
);

-- Scenario that exposes the limitation:
-- In the same transaction (or same refresh interval):
UPDATE orders SET cust_id = 5 WHERE cust_id = 3;  -- key change
DELETE FROM customers WHERE id = 3;               -- old join partner deleted
-- The delta for the now-stale (orders.cust_id=3, customers.id=3) join result
-- may not be emitted as a DELETE, leaving a stale row in the stream table
-- until the next full refresh cycle.

Root cause: The JOIN delta query reads current_right (customers) after all changes are applied. When customer 3 is deleted before the delta runs, the DELETE half of the join cannot find its join partner and is silently dropped.

Mitigations: - Adaptive FULL fallback (default): when the scheduler detects a high change volume, it switches to a full recompute, which will correct any stale rows. The threshold is configurable via pg_trickle.adaptive_full_threshold. - Avoid co-locating key-changing UPDATEs and DELETEs in the same refresh interval. Stagger changes across multiple refresh cycles. - FULL mode for stream tables where join key changes and right-side deletes are expected to co-occur frequently.

CUBE/ROLLUP Expansion Limit

CUBE(a, b, c...n) on N columns generates $2N$ grouping set branches (a UNION ALL of N queries). pg_trickle rejects CUBE/ROLLUP that would produce more than 64 branches to prevent runaway memory usage during query generation. Use explicit GROUPING SETS(...) instead:

-- Rejected: CUBE(a, b, c, d, e, f, g) would generate 128 branches
-- Use instead:
SELECT pgtrickle.create_stream_table(
    name     => 'multi_dim',
    query    => 'SELECT a, b, c, SUM(v) FROM t
   GROUP BY GROUPING SETS ((a, b, c), (a, b), (a), ())',
    schedule => '5m'
);

What Is NOT Allowed

Operation Restriction Reason
Direct DML (INSERT, UPDATE, DELETE) ❌ Not supported Stream table contents are managed exclusively by the refresh engine.
Direct DDL (ALTER TABLE) ❌ Not supported Use pgtrickle.alter_stream_table() to change the defining query or schedule.
Foreign keys referencing or from a stream table ❌ Not supported The refresh engine performs bulk MERGE operations that do not respect FK ordering.
User-defined triggers on stream tables ✅ Supported (DIFFERENTIAL) In DIFFERENTIAL mode, the refresh engine decomposes changes into explicit DELETE + UPDATE + INSERT statements so triggers fire with correct TG_OP, OLD, and NEW. Row-level triggers are suppressed during FULL refresh. Controlled by pg_trickle.user_triggers GUC (default: auto).
TRUNCATE on a stream table ❌ Not supported Use pgtrickle.refresh_stream_table() to reset data.

Tip: The __pgt_row_id column is visible but should be ignored by consuming queries — it is an implementation detail used for delta MERGE operations.

Row-Level Security (RLS)

Stream tables follow the same RLS model as PostgreSQL’s built-in MATERIALIZED VIEW: the refresh always materializes the full, unfiltered result set. Access control is applied at read time via RLS policies on the stream table itself.

How It Works

Area Behavior
RLS on source tables Ignored during refresh. The scheduler runs as superuser; manual refresh_stream_table() and IMMEDIATE-mode triggers bypass RLS via SET LOCAL row_security = off / SECURITY DEFINER. The stream table always contains all rows.
RLS on the stream table Works naturally. Enable RLS and create policies on the stream table to filter reads per role — exactly as you would on any regular table.
RLS policy changes on source tables CREATE POLICY, ALTER POLICY, and DROP POLICY on a source table are detected by pg_trickle’s DDL event trigger and mark the stream table for reinitialisation.
ENABLE/DISABLE RLS on source tables ALTER TABLE … ENABLE ROW LEVEL SECURITY and DISABLE ROW LEVEL SECURITY on a source table mark the stream table for reinitialisation.
Change buffer tables RLS is explicitly disabled on all change buffer tables (pgtrickle_changes.changes_*) so CDC trigger inserts always succeed regardless of schema-level RLS settings.
IMMEDIATE mode IVM trigger functions are SECURITY DEFINER with a locked search_path, so the delta query always sees all rows. The DML issued by the calling user is still filtered by that user’s RLS policies on the source table — only the stream table maintenance runs with elevated privileges.

Recommended Pattern: RLS on the Stream Table

-- 1. Create a stream table (materializes all rows)
SELECT pgtrickle.create_stream_table(
    name  => 'order_totals',
    query => 'SELECT tenant_id, SUM(amount) AS total FROM orders GROUP BY tenant_id'
);

-- 2. Enable RLS on the stream table
ALTER TABLE pgtrickle.order_totals ENABLE ROW LEVEL SECURITY;

-- 3. Create per-tenant policies
CREATE POLICY tenant_isolation ON pgtrickle.order_totals
    USING (tenant_id = current_setting('app.tenant_id')::INT);

-- 4. Each role sees only its own rows
SET app.tenant_id = '42';
SELECT * FROM pgtrickle.order_totals;  -- only tenant 42's rows

Note: This is identical to how you would apply RLS to a regular MATERIALIZED VIEW. One stream table serves all tenants; per-tenant filtering happens at query time with zero storage duplication.


Views

pgtrickle.stream_tables_info

Status overview with computed staleness information.

SELECT * FROM pgtrickle.stream_tables_info;

Columns include all pgtrickle.pgt_stream_tables columns plus:

Column Type Description
staleness interval now() - data_timestamp
stale bool true if staleness > schedule

pgtrickle.pg_stat_stream_tables

Comprehensive monitoring view combining catalog metadata with aggregate refresh statistics.

SELECT * FROM pgtrickle.pg_stat_stream_tables;

Key columns:

Column Type Description
pgt_id bigint Stream table ID
pgt_schema / pgt_name text Schema and name
status text INITIALIZING, ACTIVE, SUSPENDED, ERROR
refresh_mode text FULL or DIFFERENTIAL
data_timestamp timestamptz Timestamp of last refresh
staleness interval Current staleness
stale bool Whether schedule is exceeded
total_refreshes bigint Total refresh count
successful_refreshes bigint Successful refresh count
failed_refreshes bigint Failed refresh count
avg_duration_ms float8 Average refresh duration
consecutive_errors int Current error streak
cdc_modes text[] Distinct CDC modes across TABLE-type sources (e.g. {wal}, {trigger,wal}, {transitioning,wal})
scc_id int SCC group identifier for circular dependencies (NULL if not in a cycle)
last_fixpoint_iterations int Number of fixpoint iterations in the last SCC convergence (NULL if not cyclic)

pgtrickle.quick_health

Single-row health summary for dashboards and alerting. Returns the overall health status of the pg_trickle extension at a glance.

SELECT * FROM pgtrickle.quick_health;
Column Type Description
total_stream_tables bigint Total number of stream tables
error_tables bigint Stream tables with status = 'ERROR' or consecutive_errors > 0
stale_tables bigint Stream tables whose data is older than their schedule interval
scheduler_running boolean Whether a pg_trickle scheduler backend is detected in pg_stat_activity
status text Overall status: EMPTY, OK, WARNING, or CRITICAL

Status values: - EMPTY — No stream tables exist. - OK — All stream tables are healthy and up-to-date. - WARNING — Some tables have errors or are stale. - CRITICAL — At least one stream table is SUSPENDED.


pgtrickle.pgt_cdc_status

Convenience view for inspecting the CDC mode and WAL slot state of every TABLE-type source for all stream tables. Useful for monitoring in-progress TRIGGER→WAL transitions.

SELECT * FROM pgtrickle.pgt_cdc_status;
Column Type Description
pgt_schema text Schema of the stream table
pgt_name text Name of the stream table
source_relid oid OID of the source table
source_name text Name of the source table
source_schema text Schema of the source table
cdc_mode text Current CDC mode: trigger, transitioning, or wal
slot_name text Replication slot name (NULL for trigger mode)
decoder_confirmed_lsn pg_lsn Last WAL position decoded (NULL for trigger mode)
transition_started_at timestamptz When the trigger→WAL transition began (NULL if not transitioning)

Subscribe to the pgtrickle_cdc_transition NOTIFY channel to receive real-time events when a source moves between CDC modes (payload is a JSON object with source_oid, from, and to fields).


Catalog Tables

pgtrickle.pgt_stream_tables

Core metadata for each stream table.

Column Type Description
pgt_id bigserial Primary key
pgt_relid oid OID of the storage table
pgt_name text Table name
pgt_schema text Schema name
defining_query text The SQL query that defines the ST
original_query text The user-supplied query before normalization
schedule text Refresh schedule (duration or cron expression)
refresh_mode text FULL, DIFFERENTIAL, or IMMEDIATE
status text INITIALIZING, ACTIVE, SUSPENDED, ERROR
is_populated bool Whether the table has been populated
data_timestamp timestamptz Timestamp of the data in the ST
frontier jsonb Per-source LSN positions (version tracking)
last_refresh_at timestamptz When last refreshed
consecutive_errors int Current error streak count
needs_reinit bool Whether upstream DDL requires reinitialization
auto_threshold double precision Per-ST adaptive fallback threshold (overrides GUC)
last_full_ms double precision Last FULL refresh duration in milliseconds
functions_used text[] Function names used in the defining query (for DDL tracking)
topk_limit int LIMIT value for TopK stream tables (NULL if not TopK)
topk_order_by text ORDER BY clause SQL for TopK stream tables
topk_offset int OFFSET value for paged TopK queries (NULL if not paged)
diamond_consistency text Diamond consistency mode: none or atomic
diamond_schedule_policy text Diamond schedule policy: fastest or slowest
has_keyless_source bool Whether any source table lacks a PRIMARY KEY (EC-06)
function_hashes text MD5 hashes of referenced function bodies for change detection (EC-16)
scc_id int SCC group identifier for circular dependencies (NULL if not in a cycle)
last_fixpoint_iterations int Number of iterations in the last SCC fixpoint convergence (NULL if never iterated)
created_at timestamptz Creation timestamp
updated_at timestamptz Last modification timestamp

pgtrickle.pgt_dependencies

DAG edges — records which source tables each ST depends on, including CDC mode metadata.

Column Type Description
pgt_id bigint FK to pgt_stream_tables
source_relid oid OID of the source table
source_type text TABLE, STREAM_TABLE, VIEW, MATVIEW, or FOREIGN_TABLE
columns_used text[] Which columns are referenced
column_snapshot jsonb Snapshot of source column metadata at creation time
schema_fingerprint text SHA-256 fingerprint of column snapshot for fast equality checks
cdc_mode text Current CDC mode: TRIGGER, TRANSITIONING, or WAL
slot_name text Replication slot name (WAL/TRANSITIONING modes)
decoder_confirmed_lsn pg_lsn WAL decoder’s last confirmed position
transition_started_at timestamptz When the trigger→WAL transition started

pgtrickle.pgt_refresh_history

Audit log of all refresh operations.

Column Type Description
refresh_id bigserial Primary key
pgt_id bigint FK to pgt_stream_tables
data_timestamp timestamptz Data timestamp of the refresh
start_time timestamptz When the refresh started
end_time timestamptz When it completed
action text NO_DATA, FULL, DIFFERENTIAL, REINITIALIZE, SKIP
rows_inserted bigint Rows inserted
rows_deleted bigint Rows deleted
delta_row_count bigint Number of delta rows processed from change buffers
merge_strategy_used text Which merge strategy was used (e.g. MERGE, DELETE+INSERT)
was_full_fallback bool Whether the refresh fell back to FULL from DIFFERENTIAL
error_message text Error message if failed
status text RUNNING, COMPLETED, FAILED, SKIPPED
initiated_by text What triggered: SCHEDULER, MANUAL, or INITIAL
freshness_deadline timestamptz SLA deadline (duration schedules only; NULL for cron)
fixpoint_iteration int Iteration of the fixed-point loop (NULL for non-cyclic refreshes)

pgtrickle.pgt_change_tracking

CDC slot tracking per source table.

Column Type Description
source_relid oid OID of the tracked source table
slot_name text Logical replication slot name
last_consumed_lsn pg_lsn Last consumed WAL position
tracked_by_pgt_ids bigint[] Array of ST IDs depending on this source

pgtrickle.pgt_source_gates

Bootstrap source gate registry. One row per source table that has ever been gated. Only sources with gated = true are actively blocking scheduler refreshes.

Column Type Description
source_relid oid OID of the gated source table (PK)
gated boolean true while the source is gated; false after ungate_source()
gated_at timestamptz When the gate was most recently set
ungated_at timestamptz When the gate was cleared (NULL if still active)
gated_by text Actor that set the gate (e.g. 'gate_source')

pgtrickle.pgt_refresh_groups

User-declared Cross-Source Snapshot Consistency groups (v0.9.0). A refresh group guarantees that all member stream tables are refreshed against a snapshot taken at the same point in time, preventing partial-update visibility (e.g. orders and order_lines both reflecting the same transaction boundary).

Column Type Description
group_id serial Primary key
group_name text Unique human-readable group name
member_oids oid[] OIDs of the stream table storage relations that participate in this group
isolation text Snapshot isolation level for the group: 'read_committed' (default) or 'repeatable_read'
created_at timestamptz When the group was created

Management API

-- Create a refresh group
SELECT pgtrickle.create_refresh_group(
    'orders_snapshot',
    ARRAY['public.orders_summary', 'public.order_lines_summary'],
    'repeatable_read'   -- or 'read_committed' (default)
);

-- List all groups:
SELECT * FROM pgtrickle.refresh_groups();

-- Remove a group:
SELECT pgtrickle.drop_refresh_group('orders_snapshot');

Validation rules: - At least 2 member stream tables are required. - All members must exist in pgt_stream_tables. - No member can appear in more than one refresh group. - Valid isolation levels: 'read_committed' (default), 'repeatable_read'.


Bootstrap Source Gating (v0.5.0)

These functions let operators pause and resume scheduler-driven refreshes for individual source tables — useful during large bulk loads or ETL windows.

pgtrickle.gate_source(source TEXT)

Mark a source table as gated. The scheduler will skip any stream table that reads from this source until ungate_source() is called.

SELECT pgtrickle.gate_source('my_schema.big_source');

Manual refresh_stream_table() calls are not affected by gates.

pgtrickle.ungate_source(source TEXT)

Clear a gate set by gate_source(). After this call the scheduler resumes normal refresh scheduling for dependent stream tables.

SELECT pgtrickle.ungate_source('my_schema.big_source');

pgtrickle.source_gates()

Table function returning the current gate status for all registered sources.

SELECT * FROM pgtrickle.source_gates();
-- source_table | schema_name | gated | gated_at | ungated_at | gated_by
Column Type Description
source_table text Relation name
schema_name text Schema name
gated boolean Whether the source is currently gated
gated_at timestamptz When the gate was set
ungated_at timestamptz When the gate was cleared (NULL if active)
gated_by text Which function set the gate

Typical workflow

-- 1. Gate the source before a bulk load.
SELECT pgtrickle.gate_source('orders');

-- 2. Load historical data (scheduler sits idle for orders-based STs).
COPY orders FROM '/data/historical_orders.csv';

-- 3. Ungate — the next scheduler tick refreshes everything cleanly.
SELECT pgtrickle.ungate_source('orders');

pgtrickle.bootstrap_gate_status() (v0.6.0)

Rich introspection of bootstrap gate lifecycle. Returns the same columns as source_gates() plus computed fields for debugging.

SELECT * FROM pgtrickle.bootstrap_gate_status();
-- source_table | schema_name | gated | gated_at | ungated_at | gated_by | gate_duration | affected_stream_tables
Column Type Description
source_table text Relation name
schema_name text Schema name
gated boolean Whether the source is currently gated
gated_at timestamptz When the gate was set (updated on re-gate)
ungated_at timestamptz When the gate was cleared (NULL if active)
gated_by text Which function set the gate
gate_duration interval How long the gate has been active (gated: now() - gated_at; ungated: ungated_at - gated_at)
affected_stream_tables text Comma-separated list of stream tables whose scheduler refreshes are blocked by this gate

Rows are sorted with currently-gated sources first, then alphabetically.

ETL Coordination Cookbook (v0.6.0)

Step-by-step recipes for common bulk-load patterns using source gating.

Recipe 1 — Single Source Bulk Load

Gate one source table during a large data import. The scheduler pauses refreshes for all stream tables that depend on this source.

-- 1. Gate the source before loading.
SELECT pgtrickle.gate_source('orders');

-- 2. Load the data.  The scheduler sits idle for orders-dependent STs.
COPY orders FROM '/data/orders_2026.csv' WITH (FORMAT csv, HEADER);

-- 3. Ungate.  On the next tick the scheduler refreshes everything cleanly.
SELECT pgtrickle.ungate_source('orders');

Recipe 2 — Coordinated Multi-Source Load

When multiple sources feed into a shared downstream stream table, gate them all before loading so no intermediate refreshes occur.

-- 1. Gate all sources that will be loaded.
SELECT pgtrickle.gate_source('orders');
SELECT pgtrickle.gate_source('order_lines');

-- 2. Load each source (can be parallel, any order).
COPY orders FROM '/data/orders.csv' WITH (FORMAT csv, HEADER);
COPY order_lines FROM '/data/lines.csv' WITH (FORMAT csv, HEADER);

-- 3. Ungate all sources.  The scheduler refreshes downstream STs once.
SELECT pgtrickle.ungate_source('orders');
SELECT pgtrickle.ungate_source('order_lines');

Recipe 3 — Gate + Deferred Initialization

Combine gating with initialize => false to prevent incomplete initial population when sources are loaded asynchronously.

-- 1. Gate sources before creating any stream tables.
SELECT pgtrickle.gate_source('orders');
SELECT pgtrickle.gate_source('order_lines');

-- 2. Create stream tables without initial population.
SELECT pgtrickle.create_stream_table(
    'order_summary',
    'SELECT region, SUM(amount) FROM orders GROUP BY region',
    '1m', initialize => false
);
SELECT pgtrickle.create_stream_table(
    'order_report',
    'SELECT s.region, s.total, l.line_count
     FROM order_summary s
     JOIN (SELECT region, COUNT(*) AS line_count FROM order_lines GROUP BY region) l
       USING (region)',
    '1m', initialize => false
);

-- 3. Run ETL processes (can be in separate transactions).
BEGIN;
  COPY orders FROM 's3://warehouse/orders.parquet';
  SELECT pgtrickle.ungate_source('orders');
COMMIT;

BEGIN;
  COPY order_lines FROM 's3://warehouse/lines.parquet';
  SELECT pgtrickle.ungate_source('order_lines');
COMMIT;

-- 4. Once all sources are ungated, the scheduler initializes and refreshes
--    all stream tables in dependency order.

Recipe 4 — Nightly Batch Pattern

For scheduled ETL that runs overnight, gate sources before the batch starts and ungate after the batch completes.

-- Nightly ETL script:

-- Gate all sources that will be refreshed.
SELECT pgtrickle.gate_source('sales');
SELECT pgtrickle.gate_source('inventory');

-- Truncate and reload (or use COPY, INSERT...SELECT, etc.).
TRUNCATE sales;
COPY sales FROM '/data/nightly/sales.csv' WITH (FORMAT csv, HEADER);

TRUNCATE inventory;
COPY inventory FROM '/data/nightly/inventory.csv' WITH (FORMAT csv, HEADER);

-- All data loaded — ungate and let the scheduler handle the rest.
SELECT pgtrickle.ungate_source('sales');
SELECT pgtrickle.ungate_source('inventory');

-- Verify: check the gate status to confirm everything is ungated.
SELECT * FROM pgtrickle.bootstrap_gate_status();

Recipe 5 — Monitoring During a Gated Load

Use bootstrap_gate_status() to monitor progress when streams appear stalled.

-- Check which sources are currently gated and how long they've been paused.
SELECT source_table, gate_duration, affected_stream_tables
FROM pgtrickle.bootstrap_gate_status()
WHERE gated = true;

-- If a gate has been active too long (e.g. ETL failed), ungate manually.
SELECT pgtrickle.ungate_source('stale_source');

Watermark Gating (v0.7.0)

Watermark gating is a scheduling control for ETL pipelines where multiple source tables are populated by separate jobs that finish at different times. Each ETL job declares “I’m done up to timestamp X”, and the scheduler waits until all sources in a group are caught up within a configurable tolerance before refreshing downstream stream tables.

Catalog Tables

pgtrickle.pgt_watermarks

Per-source watermark state. One row per source table that has had a watermark advanced.

Column Type Description
source_relid oid Source table OID (primary key)
watermark timestamptz Current watermark value
updated_at timestamptz When the watermark was last advanced
advanced_by text User/role that advanced the watermark
wal_lsn_at_advance text WAL LSN at the time of advancement

pgtrickle.pgt_watermark_groups

Watermark group definitions. Each group declares that a set of sources must be temporally aligned.

Column Type Description
group_id serial Auto-generated group ID (primary key)
group_name text Unique group name
source_relids oid[] Array of source table OIDs in the group
tolerance_secs float8 Maximum allowed lag in seconds (default 0)
created_at timestamptz When the group was created

Functions

pgtrickle.advance_watermark(source TEXT, watermark TIMESTAMPTZ)

Signal that a source table’s data is complete through the given timestamp.

  • Monotonic: rejects watermarks that go backward (raises error).
  • Idempotent: advancing to the same value is a silent no-op.
  • Transactional: the watermark is part of the caller’s transaction.
SELECT pgtrickle.advance_watermark('orders', '2026-03-01 12:05:00+00');

pgtrickle.create_watermark_group(group_name TEXT, sources TEXT[], tolerance_secs FLOAT8 DEFAULT 0)

Create a watermark group. Requires at least 2 sources.

  • tolerance_secs: maximum allowed lag between the most-advanced and least-advanced watermarks. Default 0 means strict alignment.
SELECT pgtrickle.create_watermark_group(
    'order_pipeline',
    ARRAY['orders', 'order_lines'],
    0    -- strict alignment (default)
);

pgtrickle.drop_watermark_group(group_name TEXT)

Remove a watermark group by name.

SELECT pgtrickle.drop_watermark_group('order_pipeline');

pgtrickle.watermarks()

Return the current watermark state for all registered sources.

SELECT * FROM pgtrickle.watermarks();
Column Type Description
source_table text Source table name
schema_name text Schema name
watermark timestamptz Current watermark value
updated_at timestamptz Last advancement time
advanced_by text User that advanced it
wal_lsn text WAL LSN at advancement

pgtrickle.watermark_groups()

Return all watermark group definitions.

SELECT * FROM pgtrickle.watermark_groups();

pgtrickle.watermark_status()

Return live alignment status for each watermark group.

SELECT * FROM pgtrickle.watermark_status();
Column Type Description
group_name text Group name
min_watermark timestamptz Least-advanced watermark
max_watermark timestamptz Most-advanced watermark
lag_secs float8 Lag in seconds between max and min
aligned boolean Whether lag is within tolerance
sources_with_watermark int4 Number of sources that have a watermark
sources_total int4 Total sources in the group

Recipes

Recipe 6 — Nightly ETL with Watermarks

-- Create a watermark group for the order pipeline.
SELECT pgtrickle.create_watermark_group(
    'order_pipeline',
    ARRAY['orders', 'order_lines']
);

-- Nightly ETL job 1: Load orders
BEGIN;
  COPY orders FROM '/data/orders_20260301.csv';
  SELECT pgtrickle.advance_watermark('orders', '2026-03-01');
COMMIT;

-- Nightly ETL job 2: Load order lines (may run later)
BEGIN;
  COPY order_lines FROM '/data/lines_20260301.csv';
  SELECT pgtrickle.advance_watermark('order_lines', '2026-03-01');
COMMIT;

-- order_report refreshes on the next tick after both watermarks align.

Recipe 7 — Micro-Batch Tolerance

-- Allow up to 30 seconds of skew between trades and quotes.
SELECT pgtrickle.create_watermark_group(
    'realtime_pipeline',
    ARRAY['trades', 'quotes'],
    30   -- 30-second tolerance
);

-- External process advances watermarks every few seconds.
SELECT pgtrickle.advance_watermark('trades', '2026-03-01 12:00:05+00');
SELECT pgtrickle.advance_watermark('quotes', '2026-03-01 12:00:02+00');
-- Lag is 3s, within 30s tolerance → stream tables refresh normally.

Recipe 8 — Monitoring Watermark Alignment

-- Check which groups are currently misaligned.
SELECT group_name, lag_secs, aligned
FROM pgtrickle.watermark_status()
WHERE NOT aligned;

-- Check individual source watermarks.
SELECT source_table, watermark, updated_at
FROM pgtrickle.watermarks()
ORDER BY watermark;