Closed coastalwhite closed 5 days ago
Attention: Patch coverage is 58.53659%
with 34 lines
in your changes missing coverage. Please review.
Project coverage is 59.28%. Comparing base (
414d883
) to head (7615e2c
). Report is 1 commits behind head on main.
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
🚨 Try these New Features:
This changes the encoding of
pl.Boolean
in the row encoding from needing 2 bytes (1 for validity, 1 for value) to 1 byte. Now, the encoding of Boolean values is as follows:None
0x00
False
0x20
True
0x30
The null is bitwise inverted for
nulls_last=True
andFalse
/True
are inverted fordescending=True
.This is a continuation of #19874.