1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/activerecord/lib/arel/nodes/select_statement.rb
Ryuta Kamizono c48539ff94 Allow select statement node's initializer takes a table
Like other statement nodes does, related to 333f9b32.
2021-03-08 02:54:10 +09:00

41 lines
1 KiB
Ruby

# frozen_string_literal: true
module Arel # :nodoc: all
module Nodes
class SelectStatement < Arel::Nodes::NodeExpression
attr_reader :cores
attr_accessor :limit, :orders, :lock, :offset, :with
def initialize(relation = nil)
super()
@cores = [SelectCore.new(relation)]
@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
def hash
[@cores, @orders, @limit, @lock, @offset, @with].hash
end
def eql?(other)
self.class == other.class &&
self.cores == other.cores &&
self.orders == other.orders &&
self.limit == other.limit &&
self.lock == other.lock &&
self.offset == other.offset &&
self.with == other.with
end
alias :== :eql?
end
end
end