- Notifications
You must be signed in to change notification settings - Fork1.1k
fix: remove inflight interceptions from aibridge returned values#20852
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Changes fromall commits
d202e9d8325e2348cc71e6f466cad23eecd0252028c933abe7942fa8a8c6e876a00655432b4507c94c691ace778File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more abouthow customized files appear on GitHub.
Uh oh!
There was an error while loading.Please reload this page.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -89,8 +89,10 @@ SELECT | ||
| FROM | ||
| aibridge_interceptions | ||
| WHERE | ||
| -- Remove inflight interceptions (ones which lack an ended_at value). | ||
| aibridge_interceptions.ended_at IS NOT NULL | ||
jakehwll marked this conversation as resolved. Show resolvedHide resolvedUh oh!There was an error while loading.Please reload this page. | ||
| -- Filter by time frame | ||
| ANDCASE | ||
| WHEN @started_after::timestamptz != '0001-01-01 00:00:00+00'::timestamptz THEN aibridge_interceptions.started_at >= @started_after::timestamptz | ||
| ELSE true | ||
| END | ||
| @@ -126,8 +128,10 @@ FROM | ||
| JOIN | ||
| visible_users ON visible_users.id = aibridge_interceptions.initiator_id | ||
| WHERE | ||
| -- Remove inflight interceptions (ones which lack an ended_at value). | ||
| aibridge_interceptions.ended_at IS NOT NULL | ||
dannykopping marked this conversation as resolved. Show resolvedHide resolvedUh oh!There was an error while loading.Please reload this page. | ||
| -- Filter by time frame | ||
| ANDCASE | ||
| WHEN @started_after::timestamptz != '0001-01-01 00:00:00+00'::timestamptz THEN aibridge_interceptions.started_at >= @started_after::timestamptz | ||
| ELSE true | ||
| END | ||
Uh oh!
There was an error while loading.Please reload this page.