Skip to content

Commit

Permalink
Fixed issue with wrong index declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
EdwardKaravakis committed Jan 10, 2024
1 parent cb4f7ea commit 3170523
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions main/etc/sql/postgresql.sql
Original file line number Diff line number Diff line change
Expand Up @@ -517,8 +517,7 @@ CREATE INDEX "CONTENTS_REQ_TF_COLL_IDX" ON doma_idds.contents (request_id, trans

CREATE INDEX "CONTENTS_TF_IDX" ON doma_idds.contents (transform_id, request_id, coll_id, map_id, content_relation_type);

CREATE INDEX "CONTENTS_ID_NAME_IDX" ON doma_idds.contents (coll_id, scope, md5('name');
, status);
CREATE INDEX "CONTENTS_ID_NAME_IDX" ON doma_idds.contents (coll_id, scope, md5('name'), status);


SET search_path TO doma_idds;
Expand Down

0 comments on commit 3170523

Please sign in to comment.