Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix table github_repository collaborators not found closes #88 #89

Merged
merged 2 commits into from
Nov 10, 2021

Conversation

ParthaI
Copy link
Contributor

@ParthaI ParthaI commented Nov 3, 2021

Integration test logs

Logs
Add passing integration test logs here

Example query results

Results
> select
  r.name,
  collaborator_login
from
  github_my_repository as r,
  jsonb_array_elements_text(r.collaborator_logins) as collaborator_login,
  github_my_organization as o
where
  r.owner_login = o.login
  and collaborator_login not in (
    select m from github_my_organization, jsonb_array_elements_text(member_logins) as m
  );
+------+--------------------+
| name | collaborator_login |
+------+--------------------+
+------+--------------------+

@ParthaI ParthaI self-assigned this Nov 3, 2021
@ParthaI ParthaI linked an issue Nov 3, 2021 that may be closed by this pull request
Copy link
Contributor

@bigdatasourav bigdatasourav left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@bigdatasourav bigdatasourav merged commit 21c2082 into main Nov 10, 2021
@bigdatasourav bigdatasourav deleted the issue-88 branch November 10, 2021 06:43
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Fix table github_repository collaborators not found
3 participants