class PartialKs::MultiParent

Attributes

parents[R]

Public Class Methods

new(parents) click to toggle source
# File lib/partial_ks/table.rb, line 58
def initialize(parents)
  @parents = parents
end

Public Instance Methods

==(other) click to toggle source
# File lib/partial_ks/table.rb, line 62
def ==(other)
  table_name == other.table_name if other
end
table_name() click to toggle source

only used in comparison in Runner

# File lib/partial_ks/table.rb, line 67
def table_name
  parents.map(&:table_name).join(",")
end