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
So for the last iteration the buffer is not cleared for the rows which are not needed. This could mean that some rows of the Table are read twice...
What do you think @iguinn ?
The text was updated successfully, but these errors were encountered:
you always have to use n_rows_read returned by the iterator, otherwise you will get duplicate rows. This is - at the moment - expected and documented(?) behaviour.
gipert
changed the title
Bug in LH5iterator if buffer size doesnt divide table size
LH5iterator behaviour if buffer size doesnt divide table size
Nov 21, 2024
When reading a
LGDO.Table
withlh5.LH5Iterator
if the buffer size does not divide the size of the table some data is read twice in the last iteration.For example:
Which results in:
So for the last iteration the buffer is not cleared for the rows which are not needed. This could mean that some rows of the
Table
are read twice...What do you think @iguinn ?
The text was updated successfully, but these errors were encountered: