HyukjinKwon commented on code in PR #46841:
URL: https://github.com/apache/spark/pull/46841#discussion_r1623767857
##########
python/pyspark/sql/connect/window.py:
##########
@@ -18,24 +18,23 @@
check_dependencies(__name__)
-import sys
from typing import TYPE_CHECKING, Union, Sequence, List, Optional
from pyspark.sql.column import Column
+from pyspark.sql.window import (
+ Window as ParentWindow,
+ WindowSpec as ParentWindowSpec,
+)
from pyspark.sql.connect.expressions import (
ColumnReference,
Expression,
SortOrder,
)
-from pyspark.util import (
- JVM_LONG_MIN,
- JVM_LONG_MAX,
-)
from pyspark.sql.window import Window as PySparkWindow, WindowSpec as
PySparkWindowSpec
from pyspark.errors import PySparkTypeError
if TYPE_CHECKING:
- from pyspark.sql.connect._typing import ColumnOrName
+ from pyspark.sql.connect._typing import ColumnOrName, ColumnOrName_
Review Comment:
ah okie. That's fine.
--
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.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]