Skip to content

Commit

Permalink
ARROW-5119: [Go] fix Boolean stringer implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
sbinet committed Apr 4, 2019
1 parent 7a93316 commit 994c4ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion go/arrow/array/boolean.go
Expand Up @@ -55,7 +55,7 @@ func (a *Boolean) Value(i int) bool {
func (a *Boolean) String() string {
o := new(strings.Builder)
o.WriteString("[")
for i := range a.values {
for i := 0; i < a.Len(); i++ {
if i > 0 {
fmt.Fprintf(o, " ")
}
Expand Down

0 comments on commit 994c4ae

Please sign in to comment.