Class: Gandiva::ExpressionBuilder::GreaterThan
- Inherits:
-
BinaryOperation
- Object
- Value
- BinaryOperation
- Gandiva::ExpressionBuilder::GreaterThan
- Defined in:
- lib/gandiva/expression-builder/greater-than.rb
Instance Method Summary collapse
-
#initialize(left, right) ⇒ GreaterThan
constructor
A new instance of GreaterThan.
Methods inherited from BinaryOperation
Methods inherited from Value
Constructor Details
#initialize(left, right) ⇒ GreaterThan
Returns a new instance of GreaterThan.
23 24 25 |
# File 'lib/gandiva/expression-builder/greater-than.rb', line 23 def initialize(left, right) super("greater_than", left, right) end |