mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-14 11:58:02 +00:00
b47f0f546f
# Which Problems Are Solved
There are cases where not all statements of multiExec are succeed. This
leads to inconsistent states. One example is [LDAP
IDPs](https://github.com/zitadel/zitadel/issues/7959).
If statements get executed only partially this can lead to inconsistent
states or even break projections for objects which might not were
correctly created in a sub table.
This behaviour is possible because we use
[`SAVEPOINTS`](https://www.postgresql.org/docs/current/sql-savepoint.html)
during each statement of a multiExec.
# How the Problems Are Solved
SAVEPOINTS are only created at the beginning of an exec function not
during every execution like before. Additionally `RELEASE` or `ROLLBACK`
of `SAVEPOINTS` are only used when needed.
# Additional Changes
- refactor some unused parameters
# Additional Context
- closes https://github.com/zitadel/zitadel/issues/7959
(cherry picked from commit
|
||
---|---|---|
.. | ||
failed_event_get_count.sql | ||
failed_event_set.sql | ||
failed_event.go | ||
field_handler.go | ||
handler.go | ||
init.go | ||
log.go | ||
mock_test.go | ||
reduce.go | ||
state_get_await.sql | ||
state_get.sql | ||
state_lock.sql | ||
state_set.sql | ||
state_test.go | ||
state.go | ||
statement_test.go | ||
statement.go |