Skip to content

Commit

Permalink
EPMRPP-87666 || Drop gin index on trgm log message (#284)
Browse files Browse the repository at this point in the history
  • Loading branch information
pbortnik authored Dec 4, 2023
1 parent c89caef commit 392c6e7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions migrations/81_remove_trgm_index.down.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
CREATE INDEX log_message_trgm_idx ON log USING gin (log_message gin_trgm_ops);
1 change: 1 addition & 0 deletions migrations/81_remove_trgm_index.up.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
DROP INDEX IF EXISTS log_message_trgm_idx;

0 comments on commit 392c6e7

Please sign in to comment.