aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/factory_methods.rb
blob: 23d668c8e558a10ff519a9498cfcf15ac23ba981 (plain) (blame)
1
2
3
4
5
6
7
8
9
module Arel
  ###
  # Methods for creating various nodes
  module FactoryMethods
    def create_join from, to, on = nil, klass = Nodes::InnerJoin
      klass.new(from, to, on)
    end
  end
end