Skip to content

Commit

Permalink
case insensitive
Browse files Browse the repository at this point in the history
  • Loading branch information
kiwicopple committed Jan 20, 2023
1 parent ca722bb commit ade3920
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion components/Issues.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ with
events as (
SELECT *
FROM github_events
WHERE repo_name like '${filters.org}/%' and event_type = 'IssuesEvent'
WHERE repo_name ilike '${filters.org}/%' and event_type = 'IssuesEvent'
order by created_at asc
),
timeseries as (
Expand Down
2 changes: 1 addition & 1 deletion components/PullRequests.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ with
events as (
SELECT *
FROM github_events
WHERE repo_name like '${filters.org}/%' and event_type = 'PullRequestEvent'
WHERE repo_name ilike '${filters.org}/%' and event_type = 'PullRequestEvent'
order by created_at asc
),
timeseries as (
Expand Down
2 changes: 1 addition & 1 deletion components/Stars.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export default function ChartView() {
body: `
WITH data AS (
select * from github_events
WHERE repo_name like '${filters.org}/%' AND event_type = 'WatchEvent'
WHERE repo_name ilike '${filters.org}/%' AND event_type = 'WatchEvent'
)
SELECT
count(actor_login) as daily,
Expand Down

1 comment on commit ade3920

@vercel
Copy link

@vercel vercel bot commented on ade3920 Jan 20, 2023

Choose a reason for hiding this comment

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

Please sign in to comment.