If `serde` is not specified, fallback to the default registered.
| 310 | public: |
| 311 | /// If `serde` is not specified, fallback to the default registered. |
| 312 | explicit VectorStreamGroup( |
| 313 | memory::MemoryPool* FOLLY_NONNULL pool, |
| 314 | VectorSerde* serde = nullptr) |
| 315 | : StreamArena(pool), |
| 316 | serde_(serde != nullptr ? serde : getVectorSerde()) {} |
| 317 | |
| 318 | void createStreamTree( |
| 319 | RowTypePtr type, |
nothing calls this directly
no test coverage detected