| 58 | } |
| 59 | |
| 60 | ConstNullMapPtr getNullMapData(const ColumnPtr & column) |
| 61 | { |
| 62 | if (!column) |
| 63 | return nullptr; |
| 64 | return &assert_cast<const ColumnUInt8 &>(*column).getData(); |
| 65 | } |
| 66 | |
| 67 | template <typename TCursor> |
| 68 | int ALWAYS_INLINE compareCursors(const TCursor & lhs, size_t lpos, |
no test coverage detected