feat: refactor job result handling and remove unused files

This commit is contained in:
2026-04-16 16:47:35 -05:00
parent 39c0d99502
commit 93b302db8e
5 changed files with 22 additions and 97 deletions

View File

@@ -1,6 +1,10 @@
package models
import "github.com/google/uuid"
import (
"time"
"github.com/google/uuid"
)
type UnknownRowValues = []any
@@ -25,3 +29,13 @@ type Partition struct {
HasRange bool
RetryCounter int
}
type JobResult struct {
JobName string
StartTime time.Time
Duration time.Duration
RowsRead int64
RowsLoaded int64
RowsFailed int64
Error error
}