Class: Sequel::SQL::OrderedExpression

Inherits:
SpecificExpression show all
Defined in:
lib/sequel_core/sql.rb

Overview

Represents a column/expression to order the result set by.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Expression

#lit

Constructor Details

#initialize(expression, descending = true) ⇒ OrderedExpression

Set the expression and descending attributes to the given values.



734
735
736
# File 'lib/sequel_core/sql.rb', line 734

def initialize(expression, descending = true)
  @expression, @descending = expression, descending
end

Instance Attribute Details

#descendingObject (readonly)

Whether the expression should order the result set in a descending manner



731
732
733
# File 'lib/sequel_core/sql.rb', line 731

def descending
  @descending
end

#expressionObject (readonly)

The expression to order the result set by.



728
729
730
# File 'lib/sequel_core/sql.rb', line 728

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.



740
741
742
# File 'lib/sequel_core/sql.rb', line 740

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