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
In the vectorized executor, we need to return the batch of rows(for the single column).
In PAX, data needs to be transformed to record batch. This is because the organize of
column data is different with record batch.
- Fixed-length columns: PAX will not pad null datum by length. But record batch requires
null padding by length.
- Non-fixed-length columns: PAX will store the datum header and use length stream.
Record batch requires removing the header and using offset array
0 commit comments