| 884 | } |
| 885 | |
| 886 | std::optional<int32_t> compareSwitch( |
| 887 | ByteInputStream& stream, |
| 888 | const BaseVector& vector, |
| 889 | vector_size_t index, |
| 890 | CompareFlags flags) { |
| 891 | return BOLT_DYNAMIC_TYPE_DISPATCH( |
| 892 | compare, vector.typeKind(), stream, vector, index, flags); |
| 893 | } |
| 894 | |
| 895 | // Returns a view over a serialized string with the string as a |
| 896 | // contiguous array of bytes. This may use 'storage' for a temporary |
no test coverage detected