Open a10y opened 3 weeks ago
FWIW I investigated it and the only weird thing is Arrow uses u128 and u256 only for Decimal arrays not for primitive ones. So those don't translate to arrow directly. Arrow workaround is to have a typed buffer that can be u128 but not array
Hmm, perhaps then VarBinView should hold the views in a Buffer rather than child array, side-steps that
You could also do that just have to make sure it's properly aligned. I was thinking you could compress that view buffer but we can deal with it later
There are a number of suboptimal ways we treat VarBinView compute functions because we cannot support
u128
as a native PType for PrimitiveArray