fix(eventstore): use decimal, correct mirror (#9903)

back port #9812, #9878, #9881, #9884

---------

Co-authored-by: Livio Spring <livio.a@gmail.com>
Co-authored-by: Stefan Benz <46600784+stebenz@users.noreply.github.com>
This commit is contained in:
Silvan
2025-05-20 12:21:29 +02:00
committed by GitHub
parent dcd9b8eb6e
commit 2221498a08
62 changed files with 562 additions and 343 deletions

View File

@@ -6,6 +6,7 @@ import (
"strconv"
"time"
"github.com/shopspring/decimal"
"github.com/zitadel/logging"
"github.com/zitadel/zitadel/internal/api/authz"
"github.com/zitadel/zitadel/internal/eventstore"
@@ -41,7 +42,7 @@ type event struct {
command *command
createdAt time.Time
sequence uint64
position float64
position decimal.Decimal
}
// TODO: remove on v3
@@ -151,8 +152,8 @@ func (e *event) Sequence() uint64 {
return e.sequence
}
// Sequence implements [eventstore.Event]
func (e *event) Position() float64 {
// Position implements [eventstore.Event]
func (e *event) Position() decimal.Decimal {
return e.position
}