Github user dilipbiswal commented on a diff in the pull request:
https://github.com/apache/spark/pull/17636#discussion_r112341084
--- Diff: sql/core/src/test/scala/org/apache/spark/sql/SubquerySuite.scala
---
@@ -828,6 +828,19 @@ class SubquerySuite extends QueryTest with
SharedSQLContext {
| from t2 lateral view explode(arr_c2) q as c2
where t1.c1 = t2.c1)""".stripMargin),
Row(1) :: Row(0) :: Nil)
+
+ val msg1 = intercept[AnalysisException] {
+ sql(
+ """
+ | select c1
+ | from t2
+ | where exists (select *
+ | from t1 lateral view explode(t2.arr_c2) q as c2
+ | where t1.c1 = t2.c1)
--- End diff --
@gatorsmile The other test was in lower case . so i had it in lower case
for consistency. I will change both the SQLs in this test. Thank you.
---
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]