Class: Sequel::SQL::WindowFunction

Inherits:
GenericExpression show all
Defined in:
lib/sequel/sql.rb

Overview

A WindowFunction is a grouping of a Function with a Window over which it operates.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from SubscriptMethods

#sql_subscript

Methods included from StringMethods

#ilike, #like

Methods included from OrderMethods

#asc, #desc

Methods included from ComplexExpressionMethods

#extract, #sql_boolean, #sql_number, #sql_string

Methods included from CastMethods

#cast, #cast_numeric, #cast_string

Methods included from BooleanMethods

#~

Methods included from AliasMethods

#as

Methods inherited from Expression

#==, attr_reader, comparison_attrs, #eql?, #hash, #inspect, #lit, #sql_literal

Constructor Details

#initialize(function, window) ⇒ WindowFunction

Set the function and window.



1105
1106
1107
# File 'lib/sequel/sql.rb', line 1105

def initialize(function, window)
  @function, @window = function, window
end

Instance Attribute Details

#functionObject (readonly)

The function to use, should be an SQL::Function.



1099
1100
1101
# File 'lib/sequel/sql.rb', line 1099

def function
  @function
end

#windowObject (readonly)

The window to use, should be an SQL::Window.



1102
1103
1104
# File 'lib/sequel/sql.rb', line 1102

def window
  @window
end