We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 173942d commit 26258b0Copy full SHA for 26258b0
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/optimizer/finishAnalysis.scala
@@ -53,9 +53,9 @@ object ReplaceExpressions extends Rule[LogicalPlan] {
53
}
54
55
/**
56
- * Rewritten uncorrelated exists subquery to use ScalarSubquery
+ * Rewrite non correlated exists subquery to use ScalarSubquery
57
* WHERE EXISTS (SELECT A FROM TABLE B WHERE COL1 > 10)
58
- * will be rewrite to
+ * will be rewritten to
59
* WHERE (SELECT 1 FROM (SELECT A FROM TABLE B WHERE COL1 > 10) LIMIT 1) IS NOT NULL
60
*/
61
object RewriteNonCorrelatedExists extends Rule[LogicalPlan] {
0 commit comments