datafusion_expr/logical_plan/display.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
//! This module provides logic for displaying LogicalPlans in various styles
use std::collections::HashMap;
use std::fmt;
use crate::{
expr_vec_fmt, Aggregate, DescribeTable, Distinct, DistinctOn, DmlStatement, Execute,
Expr, Filter, Join, Limit, LogicalPlan, Partitioning, Prepare, Projection,
RecursiveQuery, Repartition, Sort, Subquery, SubqueryAlias,
TableProviderFilterPushDown, TableScan, Unnest, Values, Window,
};
use crate::dml::CopyTo;
use arrow::datatypes::Schema;
use datafusion_common::display::GraphvizBuilder;
use datafusion_common::tree_node::{TreeNodeRecursion, TreeNodeVisitor};
use datafusion_common::{Column, DataFusionError};
use serde_json::json;
/// Formats plans with a single line per node. For example:
///
/// Projection: id
/// Filter: state Eq Utf8(\"CO\")\
/// CsvScan: employee.csv projection=Some([0, 3])";
pub struct IndentVisitor<'a, 'b> {
f: &'a mut fmt::Formatter<'b>,
/// If true, includes summarized schema information
with_schema: bool,
/// The current indent
indent: usize,
}
impl<'a, 'b> IndentVisitor<'a, 'b> {
/// Create a visitor that will write a formatted LogicalPlan to f. If `with_schema` is
/// true, includes schema information on each line.
pub fn new(f: &'a mut fmt::Formatter<'b>, with_schema: bool) -> Self {
Self {
f,
with_schema,
indent: 0,
}
}
}
impl<'n, 'a, 'b> TreeNodeVisitor<'n> for IndentVisitor<'a, 'b> {
type Node = LogicalPlan;
fn f_down(
&mut self,
plan: &'n LogicalPlan,
) -> datafusion_common::Result<TreeNodeRecursion> {
if self.indent > 0 {
writeln!(self.f)?;
}
write!(self.f, "{:indent$}", "", indent = self.indent * 2)?;
write!(self.f, "{}", plan.display())?;
if self.with_schema {
write!(
self.f,
" {}",
display_schema(&plan.schema().as_ref().to_owned().into())
)?;
}
self.indent += 1;
Ok(TreeNodeRecursion::Continue)
}
fn f_up(
&mut self,
_plan: &'n LogicalPlan,
) -> datafusion_common::Result<TreeNodeRecursion> {
self.indent -= 1;
Ok(TreeNodeRecursion::Continue)
}
}
/// Print the schema in a compact representation to `buf`
///
/// For example: `foo:Utf8` if `foo` can not be null, and
/// `foo:Utf8;N` if `foo` is nullable.
///
/// ```
/// use arrow::datatypes::{Field, Schema, DataType};
/// # use datafusion_expr::logical_plan::display_schema;
/// let schema = Schema::new(vec![
/// Field::new("id", DataType::Int32, false),
/// Field::new("first_name", DataType::Utf8, true),
/// ]);
///
/// assert_eq!(
/// "[id:Int32, first_name:Utf8;N]",
/// format!("{}", display_schema(&schema))
/// );
/// ```
pub fn display_schema(schema: &Schema) -> impl fmt::Display + '_ {
struct Wrapper<'a>(&'a Schema);
impl<'a> fmt::Display for Wrapper<'a> {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "[")?;
for (idx, field) in self.0.fields().iter().enumerate() {
if idx > 0 {
write!(f, ", ")?;
}
let nullable_str = if field.is_nullable() { ";N" } else { "" };
write!(
f,
"{}:{:?}{}",
field.name(),
field.data_type(),
nullable_str
)?;
}
write!(f, "]")
}
}
Wrapper(schema)
}
/// Formats plans for graphical display using the `DOT` language. This
/// format can be visualized using software from
/// [`graphviz`](https://graphviz.org/)
pub struct GraphvizVisitor<'a, 'b> {
f: &'a mut fmt::Formatter<'b>,
graphviz_builder: GraphvizBuilder,
/// If true, includes summarized schema information
with_schema: bool,
/// Holds the ids (as generated from `graphviz_builder` of all
/// parent nodes
parent_ids: Vec<usize>,
}
impl<'a, 'b> GraphvizVisitor<'a, 'b> {
pub fn new(f: &'a mut fmt::Formatter<'b>) -> Self {
Self {
f,
graphviz_builder: GraphvizBuilder::default(),
with_schema: false,
parent_ids: Vec::new(),
}
}
/// Sets a flag which controls if the output schema is displayed
pub fn set_with_schema(&mut self, with_schema: bool) {
self.with_schema = with_schema;
}
pub fn pre_visit_plan(&mut self, label: &str) -> fmt::Result {
self.graphviz_builder.start_cluster(self.f, label)
}
pub fn post_visit_plan(&mut self) -> fmt::Result {
self.graphviz_builder.end_cluster(self.f)
}
pub fn start_graph(&mut self) -> fmt::Result {
self.graphviz_builder.start_graph(self.f)
}
pub fn end_graph(&mut self) -> fmt::Result {
self.graphviz_builder.end_graph(self.f)
}
}
impl<'n, 'a, 'b> TreeNodeVisitor<'n> for GraphvizVisitor<'a, 'b> {
type Node = LogicalPlan;
fn f_down(
&mut self,
plan: &'n LogicalPlan,
) -> datafusion_common::Result<TreeNodeRecursion> {
let id = self.graphviz_builder.next_id();
// Create a new graph node for `plan` such as
// id [label="foo"]
let label = if self.with_schema {
format!(
r"{}\nSchema: {}",
plan.display(),
display_schema(&plan.schema().as_ref().to_owned().into())
)
} else {
format!("{}", plan.display())
};
self.graphviz_builder
.add_node(self.f, id, &label, None)
.map_err(|_e| DataFusionError::Internal("Fail to format".to_string()))?;
// Create an edge to our parent node, if any
// parent_id -> id
if let Some(parent_id) = self.parent_ids.last() {
self.graphviz_builder
.add_edge(self.f, *parent_id, id)
.map_err(|_e| DataFusionError::Internal("Fail to format".to_string()))?;
}
self.parent_ids.push(id);
Ok(TreeNodeRecursion::Continue)
}
fn f_up(
&mut self,
_plan: &LogicalPlan,
) -> datafusion_common::Result<TreeNodeRecursion> {
// always be non-empty as pre_visit always pushes
// So it should always be Ok(true)
let res = self.parent_ids.pop();
res.ok_or(DataFusionError::Internal("Fail to format".to_string()))
.map(|_| TreeNodeRecursion::Continue)
}
}
/// Formats plans to display as postgresql plan json format.
///
/// There are already many existing visualizer for this format, for example [dalibo](https://explain.dalibo.com/).
/// Unfortunately, there is no formal spec for this format, but it is widely used in the PostgreSQL community.
///
/// Here is an example of the format:
///
/// ```json
/// [
/// {
/// "Plan": {
/// "Node Type": "Sort",
/// "Output": [
/// "question_1.id",
/// "question_1.title",
/// "question_1.text",
/// "question_1.file",
/// "question_1.type",
/// "question_1.source",
/// "question_1.exam_id"
/// ],
/// "Sort Key": [
/// "question_1.id"
/// ],
/// "Plans": [
/// {
/// "Node Type": "Seq Scan",
/// "Parent Relationship": "Left",
/// "Relation Name": "question",
/// "Schema": "public",
/// "Alias": "question_1",
/// "Output": [
/// "question_1.id",
/// "question_1.title",
/// "question_1.text",
/// "question_1.file",
/// "question_1.type",
/// "question_1.source",
/// "question_1.exam_id"
/// ],
/// "Filter": "(question_1.exam_id = 1)"
/// }
/// ]
/// }
/// }
/// ]
/// ```
pub struct PgJsonVisitor<'a, 'b> {
f: &'a mut fmt::Formatter<'b>,
/// A mapping from plan node id to the plan node json representation.
objects: HashMap<u32, serde_json::Value>,
next_id: u32,
/// If true, includes summarized schema information
with_schema: bool,
/// Holds the ids (as generated from `graphviz_builder` of all
/// parent nodes
parent_ids: Vec<u32>,
}
impl<'a, 'b> PgJsonVisitor<'a, 'b> {
pub fn new(f: &'a mut fmt::Formatter<'b>) -> Self {
Self {
f,
objects: HashMap::new(),
next_id: 0,
with_schema: false,
parent_ids: Vec::new(),
}
}
/// Sets a flag which controls if the output schema is displayed
pub fn with_schema(&mut self, with_schema: bool) {
self.with_schema = with_schema;
}
/// Converts a logical plan node to a json object.
fn to_json_value(node: &LogicalPlan) -> serde_json::Value {
match node {
LogicalPlan::EmptyRelation(_) => {
json!({
"Node Type": "EmptyRelation",
})
}
LogicalPlan::RecursiveQuery(RecursiveQuery { is_distinct, .. }) => {
json!({
"Node Type": "RecursiveQuery",
"Is Distinct": is_distinct,
})
}
LogicalPlan::Values(Values { ref values, .. }) => {
let str_values = values
.iter()
// limit to only 5 values to avoid horrible display
.take(5)
.map(|row| {
let item = row
.iter()
.map(|expr| expr.to_string())
.collect::<Vec<_>>()
.join(", ");
format!("({item})")
})
.collect::<Vec<_>>()
.join(", ");
let eclipse = if values.len() > 5 { "..." } else { "" };
let values_str = format!("{}{}", str_values, eclipse);
json!({
"Node Type": "Values",
"Values": values_str
})
}
LogicalPlan::TableScan(TableScan {
ref source,
ref table_name,
ref filters,
ref fetch,
..
}) => {
let mut object = json!({
"Node Type": "TableScan",
"Relation Name": table_name.table(),
});
if let Some(s) = table_name.schema() {
object["Schema"] = serde_json::Value::String(s.to_string());
}
if let Some(c) = table_name.catalog() {
object["Catalog"] = serde_json::Value::String(c.to_string());
}
if !filters.is_empty() {
let mut full_filter = vec![];
let mut partial_filter = vec![];
let mut unsupported_filters = vec![];
let filters: Vec<&Expr> = filters.iter().collect();
if let Ok(results) = source.supports_filters_pushdown(&filters) {
filters.iter().zip(results.iter()).for_each(
|(x, res)| match res {
TableProviderFilterPushDown::Exact => full_filter.push(x),
TableProviderFilterPushDown::Inexact => {
partial_filter.push(x)
}
TableProviderFilterPushDown::Unsupported => {
unsupported_filters.push(x)
}
},
);
}
if !full_filter.is_empty() {
object["Full Filters"] =
serde_json::Value::String(expr_vec_fmt!(full_filter));
};
if !partial_filter.is_empty() {
object["Partial Filters"] =
serde_json::Value::String(expr_vec_fmt!(partial_filter));
}
if !unsupported_filters.is_empty() {
object["Unsupported Filters"] =
serde_json::Value::String(expr_vec_fmt!(unsupported_filters));
}
}
if let Some(f) = fetch {
object["Fetch"] = serde_json::Value::Number((*f).into());
}
object
}
LogicalPlan::Projection(Projection { ref expr, .. }) => {
json!({
"Node Type": "Projection",
"Expressions": expr.iter().map(|e| e.to_string()).collect::<Vec<_>>()
})
}
LogicalPlan::Dml(DmlStatement { table_name, op, .. }) => {
json!({
"Node Type": "Projection",
"Operation": op.name(),
"Table Name": table_name.table()
})
}
LogicalPlan::Copy(CopyTo {
input: _,
output_url,
file_type,
partition_by: _,
options,
}) => {
let op_str = options
.iter()
.map(|(k, v)| format!("{}={}", k, v))
.collect::<Vec<_>>()
.join(", ");
json!({
"Node Type": "CopyTo",
"Output URL": output_url,
"File Type": format!("{}", file_type.get_ext()),
"Options": op_str
})
}
LogicalPlan::Ddl(ddl) => {
json!({
"Node Type": "Ddl",
"Operation": format!("{}", ddl.display())
})
}
LogicalPlan::Filter(Filter {
predicate: ref expr,
..
}) => {
json!({
"Node Type": "Filter",
"Condition": format!("{}", expr)
})
}
LogicalPlan::Window(Window {
ref window_expr, ..
}) => {
json!({
"Node Type": "WindowAggr",
"Expressions": expr_vec_fmt!(window_expr)
})
}
LogicalPlan::Aggregate(Aggregate {
ref group_expr,
ref aggr_expr,
..
}) => {
json!({
"Node Type": "Aggregate",
"Group By": expr_vec_fmt!(group_expr),
"Aggregates": expr_vec_fmt!(aggr_expr)
})
}
LogicalPlan::Sort(Sort { expr, fetch, .. }) => {
let mut object = json!({
"Node Type": "Sort",
"Sort Key": expr_vec_fmt!(expr),
});
if let Some(fetch) = fetch {
object["Fetch"] = serde_json::Value::Number((*fetch).into());
}
object
}
LogicalPlan::Join(Join {
on: ref keys,
filter,
join_constraint,
join_type,
..
}) => {
let join_expr: Vec<String> =
keys.iter().map(|(l, r)| format!("{l} = {r}")).collect();
let filter_expr = filter
.as_ref()
.map(|expr| format!(" Filter: {expr}"))
.unwrap_or_else(|| "".to_string());
json!({
"Node Type": format!("{} Join", join_type),
"Join Constraint": format!("{:?}", join_constraint),
"Join Keys": join_expr.join(", "),
"Filter": format!("{}", filter_expr)
})
}
LogicalPlan::Repartition(Repartition {
partitioning_scheme,
..
}) => match partitioning_scheme {
Partitioning::RoundRobinBatch(n) => {
json!({
"Node Type": "Repartition",
"Partitioning Scheme": "RoundRobinBatch",
"Partition Count": n
})
}
Partitioning::Hash(expr, n) => {
let hash_expr: Vec<String> =
expr.iter().map(|e| format!("{e}")).collect();
json!({
"Node Type": "Repartition",
"Partitioning Scheme": "Hash",
"Partition Count": n,
"Partitioning Key": hash_expr
})
}
Partitioning::DistributeBy(expr) => {
let dist_by_expr: Vec<String> =
expr.iter().map(|e| format!("{e}")).collect();
json!({
"Node Type": "Repartition",
"Partitioning Scheme": "DistributeBy",
"Partitioning Key": dist_by_expr
})
}
},
LogicalPlan::Limit(Limit {
ref skip,
ref fetch,
..
}) => {
let mut object = serde_json::json!(
{
"Node Type": "Limit",
}
);
if let Some(s) = skip {
object["Skip"] = s.to_string().into()
};
if let Some(f) = fetch {
object["Fetch"] = f.to_string().into()
};
object
}
LogicalPlan::Subquery(Subquery { .. }) => {
json!({
"Node Type": "Subquery"
})
}
LogicalPlan::SubqueryAlias(SubqueryAlias { ref alias, .. }) => {
json!({
"Node Type": "Subquery",
"Alias": alias.table(),
})
}
LogicalPlan::Statement(statement) => {
json!({
"Node Type": "Statement",
"Statement": format!("{}", statement.display())
})
}
LogicalPlan::Distinct(distinct) => match distinct {
Distinct::All(_) => {
json!({
"Node Type": "DistinctAll"
})
}
Distinct::On(DistinctOn {
on_expr,
select_expr,
sort_expr,
..
}) => {
let mut object = json!({
"Node Type": "DistinctOn",
"On": expr_vec_fmt!(on_expr),
"Select": expr_vec_fmt!(select_expr),
});
if let Some(sort_expr) = sort_expr {
object["Sort"] =
serde_json::Value::String(expr_vec_fmt!(sort_expr));
}
object
}
},
LogicalPlan::Explain { .. } => {
json!({
"Node Type": "Explain"
})
}
LogicalPlan::Analyze { .. } => {
json!({
"Node Type": "Analyze"
})
}
LogicalPlan::Union(_) => {
json!({
"Node Type": "Union"
})
}
LogicalPlan::Extension(e) => {
json!({
"Node Type": e.node.name(),
"Detail": format!("{:?}", e.node)
})
}
LogicalPlan::Prepare(Prepare {
name, data_types, ..
}) => {
json!({
"Node Type": "Prepare",
"Name": name,
"Data Types": format!("{:?}", data_types)
})
}
LogicalPlan::Execute(Execute {
name, parameters, ..
}) => {
json!({
"Node Type": "Execute",
"Name": name,
"Parameters": expr_vec_fmt!(parameters),
})
}
LogicalPlan::DescribeTable(DescribeTable { .. }) => {
json!({
"Node Type": "DescribeTable"
})
}
LogicalPlan::Unnest(Unnest {
input: plan,
list_type_columns: list_col_indices,
struct_type_columns: struct_col_indices,
..
}) => {
let input_columns = plan.schema().columns();
let list_type_columns = list_col_indices
.iter()
.map(|(i, unnest_info)| {
format!(
"{}|depth={:?}",
&input_columns[*i].to_string(),
unnest_info.depth
)
})
.collect::<Vec<String>>();
let struct_type_columns = struct_col_indices
.iter()
.map(|i| &input_columns[*i])
.collect::<Vec<&Column>>();
json!({
"Node Type": "Unnest",
"ListColumn": expr_vec_fmt!(list_type_columns),
"StructColumn": expr_vec_fmt!(struct_type_columns),
})
}
}
}
}
impl<'n, 'a, 'b> TreeNodeVisitor<'n> for PgJsonVisitor<'a, 'b> {
type Node = LogicalPlan;
fn f_down(
&mut self,
node: &'n LogicalPlan,
) -> datafusion_common::Result<TreeNodeRecursion> {
let id = self.next_id;
self.next_id += 1;
let mut object = Self::to_json_value(node);
object["Plans"] = serde_json::Value::Array(vec![]);
if self.with_schema {
object["Output"] = serde_json::Value::Array(
node.schema()
.fields()
.iter()
.map(|f| f.name().to_string())
.map(serde_json::Value::String)
.collect(),
);
};
self.objects.insert(id, object);
self.parent_ids.push(id);
Ok(TreeNodeRecursion::Continue)
}
fn f_up(
&mut self,
_node: &Self::Node,
) -> datafusion_common::Result<TreeNodeRecursion> {
let id = self.parent_ids.pop().unwrap();
let current_node = self.objects.remove(&id).ok_or_else(|| {
DataFusionError::Internal("Missing current node!".to_string())
})?;
if let Some(parent_id) = self.parent_ids.last() {
let parent_node = self
.objects
.get_mut(parent_id)
.expect("Missing parent node!");
let plans = parent_node
.get_mut("Plans")
.and_then(|p| p.as_array_mut())
.expect("Plans should be an array");
plans.push(current_node);
} else {
// This is the root node
let plan = serde_json::json!([{"Plan": current_node}]);
write!(
self.f,
"{}",
serde_json::to_string_pretty(&plan)
.map_err(|e| DataFusionError::External(Box::new(e)))?
)?;
}
Ok(TreeNodeRecursion::Continue)
}
}
#[cfg(test)]
mod tests {
use arrow::datatypes::{DataType, Field};
use super::*;
#[test]
fn test_display_empty_schema() {
let schema = Schema::empty();
assert_eq!("[]", format!("{}", display_schema(&schema)));
}
#[test]
fn test_display_schema() {
let schema = Schema::new(vec![
Field::new("id", DataType::Int32, false),
Field::new("first_name", DataType::Utf8, true),
]);
assert_eq!(
"[id:Int32, first_name:Utf8;N]",
format!("{}", display_schema(&schema))
);
}
}