Sets a flag which controls if the output schema is displayed
(&mut self, with_schema: bool)
| 296 | |
| 297 | /// Sets a flag which controls if the output schema is displayed |
| 298 | pub fn with_schema(&mut self, with_schema: bool) { |
| 299 | self.with_schema = with_schema; |
| 300 | } |
| 301 | |
| 302 | /// Converts a logical plan node to a json object. |
| 303 | fn to_json_value(node: &LogicalPlan) -> serde_json::Value { |