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
When I make a change to job_success_history_by_day - pg-diff tries to DROP the view which is can't since its referenced by job_success_history_by_today.
DROP MATERIALIZED VIEW IF EXISTS "public"."job_success_history_by_day";
CREATE MATERIALIZED VIEW IF NOT EXISTS "public"."job_success_history_by_day" AS SELECT nomadjobname,
Can pg-diff detect the dependency and do an ALTER if the view exists?
The text was updated successfully, but these errors were encountered:
I have a materialized view that has another materialized view inside of it
job_success_history_by_today => references => job_success_history_by_day
When I make a change to job_success_history_by_day - pg-diff tries to DROP the view which is can't since its referenced by job_success_history_by_today.
DROP MATERIALIZED VIEW IF EXISTS "public"."job_success_history_by_day";
CREATE MATERIALIZED VIEW IF NOT EXISTS "public"."job_success_history_by_day" AS SELECT nomadjobname,
Can pg-diff detect the dependency and do an ALTER if the view exists?
The text was updated successfully, but these errors were encountered: