refactor: rename Batch to Partition and update related types and channels for consistency

This commit is contained in:
2026-04-11 00:09:28 -05:00
parent cd0e53b1d2
commit 9eb9821daf
11 changed files with 69 additions and 48 deletions

View File

@@ -4,14 +4,14 @@ import "github.com/google/uuid"
type UnknownRowValues = []any
type Chunk struct {
type Batch struct {
Id uuid.UUID
BatchId uuid.UUID
PartitionId uuid.UUID
Data []UnknownRowValues
RetryCounter int
}
type Batch struct {
type Partition struct {
Id uuid.UUID
ParentId uuid.UUID
LowerLimit int64