| 1203 | } |
| 1204 | |
| 1205 | std::optional<int32_t> ContainerRowSerde::compareWithNulls( |
| 1206 | ByteInputStream& left, |
| 1207 | const DecodedVector& right, |
| 1208 | vector_size_t index, |
| 1209 | CompareFlags flags) { |
| 1210 | BOLT_DCHECK( |
| 1211 | !right.isNullAt(index), "Null top-level values are not supported"); |
| 1212 | return compareSwitch(left, *right.base(), right.index(index), flags); |
| 1213 | } |
| 1214 | |
| 1215 | std::optional<int32_t> ContainerRowSerde::compareWithNulls( |
| 1216 | ByteInputStream& left, |
nothing calls this directly
no test coverage detected