This is an automated email from the ASF dual-hosted git repository.

alamb pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-datafusion.git


The following commit(s) were added to refs/heads/main by this push:
     new 9e8e096c07 Minor fix for the Debug of FileScanConfig (#6454)
9e8e096c07 is described below

commit 9e8e096c07cec2a71c24d2c35fa83b02e2754c53
Author: yahoNanJing <[email protected]>
AuthorDate: Fri May 26 19:11:25 2023 +0800

    Minor fix for the Debug of FileScanConfig (#6454)
    
    Co-authored-by: yangzhong <[email protected]>
---
 datafusion/core/src/physical_plan/file_format/mod.rs | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/datafusion/core/src/physical_plan/file_format/mod.rs 
b/datafusion/core/src/physical_plan/file_format/mod.rs
index 7e719e2ee9..a05c0cf8c8 100644
--- a/datafusion/core/src/physical_plan/file_format/mod.rs
+++ b/datafusion/core/src/physical_plan/file_format/mod.rs
@@ -240,9 +240,9 @@ impl FileScanConfig {
 
 impl Debug for FileScanConfig {
     fn fmt(&self, f: &mut Formatter<'_>) -> FmtResult {
-        write!(f, "object_store_url={:?}", self.object_store_url)?;
+        write!(f, "object_store_url={:?}, ", self.object_store_url)?;
 
-        write!(f, "statistics={:?}", self.statistics)?;
+        write!(f, "statistics={:?}, ", self.statistics)?;
 
         Display::fmt(self, f)
     }

Reply via email to