This repository has been archived by the owner on Apr 26, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Update synapse_port_db for new sequences #15965
Closed
Closed
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Fix `synapse_port_db` not configuring the `application_services_txns` and `un_partial_stated_event_stream_sequence` sequences. Contributed by @vanguacamolie. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -769,6 +769,10 @@ def alter_table(txn: LoggingTransaction) -> None: | |||||||||||||||||||||||||||||||||||||||||||||
await self._setup_state_group_id_seq() | ||||||||||||||||||||||||||||||||||||||||||||||
await self._setup_user_id_seq() | ||||||||||||||||||||||||||||||||||||||||||||||
await self._setup_events_stream_seqs() | ||||||||||||||||||||||||||||||||||||||||||||||
await self._setup_sequence( | ||||||||||||||||||||||||||||||||||||||||||||||
"un_partial_stated_event_stream_sequence", | ||||||||||||||||||||||||||||||||||||||||||||||
("un_partial_stated_event_stream",), | ||||||||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||||||||
await self._setup_sequence( | ||||||||||||||||||||||||||||||||||||||||||||||
"device_inbox_sequence", ("device_inbox", "device_federation_outbox") | ||||||||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -779,6 +783,7 @@ def alter_table(txn: LoggingTransaction) -> None: | |||||||||||||||||||||||||||||||||||||||||||||
await self._setup_sequence("receipts_sequence", ("receipts_linearized",)) | ||||||||||||||||||||||||||||||||||||||||||||||
await self._setup_sequence("presence_stream_sequence", ("presence_stream",)) | ||||||||||||||||||||||||||||||||||||||||||||||
await self._setup_auth_chain_sequence() | ||||||||||||||||||||||||||||||||||||||||||||||
await self._setup_application_services_sequence() | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
# Step 3. Get tables. | ||||||||||||||||||||||||||||||||||||||||||||||
self.progress.set_state("Fetching tables") | ||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -1133,6 +1138,27 @@ def r(txn: LoggingTransaction) -> None: | |||||||||||||||||||||||||||||||||||||||||||||
r, | ||||||||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
async def _setup_application_services_sequence(self) -> None: | ||||||||||||||||||||||||||||||||||||||||||||||
curr_tnx_id: Optional[ | ||||||||||||||||||||||||||||||||||||||||||||||
int | ||||||||||||||||||||||||||||||||||||||||||||||
] = await self.sqlite_store.db_pool.simple_select_one_onecol( | ||||||||||||||||||||||||||||||||||||||||||||||
table="application_services_txns", | ||||||||||||||||||||||||||||||||||||||||||||||
keyvalues={}, | ||||||||||||||||||||||||||||||||||||||||||||||
retcol="COALESCE(max(txn_id), 0)", | ||||||||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
def r(txn: LoggingTransaction) -> None: | ||||||||||||||||||||||||||||||||||||||||||||||
txn.execute( | ||||||||||||||||||||||||||||||||||||||||||||||
"ALTER SEQUENCE application_services_txn_id_seq RESTART WITH %s", | ||||||||||||||||||||||||||||||||||||||||||||||
(curr_tnx_id + 1,), | ||||||||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
if curr_tnx_id is not None: | ||||||||||||||||||||||||||||||||||||||||||||||
await self.postgres_store.db_pool.runInteraction( | ||||||||||||||||||||||||||||||||||||||||||||||
"_setup_application_services_sequence", | ||||||||||||||||||||||||||||||||||||||||||||||
r, | ||||||||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+1150
to
+1160
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think this will fix the mypy issue:
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
############################################## | ||||||||||||||||||||||||||||||||||||||||||||||
# The following is simply UI stuff | ||||||||||||||||||||||||||||||||||||||||||||||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this ever really
None
since we have the coalesce?