Class: Sequel::SQL::AliasedExpression

Inherits:
SpecificExpression show all
Defined in:
lib/sequel_core/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

default value.



389
390
391
# File 'lib/sequel_core/sql.rb', line 389

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.



386
387
388
# File 'lib/sequel_core/sql.rb', line 386

def aliaz
  @aliaz
end

#expressionObject (readonly)

The expression to alias



382
383
384
# File 'lib/sequel_core/sql.rb', line 382

def expression
  @expression
end

Instance Method Details

#to_s(ds) ⇒ Object

Delegate the creation of the resulting SQL to the given dataset, since it may be database dependent.



395
396
397
# File 'lib/sequel_core/sql.rb', line 395

def to_s(ds)
  ds.aliased_expression_sql(self)
end