Skip to content

Commit

Permalink
fix error message of parquet.ErrTooManyRowGroups (xitongsys#395)
Browse files Browse the repository at this point in the history
  • Loading branch information
Achille authored Oct 31, 2022
1 parent 00ea957 commit d1e5903
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion errors.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ var (

// ErrTooManyRowGroups is returned when attempting to generate a parquet
// file with more than MaxRowGroups row groups.
ErrTooManyRowGroups = errors.New("the limit of 65535 row groups has been reached")
ErrTooManyRowGroups = errors.New("the limit of 32767 row groups has been reached")
)

type errno int
Expand Down

0 comments on commit d1e5903

Please sign in to comment.