Class: TransactionQL::Greater

Inherits:
NumericExpression show all
Defined in:
lib/transaction_ql/expressions.rb

Instance Method Summary collapse

Methods inherited from NumericExpression

#matches?

Methods inherited from Expression

#matches?

Constructor Details

#initialize(column, other) ⇒ Greater

Returns a new instance of Greater.



77
78
79
# File 'lib/transaction_ql/expressions.rb', line 77

def initialize(column, other)
  super column, other, :>
end