mt40 commented on a change in pull request #27153: [SPARK-20384][SQL] Support
value class in schema of Dataset (without breaking existing current projection)
URL: https://github.com/apache/spark/pull/27153#discussion_r366127267
##########
File path:
sql/catalyst/src/test/scala/org/apache/spark/sql/catalyst/ScalaReflectionSuite.scala
##########
@@ -146,8 +146,20 @@ object TraitProductWithNoConstructorCompanion {}
trait TraitProductWithNoConstructorCompanion extends Product1[Int] {}
+object TestingValueClass {
+ case class IntWrapper(val i: Int) extends AnyVal
+ case class StrWrapper(s: String) extends AnyVal
+
+ case class ValueClassData(
+ intField: Int,
Review comment:
please fix indentation here
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]