(&self, tuple: &[u8], col_idx: usize)
| 375 | } |
| 376 | |
| 377 | fn is_null_unchecked(&self, tuple: &[u8], col_idx: usize) -> bool { |
| 378 | let bitmap_byte = tuple[9 + col_idx / 8]; |
| 379 | bitmap_byte & (1 << (col_idx % 8)) != 0 |
| 380 | } |
| 381 | } |
| 382 | |
| 383 | /// Extract a fixed Int64 column as a raw i64. |
no outgoing calls
no test coverage detected