zitadel/cmd/mirror
Silvan b522588d98
fix(eventstore): precise decimal (#8527)
# Which Problems Are Solved

Float64 which was used for the event.Position field is [not precise in
go and gets rounded](https://github.com/golang/go/issues/47300). This
can lead to unprecies position tracking of events and therefore
projections especially on cockcoachdb as the position used there is a
big number.

example of a unprecies position:
exact: 1725257931223002628
float64: 1725257931223002624.000000

# How the Problems Are Solved

The float64 was replaced by
[github.com/jackc/pgx-shopspring-decimal](https://github.com/jackc/pgx-shopspring-decimal).

# Additional Changes

Correct behaviour of makefile for load tests.
Rename `latestSequence`-queries to `latestPosition`
2024-09-06 12:19:19 +03:00
..
auth.go feat(cmd): mirror (#7004) 2024-05-30 09:35:30 +00:00
config.go feat(v3alpha): web key resource (#8262) 2024-08-14 14:18:14 +00:00
defaults.yaml feat(cmd): mirror (#7004) 2024-05-30 09:35:30 +00:00
event_store.go fix(eventstore): precise decimal (#8527) 2024-09-06 12:19:19 +03:00
event.go fix(eventstore): precise decimal (#8527) 2024-09-06 12:19:19 +03:00
mirror.go fix(mirror): read config correctly (#8330) 2024-07-18 14:00:58 +00:00
projections.go feat(cmd): mirror (#7004) 2024-05-30 09:35:30 +00:00
system.go feat(cmd): mirror (#7004) 2024-05-30 09:35:30 +00:00
verify.go feat(cmd): mirror (#7004) 2024-05-30 09:35:30 +00:00