Temporary Table as official materialization method #9743
timhiebenthal
started this conversation in
Ideas
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Wouldn't this make sense?
Sometimes you don't want to keep intermediate steps in your database schema, but on the other hand with large tables it's more efficient to materialize it once and read it a few times afterwards.
That's were the beauty of temporary tables come in, right?
So the best of both worlds between
ephemeral
-models andtable
-modelsI know that I could build a real table and have a post-hook to drop it... but why so complicated?
Thoughts?
Beta Was this translation helpful? Give feedback.
All reactions