Class: Sequel::SQL::AliasedExpression

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

Overview

Represents an aliasing of an expression to a given alias.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Expression

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

Constructor Details

#initialize(expression, aliaz) ⇒ AliasedExpression

Create an object with the given expression and alias.



913
914
915
# File 'lib/sequel/sql.rb', line 913

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.



910
911
912
# File 'lib/sequel/sql.rb', line 910

def aliaz
  @aliaz
end

#expressionObject (readonly)

The expression to alias



906
907
908
# File 'lib/sequel/sql.rb', line 906

def expression
  @expression
end