| 34 | namespace bytedance::bolt::exec { |
| 35 | |
| 36 | void registerPartitionFunctionSerDe() { |
| 37 | auto& registry = DeserializationWithContextRegistryForSharedPtr(); |
| 38 | |
| 39 | registry.Register( |
| 40 | "HashPartitionFunctionSpec", HashPartitionFunctionSpec::deserialize); |
| 41 | registry.Register( |
| 42 | "RoundRobinPartitionFunctionSpec", |
| 43 | RoundRobinPartitionFunctionSpec::deserialize); |
| 44 | } |
| 45 | |
| 46 | } // namespace bytedance::bolt::exec |