alf-tool/alf-sql

View on GitHub
lib/alf/predicate/nodes/gt.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Alf
  class Predicate
    module Gt

      def to_sql_operator
        Sql::Expr::GREATER
      end

    end
  end
end