Class: Sequel::SQL::AliasedExpression

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

Overview

Represents an aliasing of an expression/column to a given name.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Expression

#lit

Constructor Details

#initialize(expression, aliaz) ⇒ AliasedExpression

Create an object with the given expression and alias.



400
401
402
# File 'lib/sequel/sql.rb', line 400

def initialize(expression, aliaz)
  @expression, @aliaz = expression, aliaz
end

Instance Attribute Details

#aliazObject (readonly)

The alias to use for the expression, not alias since that is a keyword in ruby.



397
398
399
# File 'lib/sequel/sql.rb', line 397

def aliaz
  @aliaz
end

#expressionObject (readonly)

The expression to alias



393
394
395
# File 'lib/sequel/sql.rb', line 393

def expression
  @expression
end