Skip to content

Commit

Permalink
add index on time-range fields (#4759)
Browse files Browse the repository at this point in the history
  • Loading branch information
trinity-1686a authored Mar 18, 2024
1 parent 7af4596 commit c0fc40c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
DROP INDEX IF EXISTS splits_time_range_start_idx;
DROP INDEX IF EXISTS splits_time_range_end_idx;
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
CREATE INDEX IF NOT EXISTS splits_time_range_start_idx ON splits (time_range_start);
CREATE INDEX IF NOT EXISTS splits_time_range_end_idx ON splits (time_range_end);

0 comments on commit c0fc40c

Please sign in to comment.