Module: Sequel::SQL::QualifyingMethods

Included in:
Identifier, Symbol
Defined in:
lib/sequel_core/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.



282
283
284
# File 'lib/sequel_core/sql.rb', line 282

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