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

    https://github.com/apache/spark/pull/20087#discussion_r161698145
  
    --- Diff: 
sql/core/src/main/scala/org/apache/spark/sql/execution/datasources/orc/OrcOptions.scala
 ---
    @@ -61,7 +61,7 @@ class OrcOptions(
     
     object OrcOptions {
       // The ORC compression short names
    -  private val shortOrcCompressionCodecNames = Map(
    +  val shortOrcCompressionCodecNames = Map(
    --- End diff --
    
    Instead of changing the access modifiers, add a public function 
    ```Scala
    def getORCCompressionCodecName(name: String): String = 
shortOrcCompressionCodecNames(name)
    ```


---

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

Reply via email to