Skip to content

Commit

Permalink
Add index for run id lookup in response-consumer (#369)
Browse files Browse the repository at this point in the history
* Add index for run id lookup in response-consumer
  • Loading branch information
dehort authored Jun 25, 2024
1 parent 01ead4a commit 94a284e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
DROP INDEX CONCURRENTLY IF EXISTS runs_org_id_correlation_id_run_id_index;
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
CREATE INDEX CONCURRENTLY IF NOT EXISTS runs_org_id_correlation_id_run_id_index ON runs (org_id, correlation_id, id);

0 comments on commit 94a284e

Please sign in to comment.