feat: add MANZANA migration job and update related processing logic

This commit is contained in:
2026-04-08 10:16:27 -05:00
parent 3765e8adb3
commit 75b04d4b2e
5 changed files with 19 additions and 18 deletions

View File

@@ -55,12 +55,10 @@ func generatePuertoRows(
) {
defer close(out)
rand.Seed(time.Now().UnixNano())
rowsGenerated := 0
currentChunk := make([]UnknownRowValues, 0, chunkSize)
for i := 0; i < totalRows; i++ {
for range totalRows {
row := generatePuertoRow()
currentChunk = append(currentChunk, row)
rowsGenerated++