Serialize a LogicalPlan as bytes
(plan: &LogicalPlan)
| 109 | |
| 110 | /// Serialize a LogicalPlan as bytes |
| 111 | pub fn logical_plan_to_bytes(plan: &LogicalPlan) -> Result<Bytes> { |
| 112 | let extension_codec = DefaultLogicalExtensionCodec {}; |
| 113 | logical_plan_to_bytes_with_extension_codec(plan, &extension_codec) |
| 114 | } |
| 115 | |
| 116 | /// Serialize a LogicalPlan as JSON |
| 117 | #[cfg(feature = "json")] |
searching dependent graphs…