You are viewing a plain text version of this content. The canonical link for it is here.
Posted to reviews@spark.apache.org by GitBox <gi...@apache.org> on 2022/12/02 17:36:57 UTC

[GitHub] [spark] amaliujia commented on a diff in pull request #38884: [SPARK-41363][CONNECT][PYTHON] Implement normal functions

amaliujia commented on code in PR #38884:
URL: https://github.com/apache/spark/pull/38884#discussion_r1038372393


##########
python/pyspark/sql/connect/functions.py:
##########
@@ -89,6 +93,505 @@ def lit(col: Any) -> Column:
     return Column(LiteralExpression(col))
 
 
+# def bitwiseNOT(col: "ColumnOrName") -> Column:
+#     """
+#     Computes bitwise not.
+#
+#     .. versionadded:: 1.4.0
+#
+#     .. deprecated:: 3.2.0
+#         Use :func:`bitwise_not` instead.
+#     """
+#     warnings.warn("Deprecated in 3.2, use bitwise_not instead.", FutureWarning)
+#     return bitwise_not(col)

Review Comment:
   Need to remove this?



-- 
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: reviews-unsubscribe@spark.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org