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
When running finalize_setup() when the homepage loads, I've noticed I will sometimes get duplicate column name: 'dbt Models' and there will be multiple rows for the predefined dynamic grouped labels.
I believe the MERGE condition is wrong as it is looking only at name which is NULL for all dynamic grouped labels (rather than consider name+group_name)
The text was updated successfully, but these errors were encountered:
Because the MERGE only inspected the label name (which is null for
predefined grouped labels), we were incorrectly falling into the not
matched condition and inserting duplicate rows.
Closessundeck-io#400
When running
finalize_setup()
when the homepage loads, I've noticed I will sometimes getduplicate column name: 'dbt Models'
and there will be multiple rows for the predefined dynamic grouped labels.I believe the MERGE condition is wrong as it is looking only at
name
which isNULL
for all dynamic grouped labels (rather than consider name+group_name)The text was updated successfully, but these errors were encountered: