lib/arel/nodes/select_statement.rb in arel-4.0.0 vs lib/arel/nodes/select_statement.rb in arel-4.0.1

- old
+ new

@@ -3,9 +3,10 @@ class SelectStatement < Arel::Nodes::Node attr_reader :cores attr_accessor :limit, :orders, :lock, :offset, :with def initialize cores = [SelectCore.new] + super() @cores = cores @orders = [] @limit = nil @lock = nil @offset = nil