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
A few duplicates seem to have popped up in OSSD after recent bulk imports:
with cte as (
select
artifact_id,
array_agg(distinct(project_name)) as projects,
count(distinct project_name) as num_projects
from `oso.artifacts_by_project_v1`
where artifact_source = 'GITHUB'
group by 1
order by 3 desc
)
select * from cte where num_projects > 1
What is it?
A few duplicates seem to have popped up in OSSD after recent bulk imports:
Here is an export from this query.
The text was updated successfully, but these errors were encountered: