Class: Arel::Nodes::Window

Inherits:
Node
  • Object
show all
Defined in:
lib/arel/nodes/window.rb

Direct Known Subclasses

NamedWindow

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Node

#and, #equality?, #fetch_attribute, #invert, #not, #or, #to_sql

Methods included from FactoryMethods

#cast, #coalesce, #create_and, #create_false, #create_join, #create_on, #create_string_join, #create_table_alias, #create_true, #grouping, #lower

Constructor Details

#initializeWindow

Returns a new instance of Window.



8
9
10
11
12
# File 'lib/arel/nodes/window.rb', line 8

def initialize
  @orders = []
  @partitions = []
  @framing = nil
end

Instance Attribute Details

#framingObject

Returns the value of attribute framing.



6
7
8
# File 'lib/arel/nodes/window.rb', line 6

def framing
  @framing
end

#ordersObject

Returns the value of attribute orders.



6
7
8
# File 'lib/arel/nodes/window.rb', line 6

def orders
  @orders
end

#partitionsObject

Returns the value of attribute partitions.



6
7
8
# File 'lib/arel/nodes/window.rb', line 6

def partitions
  @partitions
end

Instance Method Details

#eql?(other) ⇒ Boolean Also known as: ==

Returns:

  • (Boolean)


59
60
61
62
63
64
# File 'lib/arel/nodes/window.rb', line 59

def eql?(other)
  self.class == other.class &&
    self.orders == other.orders &&
    self.framing == other.framing &&
    self.partitions == other.partitions
end

#frame(expr) ⇒ Object



30
31
32
# File 'lib/arel/nodes/window.rb', line 30

def frame(expr)
  @framing = expr
end

#hashObject



55
56
57
# File 'lib/arel/nodes/window.rb', line 55

def hash
  [@orders, @framing].hash
end

#initialize_copy(other) ⇒ Object



50
51
52
53
# File 'lib/arel/nodes/window.rb', line 50

def initialize_copy(other)
  super
  @orders = @orders.map { |x| x.clone }
end

#order(*expr) ⇒ Object



14
15
16
17
18
19
20
# File 'lib/arel/nodes/window.rb', line 14

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

#partition(*expr) ⇒ Object



22
23
24
25
26
27
28
# File 'lib/arel/nodes/window.rb', line 22

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

#range(expr = nil) ⇒ Object



42
43
44
45
46
47
48
# File 'lib/arel/nodes/window.rb', line 42

def range(expr = nil)
  if @framing
    Range.new(expr)
  else
    frame(Range.new(expr))
  end
end

#rows(expr = nil) ⇒ Object



34
35
36
37
38
39
40
# File 'lib/arel/nodes/window.rb', line 34

def rows(expr = nil)
  if @framing
    Rows.new(expr)
  else
    frame(Rows.new(expr))
  end
end