Skip to content

Commit

Permalink
aggregators.py: re-name doublesum -> sum
Browse files Browse the repository at this point in the history
  • Loading branch information
Deep Ganguli committed Feb 18, 2014
1 parent 51aedd1 commit 6c9b7d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pydruid/utils/aggregators.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@
#


def longSum(raw_metric):
def longsum(raw_metric):
return {"type": "longSum", "fieldName": raw_metric}


def doubleSum(raw_metric):
def sum(raw_metric):
return {"type": "doubleSum", "fieldName": raw_metric}


Expand Down

0 comments on commit 6c9b7d5

Please sign in to comment.