You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by al...@apache.org on 2021/07/15 11:47:46 UTC

[arrow-datafusion] branch master updated: provide more details on required .parquet file extension error message (#729)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 1dd1bd5  provide more details on required .parquet file extension error message (#729)
1dd1bd5 is described below

commit 1dd1bd5c949d429244783c34320d952b90a2e266
Author: Jiayu Liu <Ji...@users.noreply.github.com>
AuthorDate: Thu Jul 15 19:47:41 2021 +0800

    provide more details on required .parquet file extension error message (#729)
    
    * provide more details on required .parquet file extension
    
    * Update datafusion/src/physical_plan/parquet.rs
---
 datafusion/src/physical_plan/parquet.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/datafusion/src/physical_plan/parquet.rs b/datafusion/src/physical_plan/parquet.rs
index 63e11d5..f606b53 100644
--- a/datafusion/src/physical_plan/parquet.rs
+++ b/datafusion/src/physical_plan/parquet.rs
@@ -135,7 +135,7 @@ impl ParquetExec {
         let filenames = common::build_file_list(path, ".parquet")?;
         if filenames.is_empty() {
             Err(DataFusionError::Plan(format!(
-                "No Parquet files found at path {}",
+                "No Parquet files (with .parquet extension) found at path {}",
                 path
             )))
         } else {