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
The temp relation gets the same name as the target relation, because suffix in dremio__make_temp_relation does not get a default value like it does in dbt-core.
The text was updated successfully, but these errors were encountered:
@Marnixvdb taking a closer look at the suffix, it actually appears that the default value is generated before dremio__make_temp_relation. My understanding is that the macro make_temp_relation in dbt-core is called first, which has a default suffix of "__dbt_tmp". It then passes this default suffix to dremio__make_temp_relation to create the dremio temp relation. Is there something I'm missing here?
On another note, I wonder why dremio__make_temp_relation deletes the temp relation? @fabrice-etanchaud would you happen to know?
The temp relation gets the same name as the target relation, because
suffix
in dremio__make_temp_relation does not get a default value like it does in dbt-core.The text was updated successfully, but these errors were encountered: