Class: Sequel::SQL::QualifiedIdentifier
- Inherits:
-
GenericExpression
- Object
- Expression
- GenericExpression
- Sequel::SQL::QualifiedIdentifier
- Includes:
- QualifyingMethods
- Defined in:
- lib/sequel/sql.rb
Overview
Represents a qualified identifier (column with table or table with schema).
Instance Attribute Summary collapse
-
#column ⇒ Object
readonly
The column/table referenced.
-
#table ⇒ Object
readonly
The table/schema qualifying the reference.
Instance Method Summary collapse
-
#function(*args) ⇒ Object
Create a Function using this identifier as the functions name, with the given args.
-
#initialize(table, column) ⇒ QualifiedIdentifier
constructor
Set the table and column to the given arguments.
Methods included from QualifyingMethods
Methods included from IsDistinctFrom::Methods
Methods included from Sequel::SQLite::JSONOpMethods
#sqlite_json_op, #sqlite_jsonb_op
Methods included from Postgres::HStoreOpMethods
Methods included from Postgres::RangeOpMethods
Methods included from Postgres::ArrayOpMethods
Methods included from Postgres::JSONOpMethods
Methods included from Postgres::InetOpMethods
Methods included from Postgres::PGRowOp::ExpressionMethods
Methods included from SubscriptMethods
Methods included from StringMethods
#escaped_ilike, #escaped_like, #ilike, #like
Methods included from PatternMatchMethods
Methods included from OrderMethods
Methods included from NumericMethods
Methods included from ComplexExpressionMethods
#extract, #sql_boolean, #sql_number, #sql_string
Methods included from CastMethods
#cast, #cast_numeric, #cast_string
Methods included from BooleanMethods
Methods included from AliasMethods
Methods inherited from Expression
#==, attr_reader, #clone, #eql?, #hash, inherited, #inspect
Constructor Details
#initialize(table, column) ⇒ QualifiedIdentifier
Set the table and column to the given arguments
1712 1713 1714 1715 1716 |
# File 'lib/sequel/sql.rb', line 1712 def initialize(table, column) @table = convert_identifier(table) @column = convert_identifier(column) freeze end |
Instance Attribute Details
#column ⇒ Object (readonly)
The column/table referenced
1709 1710 1711 |
# File 'lib/sequel/sql.rb', line 1709 def column @column end |
#table ⇒ Object (readonly)
The table/schema qualifying the reference
1706 1707 1708 |
# File 'lib/sequel/sql.rb', line 1706 def table @table end |