class ROM::SQL::OrderDSL

@api private

Private Instance Methods

method_missing(meth, *args, &block) click to toggle source

@api private

# File lib/rom/sql/order_dsl.rb, line 12
def method_missing(meth, *args, &block)
  if schema.key?(meth)
    schema[meth]
  else
    ::Sequel::VIRTUAL_ROW.__send__(meth.to_s.upcase, *args, &block)
  end
end