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

    https://github.com/apache/spark/pull/16240#discussion_r93807181
  
    --- Diff: 
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/ScalaReflection.scala 
---
    @@ -312,12 +312,46 @@ object ScalaReflection extends ScalaReflection {
               "array",
               ObjectType(classOf[Array[Any]]))
     
    -        StaticInvoke(
    +        val wrappedArray = StaticInvoke(
               scala.collection.mutable.WrappedArray.getClass,
               ObjectType(classOf[Seq[_]]),
               "make",
               array :: Nil)
     
    +        if (localTypeOf[scala.collection.mutable.WrappedArray[_]] <:< 
t.erasure) {
    +          wrappedArray
    +        } else {
    +          // Convert to another type using `to`
    +          val cls = mirror.runtimeClass(t.typeSymbol.asClass)
    +          import scala.collection.generic.CanBuildFrom
    +          import scala.reflect.ClassTag
    +          import scala.util.{Try, Success}
    --- End diff --
    
    Done. I tried looking up the code style you mentioned, but only found the 
[Databricks' Scala Code Style 
Guide](https://github.com/databricks/scala-style-guide#exception-handling-try-vs-try).
 And that is not mentioned in the Spark docs as far as I know.


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