aboutsummaryrefslogtreecommitdiffstats
path: root/lib/active_relation/sql_builder.rb
blob: 07a4ebabb71155fcf33a788a5bbac366352cffb3 (plain) (blame)
1
2
3
4
5
6
7
8
9
module ActiveRelation
  module SqlBuilder
    def connection
      ActiveRecord::Base.connection
    end
  
    delegate :quote_table_name, :quote_column_name, :quote, :to => :connection
  end
end