Class Sequel::SQL::OrderedExpression
In: lib/sequel/sql.rb
lib/sequel/extensions/eval_inspect.rb
Parent: Expression

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

Methods

asc   desc   invert   new  

Constants

INVERT_NULLS = {:first=>:last, :last=>:first}.freeze

Attributes

descending  [R]  Whether the expression should order the result set in a descending manner
expression  [R]  The expression to order the result set by.
nulls  [R]  Whether to sort NULLS FIRST/LAST

Public Class methods

Set the expression and descending attributes to the given values. Options:

:nulls :Can be :first/:last for NULLS FIRST/LAST.

[Source]

      # File lib/sequel/sql.rb, line 1527
1527:       def initialize(expression, descending = true, opts=OPTS)
1528:         @expression, @descending, @nulls = expression, descending, opts[:nulls]
1529:       end

Public Instance methods

Return a copy that is ordered ASC

[Source]

      # File lib/sequel/sql.rb, line 1532
1532:       def asc
1533:         OrderedExpression.new(@expression, false, :nulls=>@nulls)
1534:       end

Return a copy that is ordered DESC

[Source]

      # File lib/sequel/sql.rb, line 1537
1537:       def desc
1538:         OrderedExpression.new(@expression, true, :nulls=>@nulls)
1539:       end

Return an inverted expression, changing ASC to DESC and NULLS FIRST to NULLS LAST.

[Source]

      # File lib/sequel/sql.rb, line 1542
1542:       def invert
1543:         OrderedExpression.new(@expression, !@descending, :nulls=>INVERT_NULLS.fetch(@nulls, @nulls))
1544:       end

[Validate]