Skip to content
This repository was archived by the owner on May 9, 2024. It is now read-only.

Commit b53a011

Browse files
committed
Fixed typo in the previous commit.
1 parent e797dba commit b53a011

File tree

1 file changed

+1
-1
lines changed
  • sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/analysis

1 file changed

+1
-1
lines changed

sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/analysis/Analyzer.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -647,7 +647,7 @@ class Analyzer(
647647
* From a Seq of [[NamedExpression]]s, extract expressions containing window expressions and
648648
* other regular expressions that do not contain any window expression. For example, for
649649
* `col1, Sum(col2 + col3) OVER (PARTITION BY col4 ORDER BY col5)`, we will extract
650-
* `col1`, `col2 + col3`, `col4`, and `col5` out and replace them appearances in
650+
* `col1`, `col2 + col3`, `col4`, and `col5` out and replace their appearances in
651651
* the window expression as attribute references. So, the first returned value will be
652652
* `[Sum(_w0) OVER (PARTITION BY _w1 ORDER BY _w2)]` and the second returned value will be
653653
* [col1, col2 + col3 as _w0, col4 as _w1, col5 as _w2].

0 commit comments

Comments
 (0)