Github user liancheng commented on a diff in the pull request:
https://github.com/apache/spark/pull/11431#discussion_r54404408
--- Diff: sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/analysis/Analyzer.scala
---
@@ -559,7 +561,11 @@ class Analyzer(
}
resolveExpression(unbound, LocalRelation(attributes), throws = true) transform
{
- case n: NewInstance if n.outerPointer.isEmpty && n.cls.isMemberClass
=>
+ case n: NewInstance
+ if n.outerPointer.isEmpty &&
+ n.cls.isMemberClass &&
+ !Modifier.isStatic(n.cls.getModifiers) =>
+ n.cls.getEnclosingClass
--- End diff --
This change is included in PR #11421. Without this fix, we can't use case classes defined
in `SQLTestData` as Dataset element type.
---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---
---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org
|