Make ArrayJobId int64

This commit is contained in:
Jan Eitzinger 2022-09-11 07:11:41 +02:00
parent 5e002def0a
commit eb5d3581d1

View File

@ -20,7 +20,7 @@ type BaseJob struct {
Cluster string `json:"cluster" db:"cluster"` Cluster string `json:"cluster" db:"cluster"`
SubCluster string `json:"subCluster" db:"subcluster"` SubCluster string `json:"subCluster" db:"subcluster"`
Partition string `json:"partition" db:"partition"` Partition string `json:"partition" db:"partition"`
ArrayJobId int32 `json:"arrayJobId" db:"array_job_id"` ArrayJobId int64 `json:"arrayJobId" db:"array_job_id"`
NumNodes int32 `json:"numNodes" db:"num_nodes"` NumNodes int32 `json:"numNodes" db:"num_nodes"`
NumHWThreads int32 `json:"numHwthreads" db:"num_hwthreads"` NumHWThreads int32 `json:"numHwthreads" db:"num_hwthreads"`
NumAcc int32 `json:"numAcc" db:"num_acc"` NumAcc int32 `json:"numAcc" db:"num_acc"`