Sha256: 94faef9baba84885647e28fd39c696bc1baa6c590284d52351f36bac74bbeaa4
Contents?: true
Size: 582 Bytes
Versions: 118
Compression:
Stored size: 582 Bytes
Contents
module Arel module Nodes class SelectStatement < Arel::Nodes::Node attr_reader :cores attr_accessor :limit, :orders, :lock, :offset, :with def initialize cores = [SelectCore.new] #puts caller @cores = cores @orders = [] @limit = nil @lock = nil @offset = nil @with = nil end def initialize_copy other super @cores = @cores.map { |x| x.clone } @orders = @orders.map { |x| x.clone } end end end end
Version data entries
118 entries across 100 versions & 14 rubygems