zhengruifeng commented on code in PR #38884:
URL: https://github.com/apache/spark/pull/38884#discussion_r1039063296
##########
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:
I prefer just letting it alone for now, to make sure nothing is missing for
now.
--
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]