Deserialize a LogicalPlan from bytes
(bytes: &[u8], ctx: &TaskContext)
| 156 | |
| 157 | /// Deserialize a LogicalPlan from bytes |
| 158 | pub fn logical_plan_from_bytes(bytes: &[u8], ctx: &TaskContext) -> Result<LogicalPlan> { |
| 159 | let extension_codec = DefaultLogicalExtensionCodec {}; |
| 160 | logical_plan_from_bytes_with_extension_codec(bytes, ctx, &extension_codec) |
| 161 | } |
| 162 | |
| 163 | /// Deserialize a LogicalPlan from bytes |
| 164 | pub fn logical_plan_from_bytes_with_extension_codec( |
searching dependent graphs…