Github user sujith71955 commented on a diff in the pull request:

    https://github.com/apache/spark/pull/20611#discussion_r174868215
  
    --- Diff: 
sql/core/src/main/scala/org/apache/spark/sql/execution/command/tables.scala ---
    @@ -385,8 +385,12 @@ case class LoadDataCommand(
             val hadoopConf = sparkSession.sessionState.newHadoopConf()
             val srcPath = new Path(hdfsUri)
             val fs = srcPath.getFileSystem(hadoopConf)
    -        if (!fs.exists(srcPath)) {
    -          throw new AnalysisException(s"LOAD DATA input path does not 
exist: $path")
    +        // A validaton logic is been added for non local files, Error will 
be thrown
    +        // If hdfs path doest not exist or if no files matches the wild 
card defined
    +        // in load path
    --- End diff --
    
    yeah i updated the comment, the above comment is more precise. 


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to