pingcap / ossinsight

Analysis, Comparison, Trends, Rankings of Open Source Software, you can also get insight from more than 7 billion with natural language (powered by OpenAI). Follow us on Twitter: https://twitter.com/ossinsight
https://ossinsight.io/
Apache License 2.0
1.81k stars 341 forks source link

[Explorer] Empty result for question bf3f516d-8b44-4d26-aa31-3e3770e9d578: Is there any issue or PR contributed to TiDB repo from the people as part of the organization called "Uber"? please show the record if any. #1738

Open ardelleFan opened 7 months ago

ardelleFan commented 7 months ago

Hi, The result is empty for question bf3f516d-8b44-4d26-aa31-3e3770e9d578 Is there any issue or PR contributed to TiDB repo from the people as part of the organization called "Uber"? please show the record if any. (errorType = none):

Error message

no error message.

Generated SQL

SELECT
  ge.pr_or_issue_id,
  ge.actor_login,
  ge.type,
  ge.action,
  ge.created_at
FROM
  github_events ge
  JOIN github_repos gr ON ge.repo_id = gr.repo_id
  JOIN github_users gu ON ge.actor_id = gu.id
WHERE
  gr.repo_name = 'pingcap/tidb'
  AND gu.organization = 'Uber'
  AND (
    ge.type = 'PullRequestEvent'
    OR ge.type = 'IssuesEvent'
  )