static
| 907 | |
| 908 | // static |
| 909 | int RowContainer::compareComplexType( |
| 910 | const char* row, |
| 911 | int32_t offset, |
| 912 | const DecodedVector& decoded, |
| 913 | vector_size_t index, |
| 914 | CompareFlags flags) { |
| 915 | BOLT_DCHECK(flags.nullAsValue(), "not supported null handling mode"); |
| 916 | |
| 917 | auto stream = prepareRead(row, offset); |
| 918 | return ContainerRowSerde::compare(*stream, decoded, index, flags); |
| 919 | } |
| 920 | |
| 921 | int32_t RowContainer::compareStringAsc(StringView left, StringView right) { |
| 922 | // Depends on StringView's layout |
nothing calls this directly
no test coverage detected