Module: Sequel::SQL::QualifyingMethods

Included in:
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.



274
275
276
# File 'lib/sequel_core/sql.rb', line 274

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