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

    https://github.com/apache/spark/pull/20611#discussion_r180993068
  
    --- Diff: 
sql/core/src/main/scala/org/apache/spark/sql/execution/command/tables.scala ---
    @@ -370,26 +339,35 @@ case class LoadDataCommand(
                 throw new AnalysisException(
                   s"LOAD DATA: URI scheme is required for non-local input 
paths: '$path'")
               }
    -
               // Follow Hive's behavior:
               // If LOCAL is not specified, and the path is relative,
               // then the path is interpreted relative to "/user/<username>"
               val uriPath = uri.getPath()
               val absolutePath = if (uriPath != null && 
uriPath.startsWith("/")) {
                 uriPath
               } else {
    -            s"/user/${System.getProperty("user.name")}/$uriPath"
    +            s"/user/${ System.getProperty("user.name") }/$uriPath"
    --- End diff --
    
    nit: Please remove space


---

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

Reply via email to