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 have a massive ~1000 line materialized view that takes the Postgres JIT about 7 seconds to do its thing, while the execution itself (on a small table, anyway) is maybe a half second. Since I need to refresh the views in my test suite, I just set JIT = off globally in the test environment, but it would be nice if there was a built-in option to disable it for the view only.
If I write it, would this be a welcome change?
The text was updated successfully, but these errors were encountered:
It would be convenient to have a built-in option, but you're right that it's not too difficult to just disable it in the migrations and anywhere else where a refresh is needed.
It might be worth a note in the documentation, since I assume most materialized views are doing some complex heavy lifting.
I have a massive ~1000 line materialized view that takes the Postgres JIT about 7 seconds to do its thing, while the execution itself (on a small table, anyway) is maybe a half second. Since I need to refresh the views in my test suite, I just set
JIT = off
globally in the test environment, but it would be nice if there was a built-in option to disable it for the view only.If I write it, would this be a welcome change?
The text was updated successfully, but these errors were encountered: