aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/engines/sql/christener.rb
blob: b30883e47cbcadd1fc10745bb741482193cc8f8b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
module Arel
  module Sql
    class Christener
      def initialize
        @names = {}
      end

      def name_for(relation)
        table = relation.table
        name = table.table_alias || table.name
        list = @names[name] ||= []

        list << table unless list.include? table

        idx = list.index table
        name + (idx == 0 ? '' : "_#{idx + 1}")
      end
    end
  end
end