Github user shijinkui commented on the pull request:

    https://github.com/apache/spark/pull/5164#issuecomment-85805787
  
    @rxin , curry function's first parameter will use default value if you miss 
one value. it will be compatible  :)
    
    test code like this:
    ```
    object Test11 {
    
      def main(args: Array[String]): Unit = {
        a1(1)(3)
        a1(1, 2)(3)
      }
    
      def a1(a: Int, b: Int = 0)(c: Int) = {
        println(a + "," + b + "," + c)
      }
    }
    ```
    
    result:
    1,0,3
    1,2,3


---
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 [email protected] or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to