23 lines
435 B
Go
23 lines
435 B
Go
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
|
|
}
|