| 606 | } |
| 607 | |
| 608 | void deserializeSwitch( |
| 609 | ByteInputStream& in, |
| 610 | vector_size_t index, |
| 611 | BaseVector& result, |
| 612 | bool exactSize) { |
| 613 | BOLT_DYNAMIC_TYPE_DISPATCH( |
| 614 | deserializeOne, result.typeKind(), in, index, result, exactSize); |
| 615 | } |
| 616 | |
| 617 | void deserializeManySwitch( |
| 618 | ByteInputStream& in, |
no test coverage detected