-
I am new to Materialize, but I am curious: Is it possible to use Postgres Listen/Notify logic and create triggers upon materialized views. CREATE MATERIALIZED VIEW avg_bid AS CREATE OR REPLACE FUNCTION notify_channel_avg_bid() RETURNS TRIGGER AS CREATE TRIGGER avg_bid_notify_trigger AFTER INSERT OR UPDATE OR DELETE ON avg_bid |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hey @3mIn4! |
Beta Was this translation helpful? Give feedback.
Hey @3mIn4!
Have you checked out tails? They provide a similar concept to the Postgres Listen/Notify logic. Super suitable for these cases.