Skip to content

Commit

Permalink
Fix error message (#664)
Browse files Browse the repository at this point in the history
  • Loading branch information
gtopper committed Feb 4, 2024
1 parent 31d5258 commit d7ccb94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backends/utils/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ func NewColumnFromType(t string, size int) (interface{}, error) {
return make([]bool, size), nil
}

return nil, fmt.Errorf("unknown type - %T", t)
return nil, fmt.Errorf("unknown type - %s", t)
}

// AppendNil appends an empty value to data
Expand Down

0 comments on commit d7ccb94

Please sign in to comment.