mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-25 15:26:41 +00:00
# Which Problems Are Solved There was an left-behind index introduced to optimize the old and removed event execution handler. The index confuses prostgres and it sometimes picks this index in favor of the projection specific index. This sometimes leads to bad query performance in the projectio handlers. # How the Problems Are Solved Drop the index # Additional Changes - none # Additional Context - Forgotten in https://github.com/zitadel/zitadel/pull/10564
2 lines
54 B
SQL
2 lines
54 B
SQL
DROP INDEX IF EXISTS eventstore.es_instance_position;
|