aboutsummaryrefslogtreecommitdiff
path: root/python/pyspark/sql/functions.py
diff options
context:
space:
mode:
authorShiti <ssaxena.ece@gmail.com>2015-05-07 01:00:29 -0700
committerReynold Xin <rxin@databricks.com>2015-05-07 01:00:29 -0700
commitfa8fddffd52f8146ccceb72c2990607aaf5b2131 (patch)
tree9e01edb034e363e24a49293cd7dff5f1cb59e834 /python/pyspark/sql/functions.py
parent01187f59b3d118495b6cfea965690829b99a36fa (diff)
downloadspark-fa8fddffd52f8146ccceb72c2990607aaf5b2131.tar.gz
spark-fa8fddffd52f8146ccceb72c2990607aaf5b2131.tar.bz2
spark-fa8fddffd52f8146ccceb72c2990607aaf5b2131.zip
[SPARK-7295][SQL] bitwise operations for DataFrame DSL
Author: Shiti <ssaxena.ece@gmail.com> Closes #5867 from Shiti/spark-7295 and squashes the following commits: 71a9913 [Shiti] implementation for bitwise and,or, not and xor on Column with tests and docs
Diffstat (limited to 'python/pyspark/sql/functions.py')
-rw-r--r--python/pyspark/sql/functions.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/python/pyspark/sql/functions.py b/python/pyspark/sql/functions.py
index 692af868dd..274c410a1e 100644
--- a/python/pyspark/sql/functions.py
+++ b/python/pyspark/sql/functions.py
@@ -104,6 +104,8 @@ _functions = {
'toRadians': 'Converts an angle measured in degrees to an approximately equivalent angle ' +
'measured in radians.',
+ 'bitwiseNOT': 'Computes bitwise not.',
+
'max': 'Aggregate function: returns the maximum value of the expression in a group.',
'min': 'Aggregate function: returns the minimum value of the expression in a group.',
'first': 'Aggregate function: returns the first value in a group.',