Try awful hack to generate indexes using SHA512

This commit is contained in:
Neil Alexander 2021-04-19 14:56:00 +01:00
parent 4198adfab8
commit 49d3c73250
No known key found for this signature in database
GPG key ID: A02A2019A2BB0944

View file

@ -49,7 +49,7 @@ func UpStateBlocksRefactor(tx *sql.Tx) error {
-- Local numeric ID for this state data. -- Local numeric ID for this state data.
state_block_nid bigserial PRIMARY KEY, state_block_nid bigserial PRIMARY KEY,
event_nids bigint[] NOT NULL, event_nids bigint[] NOT NULL,
UNIQUE (event_nids) CONSTRAINT roomserver_state_block_unique UNIQUE(sha512(event_nids::text::bytea))
); );
`) `)
if err != nil { if err != nil {
@ -61,7 +61,7 @@ func UpStateBlocksRefactor(tx *sql.Tx) error {
state_snapshot_nid bigserial PRIMARY KEY, state_snapshot_nid bigserial PRIMARY KEY,
room_nid bigint NOT NULL, room_nid bigint NOT NULL,
state_block_nids bigint[] NOT NULL, state_block_nids bigint[] NOT NULL,
UNIQUE (room_nid, state_block_nids) CONSTRAINT roomserver_state_snapshot_unique UNIQUE(room_nid, sha512(state_block_nids::text::bytea))
); );
`) `)
if err != nil { if err != nil {