Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Merge pull request #1103 from matrix-org/markjh/comment_on_create_index
Browse files Browse the repository at this point in the history
Add comments to existing schema deltas that used "CREATE INDEX" directly
  • Loading branch information
NegativeMjark authored Sep 12, 2016
2 parents caef86f + 31f85f9 commit 0baf498
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 0 deletions.
4 changes: 4 additions & 0 deletions synapse/storage/schema/delta/22/receipts_index.sql
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@
* limitations under the License.
*/

/** Using CREATE INDEX directly is deprecated in favour of using background
* update see synapse/storage/schema/delta/33/access_tokens_device_index.sql
* and synapse/storage/registration.py for an example using
* "access_tokens_device_index" **/
CREATE INDEX receipts_linearized_room_stream ON receipts_linearized(
room_id, stream_id
);
4 changes: 4 additions & 0 deletions synapse/storage/schema/delta/28/events_room_stream.sql
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,8 @@
* limitations under the License.
*/

/** Using CREATE INDEX directly is deprecated in favour of using background
* update see synapse/storage/schema/delta/33/access_tokens_device_index.sql
* and synapse/storage/registration.py for an example using
* "access_tokens_device_index" **/
CREATE INDEX events_room_stream on events(room_id, stream_ordering);
4 changes: 4 additions & 0 deletions synapse/storage/schema/delta/28/public_roms_index.sql
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,8 @@
* limitations under the License.
*/

/** Using CREATE INDEX directly is deprecated in favour of using background
* update see synapse/storage/schema/delta/33/access_tokens_device_index.sql
* and synapse/storage/registration.py for an example using
* "access_tokens_device_index" **/
CREATE INDEX public_room_index on rooms(is_public);
4 changes: 4 additions & 0 deletions synapse/storage/schema/delta/28/receipts_user_id_index.sql
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@
* limitations under the License.
*/

/** Using CREATE INDEX directly is deprecated in favour of using background
* update see synapse/storage/schema/delta/33/access_tokens_device_index.sql
* and synapse/storage/registration.py for an example using
* "access_tokens_device_index" **/
CREATE INDEX receipts_linearized_user ON receipts_linearized(
user_id
);
4 changes: 4 additions & 0 deletions synapse/storage/schema/delta/29/push_actions.sql
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@ UPDATE event_push_actions SET stream_ordering = (

UPDATE event_push_actions SET notif = 1, highlight = 0;

/** Using CREATE INDEX directly is deprecated in favour of using background
* update see synapse/storage/schema/delta/33/access_tokens_device_index.sql
* and synapse/storage/registration.py for an example using
* "access_tokens_device_index" **/
CREATE INDEX event_push_actions_rm_tokens on event_push_actions(
user_id, room_id, topological_ordering, stream_ordering
);
4 changes: 4 additions & 0 deletions synapse/storage/schema/delta/31/pushers_index.sql
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@
* limitations under the License.
*/

/** Using CREATE INDEX directly is deprecated in favour of using background
* update see synapse/storage/schema/delta/33/access_tokens_device_index.sql
* and synapse/storage/registration.py for an example using
* "access_tokens_device_index" **/
CREATE INDEX event_push_actions_stream_ordering on event_push_actions(
stream_ordering, user_id
);

0 comments on commit 0baf498

Please sign in to comment.