You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The syncapi_stream_id sequence will already exist due to one of the other two statements which create it (which is probably already one too many):
$ git grep syncapi_stream_id | grep CREATE
syncapi/storage/postgres/account_data_table.go:CREATE SEQUENCE IF NOT EXISTS syncapi_stream_id;
syncapi/storage/postgres/output_room_events_table.go:CREATE SEQUENCE IF NOT EXISTS syncapi_stream_id;
I'm not sure if there is any benefit in adding another statement which will end up being ignored due to the sequence already existing.
This issue was originally created by @Cnly at matrix-org/dendrite#723.
It looks like invites_table.go should also have the
CREATE SEQUENCE
line as in other data tables sharingsyncapi_stream_id
e.g. https://github.com/matrix-org/dendrite/blob/master/syncapi/storage/account_data_table.go#L28.The text was updated successfully, but these errors were encountered: