Class: Sequel::SQL::QualifiedIdentifier

Inherits:
GenericExpression show all
Includes:
QualifyingMethods
Defined in:
lib/sequel/sql.rb

Overview

Represents a qualified identifier (column with table or table with schema).

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from QualifyingMethods

#*, #qualify

Methods included from Postgres::HStoreOpMethods

#hstore

Methods included from Postgres::RangeOpMethods

#pg_range

Methods included from Postgres::ArrayOpMethods

#pg_array

Methods included from Postgres::JSONOpMethods

#pg_json

Methods included from Postgres::PGRowOp::ExpressionMethods

#pg_row

Methods included from SubscriptMethods

#sql_subscript

Methods included from StringMethods

#ilike, #like

Methods included from OrderMethods

#asc, #desc

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

#as

Methods inherited from Expression

#==, attr_reader, #eql?, #hash, inherited, #inspect, #lit, #sql_literal

Constructor Details

#initialize(table, column) ⇒ QualifiedIdentifier

Set the table and column to the given arguments



1398
1399
1400
# File 'lib/sequel/sql.rb', line 1398

def initialize(table, column)
  @table, @column = table, column
end

Instance Attribute Details

#columnObject (readonly)

The column/table referenced



1395
1396
1397
# File 'lib/sequel/sql.rb', line 1395

def column
  @column
end

#tableObject (readonly)

The table/schema qualifying the reference



1392
1393
1394
# File 'lib/sequel/sql.rb', line 1392

def table
  @table
end