Dandandan commented on issue #7450:
URL: https://github.com/apache/arrow-rs/issues/7450#issuecomment-2849021383
> Concatenating/slicing selectors tricker
It seems just adding "0" on odd elements to denote "select 0" gives the same
meaning?
Currently the output of
> Can not accept row selectors that have two consecutive select/skip.
Skip (5), Skip(5) is identical to Skip(10), so what would be the benefit
from having consecutive select/skip?
> Another potential option might be an enum like this:
> ```
> enum RowSelector {
> Skip(usize),
> Scan(usize),
> Bitmap(BooleanBuffer),
> }
> ```
Downside is that it is also 16 bytes per element instead of 8.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]