16e7273245
e573a9ea46
1 2
3
4 5 6 7 8 9 10 11 12 13
module Arel module Nodes class SelectCore attr_reader :froms, :projections, :wheres def initialize @froms = [] @projections = [] @wheres = [] end end end end