Hi folks, I see that external materialization creates "internal" table with `__dbt_tmp` suffix before copying tables to files and creation of views. Why not to do just: ```COPY (model_select_query) TO 'path_to_file'``` and further `CREATE VIEW ...`?
Hi folks,
I see that external materialization creates "internal" table with
__dbt_tmpsuffix before copying tables to files and creation of views.Why not to do just:
COPY (model_select_query) TO 'path_to_file'and further
CREATE VIEW ...?