pingcap/ossinsight

[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.

Opened this issue · 0 comments

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):

  • executedAt: 2024-03-14T19:36:27.000+00:00
  • requestedAt: 2024-03-14T19:36:27.000+00:00

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'
  )