Skip to content

Commit

Permalink
Merge pull request #2 from cda-group/agg-by
Browse files Browse the repository at this point in the history
Fix small bug
  • Loading branch information
segeljakt authored Aug 23, 2019
2 parents 2561a0a + 4acdd0b commit 0d44211
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion baloo/weld/lazy_result.py
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ def __gt__(self, other):
return self.op('>', other, return_type=WeldBit())

def __ge__(self, other):
return self.op('<=', other, return_type=WeldBit())
return self.op('>=', other, return_type=WeldBit())

def __lt__(self, other):
return self.op('<', other, return_type=WeldBit())
Expand Down

0 comments on commit 0d44211

Please sign in to comment.