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

    https://github.com/apache/spark/pull/15797#discussion_r86935972
  
    --- Diff: 
sql/core/src/main/scala/org/apache/spark/sql/execution/datasources/PartitioningUtils.scala
 ---
    @@ -451,51 +444,6 @@ object PartitioningUtils {
         }
       }
     
    -  
//////////////////////////////////////////////////////////////////////////////////////////////////
    -  // The following string escaping code is mainly copied from Hive 
(o.a.h.h.common.FileUtils).
    -  
//////////////////////////////////////////////////////////////////////////////////////////////////
    -
    -  val charToEscape = {
    -    val bitSet = new java.util.BitSet(128)
    -
    -    /**
    -     * ASCII 01-1F are HTTP control characters that need to be escaped.
    -     * \u000A and \u000D are \n and \r, respectively.
    -     */
    -    val clist = Array(
    -      '\u0001', '\u0002', '\u0003', '\u0004', '\u0005', '\u0006', 
'\u0007', '\u0008', '\u0009',
    -      '\n', '\u000B', '\u000C', '\r', '\u000E', '\u000F', '\u0010', 
'\u0011', '\u0012', '\u0013',
    -      '\u0014', '\u0015', '\u0016', '\u0017', '\u0018', '\u0019', 
'\u001A', '\u001B', '\u001C',
    -      '\u001D', '\u001E', '\u001F', '"', '#', '%', '\'', '*', '/', ':', 
'=', '?', '\\', '\u007F',
    -      '{', '[', ']', '^')
    -
    -    clist.foreach(bitSet.set(_))
    -
    -    if (Shell.WINDOWS) {
    -      Array(' ', '<', '>', '|').foreach(bitSet.set(_))
    -    }
    -
    -    bitSet
    -  }
    -
    -  def needsEscaping(c: Char): Boolean = {
    -    c >= 0 && c < charToEscape.size() && charToEscape.get(c)
    -  }
    -
    -  def escapePathName(path: String): String = {
    -    val builder = new StringBuilder()
    -    path.foreach { c =>
    -      if (needsEscaping(c)) {
    -        builder.append('%')
    -        builder.append(f"${c.asInstanceOf[Int]}%02X")
    -      } else {
    -        builder.append(c)
    -      }
    -    }
    -
    -    builder.toString()
    -  }
    -
       def unescapePathName(path: String): String = {
    --- End diff --
    
    If `escapePathName` is moved, I think we also need to move 
`unescapePathName` to the same file?


---
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