Github user dongjoon-hyun commented on a diff in the pull request:

    https://github.com/apache/spark/pull/15376#discussion_r83712851
  
    --- Diff: 
sql/core/src/main/scala/org/apache/spark/sql/execution/command/tables.scala ---
    @@ -246,7 +247,28 @@ case class LoadDataCommand(
         val loadPath =
           if (isLocal) {
             val uri = Utils.resolveURI(path)
    -        if (!new File(uri.getPath()).exists()) {
    +        val filePath = uri.getPath()
    +        val exists = if (filePath.contains("*")) {
    +          val fileSystem = FileSystems.getDefault
    +          val pathPattern = fileSystem.getPath(filePath)
    +          val dir = pathPattern.getParent.toString
    +          val filePattern = pathPattern.getName(pathPattern.getNameCount - 
1).toString
    +          if (dir.contains("*")) {
    +            throw new AnalysisException(
    +              s"LOAD DATA input path allows only filename wildcard: $path")
    +          }
    +
    +          val files = new File(dir).listFiles()
    +          if (files == null) {
    +            false
    +          } else {
    +            val matcher = fileSystem.getPathMatcher("glob:" + filePattern)
    --- End diff --
    
    Ah, I think I missed your point. I will update the code to use absolute 
path here, too.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

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

Reply via email to