Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
max-hoffman committed Nov 22, 2024
1 parent 3428267 commit 65d5075
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions go/libraries/doltcore/env/actions/dolt_ci/workflow_manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -632,12 +632,10 @@ func (d *doltWorkflowManager) sqlReadQuery(ctx *sql.Context, query string, cb fu

size := len(sch)
for _, row := range rows {

cvs := make(columnValues, size)

for i := range size {
for i := range sch {
col := sch[i]
val := row[i]
val := row.GetValue(i)
cv, err := newColumnValue(col, val)
if err != nil {
return err
Expand Down

0 comments on commit 65d5075

Please sign in to comment.