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
We currently create temporary tables at plan time preemptively, even though they may not necessarily be needed. This behavior was introduced before we started to create tables on demand (i.e., if they're missing), but we can move away from it now.
For instance, the initial plan application for the example project produces the following tables in duckdb:
This would also help with having less tables for the janitor to clean up.
Recent changes have made the actual snapshot deployability available in the strategy create() method (previously, only a doctored DeployabilityIndex was available that always returned "not deployable").
So we could use this to skip creating the dev preview ("__temp") tables if the snapshot being created is deployable
We currently create temporary tables at plan time preemptively, even though they may not necessarily be needed. This behavior was introduced before we started to create tables on demand (i.e., if they're missing), but we can move away from it now.
For instance, the initial plan application for the example project produces the following tables in duckdb:
The text was updated successfully, but these errors were encountered: