Module: Druid::PostAggregationOperators
- Included in:
- PostAggregationConstant, PostAggregationField, PostAggregationJavascript, PostAggregationOperation
- Defined in:
- lib/druid/post_aggregation.rb
Instance Method Summary collapse
Instance Method Details
#*(value) ⇒ Object
27 28 29 |
# File 'lib/druid/post_aggregation.rb', line 27 def *(value) PostAggregationOperation.new(self, :*, value) end |
#+(value) ⇒ Object
19 20 21 |
# File 'lib/druid/post_aggregation.rb', line 19 def +(value) PostAggregationOperation.new(self, :+, value) end |
#-(value) ⇒ Object
23 24 25 |
# File 'lib/druid/post_aggregation.rb', line 23 def -(value) PostAggregationOperation.new(self, :-, value) end |
#/(value) ⇒ Object
31 32 33 |
# File 'lib/druid/post_aggregation.rb', line 31 def /(value) PostAggregationOperation.new(self, :/, value) end |