Skip to content

Commit

Permalink
Merge pull request sakaiproject#728 from ern/SAK-29571
Browse files Browse the repository at this point in the history
SAK-29571 delete MFR_MESSAGE_DELETED_I index
  • Loading branch information
steveswinsburg committed Jun 24, 2015
2 parents c112f04 + 627d2ae commit 64ae678
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
</property>
<!-- added implementing delete from threaded view -->
<property name="deleted">
<column name="DELETED" not-null="true" index="MFR_MESSAGE_DELETED_I"/>
<column name="DELETED" not-null="true" />
</property>


Expand Down
3 changes: 3 additions & 0 deletions reference/docs/conversion/sakai_11_mysql_conversion.sql
Original file line number Diff line number Diff line change
Expand Up @@ -367,3 +367,6 @@ CREATE TABLE `pasystem_banner_dismissed` (
);

-- END SAK-29422 Incorporate NYU's "public announcement system"
-- SAK-29571 MFR_MESSAGE_DELETD_I causes bad performance
drop index MFR_MESSAGE_DELETED_I on MFR_MESSAGE_T;
-- END SAK-29571 MFR_MESSAGE_DELETD_I causes bad performance
3 changes: 3 additions & 0 deletions reference/docs/conversion/sakai_11_oracle_conversion.sql
Original file line number Diff line number Diff line change
Expand Up @@ -383,3 +383,6 @@ CREATE INDEX banner_dismissed_lcase_eid on pasystem_banner_dismissed (lower(user
CREATE INDEX banner_dismissed_state on pasystem_banner_dismissed (state);

-- END SAK-29422 Incorporate NYU's "public announcement system"
-- SAK-29571 MFR_MESSAGE_DELETD_I causes bad performance
drop index MFR_MESSAGE_DELETED_I;
-- END SAK-29571 MFR_MESSAGE_DELETD_I causes bad performance

0 comments on commit 64ae678

Please sign in to comment.