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
WITH
trino_contributors AS (
SELECTCOUNT(DISTINCT creator_user_login) AS trino_contributors
FROM
github_events
WHERE
type ='PullRequestEvent'AND action ='opened'AND repo_name ='trinodb/trino'
),
starrocks_contributors AS (
SELECTCOUNT(DISTINCT creator_user_login) AS starrocks_contributors
FROM
github_events
WHERE
type ='PullRequestEvent'AND action ='opened'AND repo_name ='starrocks/starrocks'
)
SELECT
trino_contributors,
starrocks_contributors
FROM
trino_contributors,
starrocks_contributors
Chart:
{
"chartName": "BarChart",
"title": "Contributors to Trino vs Starrocks",
"x": "Repository",
"y": [
"Trino Contributors",
"Starrocks Contributors"
]
}
Hi, I have some problems with the question 0f531d2f-89f6-405c-ae4d-624ff49b2d0a how many contributors are there to trino compared to starrocks (errorType = none):
Generated SQL
Chart:
Result:
The text was updated successfully, but these errors were encountered: