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
If I run cargo run build on my views/materialized views models I'm getting errors about dependent views . I either need to delete all view with CASCADE or don't use views in other views.
Expected Behavior:
I expect it to be updated without deleting all views. I suppose it could be done via
no DROP command for views and materialized views, only for the tables.
Current Behavior:
If I run
cargo run build
on my views/materialized views models I'm getting errors about dependent views . I either need to delete all view withCASCADE
or don't use views in other views.Expected Behavior:
I expect it to be updated without deleting all views. I suppose it could be done via
DROP
command for views and materialized views, only for the tables.CREATE or REPLACE VIEW
commandREFRESH MATERIALIZED VIEW
if exists, otherwiseCREATE MATERIALIZED VIEW.
I've submitted a PR with my solution.
thank you
The text was updated successfully, but these errors were encountered: