1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
|
# frozen_string_literal: true
module Arel # :nodoc: all
module Nodes
class Window < Arel::Nodes::Node
attr_accessor :orders, :framing, :partitions
def initialize
@orders = []
@partitions = []
@framing = nil
end
def order(*expr)
# FIXME: We SHOULD NOT be converting these to SqlLiteral automatically
@orders.concat expr.map { |x|
String === x || Symbol === x ? Nodes::SqlLiteral.new(x.to_s) : x
}
self
end
def partition(*expr)
# FIXME: We SHOULD NOT be converting these to SqlLiteral automatically
@partitions.concat expr.map { |x|
String === x || Symbol === x ? Nodes::SqlLiteral.new(x.to_s) : x
}
self
end
def frame(expr)
@framing = expr
end
def rows(expr = nil)
if @framing
Rows.new(expr)
else
frame(Rows.new(expr))
end
end
def range(expr = nil)
if @framing
Range.new(expr)
else
frame(Range.new(expr))
end
end
def initialize_copy(other)
super
@orders = @orders.map { |x| x.clone }
end
def hash
[@orders, @framing].hash
end
def eql?(other)
self.class == other.class &&
self.orders == other.orders &&
self.framing == other.framing &&
self.partitions == other.partitions
end
alias :== :eql?
end
class NamedWindow < Window
attr_accessor :name
def initialize(name)
super()
@name = name
end
def initialize_copy(other)
super
@name = other.name.clone
end
def hash
super ^ @name.hash
end
def eql?(other)
super && self.name == other.name
end
alias :== :eql?
end
class Rows < Unary
def initialize(expr = nil)
super(expr)
end
end
class Range < Unary
def initialize(expr = nil)
super(expr)
end
end
class CurrentRow < Node
def hash
self.class.hash
end
def eql?(other)
self.class == other.class
end
alias :== :eql?
end
class Preceding < Unary
def initialize(expr = nil)
super(expr)
end
end
class Following < Unary
def initialize(expr = nil)
super(expr)
end
end
end
end
|