package models import "github.com/google/uuid" type UnknownRowValues = []any type Batch struct { Id uuid.UUID PartitionId uuid.UUID Rows []UnknownRowValues RetryCounter int } type Partition struct { Id uuid.UUID ParentId uuid.UUID LowerLimit int64 UpperLimit int64 IsLowerLimitInclusive bool ShouldUseRange bool RetryCounter int }