You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'd like to be able to filter all changes to pg_temp_* tables from wal2json messages. However, the existing filter-tables solution does not allow for wildcards within table names (see also #104 (comment)).
The text was updated successfully, but these errors were encountered:
I'm back to this issue. Per your comment in the other issue, it doesn't seem a temporary table (temporary table uses a schema named pg_temp_XX). It seems a transient object to handle heap rewrites (such as a REFRESH MATERIALIZED VIEW or ALTER TABLE). The commit postgres/postgres@325f2ec fixed it for v11+. There is nothing to fix for temporary tables.
However, this issue is still valid for ignoring tables whose the name matches a pattern.
I'd like to be able to filter all changes to
pg_temp_*
tables from wal2json messages. However, the existingfilter-tables
solution does not allow for wildcards within table names (see also #104 (comment)).The text was updated successfully, but these errors were encountered: