Skip to content

Commit

Permalink
Merge pull request #266 from EdwardKaravakis/master
Browse files Browse the repository at this point in the history
Fixed an error when declaring an index
  • Loading branch information
wguanicedew authored Jan 10, 2024
2 parents cb4f7ea + 3170523 commit ccbc691
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 ccbc691

Please sign in to comment.