Closed
Description
From #15755 (e.g. this comment).
Current status:
- there is a check on
nrows
, which ensure floats are converted to int with no loss of precision, but not that the resulting/passed value is non-negative - there is no check on
chunksize
, so that apd.concat
based onchunksize=0
will enter an infinite loop
I guess we want to ensure chunksize > 0
and nrows >= 0
.