You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Remove overly restrictive validation on header feature count in write
For FileWriter, there's no good reason for Header() to enforce an
artificially restrictive feature count. Although you cannot *index*
more than math.MaxInt features, you can *write* more than that many
using the streaming approach with multiple calls to Data().
There's an analogous restriction in FileReader.Header() which could
be relaxed in the following way: no validation in Header, but if you
try to call Index() or IndexSearch(), it blows up; and if you try to
call DataRem() with more than math.MaxInt features remaining, it
blows up.
0 commit comments