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 Postgres::HStoreOpMethods

#hstore

Methods included from Postgres::RangeOpMethods

#pg_range

Methods included from Postgres::ArrayOpMethods

#pg_array

Methods included from Postgres::JSONOpMethods

#pg_json

Methods included from Postgres::PGRowOp::ExpressionMethods

#pg_row

Methods included from SubscriptMethods

#sql_subscript

Methods included from StringMethods

#ilike, #like

Methods included from OrderMethods

#asc, #desc

Methods included from NumericMethods

#+

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, #eql?, #hash, inherited, #inspect, #lit, #sql_literal

Constructor Details

#initialize(function, window) ⇒ WindowFunction

Set the function and window.



1671
1672
1673
# File 'lib/sequel/sql.rb', line 1671

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

Instance Attribute Details

#functionObject (readonly)

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



1665
1666
1667
# File 'lib/sequel/sql.rb', line 1665

def function
  @function
end

#windowObject (readonly)

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



1668
1669
1670
# File 'lib/sequel/sql.rb', line 1668

def window
  @window
end