Methods that created QualifiedIdentifiers, used for qualifying column names with a table or table names with a schema.
Qualify the current object with the given table/schema.
[Source]
# File lib/sequel/sql.rb, line 379 379: def qualify(ts) 380: QualifiedIdentifier.new(ts, self) 381: end
[Validate]