class Sequel::SQL::WindowFunction

  1. lib/sequel/sql.rb
Parent: SQL

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

Methods

Public Class

  1. new

Public Instance

  1. function
  2. window

Attributes

function [R]

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

window [R]

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

Public Class methods

new (function, window)

Set the function and window.

[show source]
# File lib/sequel/sql.rb, line 1671
def initialize(function, window)
  @function, @window = function, window
end