class ROM::SQL::GroupDSL
@api private
Private Instance Methods
method_missing(meth, *args, &block)
click to toggle source
@api private
# File lib/rom/sql/group_dsl.rb, line 12 def method_missing(meth, *args, &block) if schema.key?(meth) schema[meth].canonical else ::Sequel::VIRTUAL_ROW.__send__(meth.to_s, *args, &block) end end