Module: Sequel::SQL::QualifyingMethods

Included in:
Identifier, QualifiedIdentifier, Symbol
Defined in:
lib/sequel/sql.rb

Overview

Methods that created QualifiedIdentifiers, used for qualifying column names with a table or table names with a schema.

Instance Method Summary collapse

Instance Method Details

#qualify(ts) ⇒ Object

Qualify the current object with the given table/schema.



322
323
324
# File 'lib/sequel/sql.rb', line 322

def qualify(ts)
  QualifiedIdentifier.new(ts, self)
end