zitadel/internal/v2/database
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
..
mock refactor(v2): init events (#7823) 2024-05-23 06:36:08 +02:00
filter.go refactor(v2): init database package (#7802) 2024-04-25 06:45:34 +00:00
list_filter_test.go refactor(v2): init database package (#7802) 2024-04-25 06:45:34 +00:00
list_filter.go refactor(v2): init database package (#7802) 2024-04-25 06:45:34 +00:00
number_filter_test.go refactor(v2): init database package (#7802) 2024-04-25 06:45:34 +00:00
number_filter.go fix(eventstore): precise decimal (#8527) 2024-09-06 12:19:19 +03:00
pagination_test.go refactor(v2): init database package (#7802) 2024-04-25 06:45:34 +00:00
pagination.go refactor(v2): init database package (#7802) 2024-04-25 06:45:34 +00:00
sql_helper_test.go refactor(v2): init database package (#7802) 2024-04-25 06:45:34 +00:00
sql_helper.go refactor(v2): init database package (#7802) 2024-04-25 06:45:34 +00:00
statement_test.go refactor(v2): init database package (#7802) 2024-04-25 06:45:34 +00:00
statement.go refactor(v2): init database package (#7802) 2024-04-25 06:45:34 +00:00
text_filter_test.go refactor(v2): init database package (#7802) 2024-04-25 06:45:34 +00:00
text_filter.go refactor(v2): init database package (#7802) 2024-04-25 06:45:34 +00:00