Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
removed is_math
  • Loading branch information
brkyvz committed Apr 29, 2015
commit 7c4f563a860dc01ecb0badda95704cd1c8267bef
2 changes: 1 addition & 1 deletion python/pyspark/sql/functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
__all__ = ['countDistinct', 'approxCountDistinct', 'udf']


def _create_function(name, doc="", is_math=False):
def _create_function(name, doc=""):
""" Create a function for aggregator by name"""
def _(col):
sc = SparkContext._active_spark_context
Expand Down