We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62b4888 commit 77d1326Copy full SHA for 77d1326
datafusion/physical-plan/src/memory.rs
@@ -56,12 +56,14 @@ pub struct MemoryExec {
56
57
impl fmt::Debug for MemoryExec {
58
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
59
- write!(f, "partitions: [...]")?;
60
- write!(f, "schema: {:?}", self.projected_schema)?;
+ write!(f, "MemoryExec {{")?;
+ write!(f, "partitions: [...], ")?;
61
+ write!(f, "schema: {:?}, ", self.projected_schema)?;
62
write!(f, "projection: {:?}", self.projection)?;
63
if let Some(sort_info) = &self.sort_information.first() {
64
write!(f, ", output_ordering: {:?}", sort_info)?;
65
}
66
+ write!(f, "}}")?;
67
Ok(())
68
69
0 commit comments