Class: Sequel::SQL::Identifier

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

Overview

Represents an identifier (column, table, schema, etc.).

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from QualifyingMethods

#*, #[], #qualify

Methods included from Sequel::SQL::IsDistinctFrom::Methods

#is_distinct_from

Methods included from Sequel::SQLite::JSONOpMethods

#sqlite_json_op

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, #pg_jsonb

Methods included from Postgres::InetOpMethods

#pg_inet

Methods included from Postgres::PGRowOp::ExpressionMethods

#pg_row

Methods included from SubscriptMethods

#sql_subscript

Methods included from StringMethods

#escaped_ilike, #escaped_like, #ilike, #like

Methods included from PatternMatchMethods

#!~, #=~

Methods included from OrderMethods

#asc, #desc

Methods included from NumericMethods

#+, #coerce

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, #clone, #eql?, #hash, inherited, #inspect

Constructor Details

#initialize(value) ⇒ Identifier

Set the identifier to the given argument



1515
1516
1517
1518
# File 'lib/sequel/sql.rb', line 1515

def initialize(value)
  @value = value
  freeze
end

Instance Attribute Details

#valueObject (readonly)

The identifier to reference



1512
1513
1514
# File 'lib/sequel/sql.rb', line 1512

def value
  @value
end

Instance Method Details

#function(*args) ⇒ Object

Create a Function using this identifier as the functions name, with the given args.



1522
1523
1524
# File 'lib/sequel/sql.rb', line 1522

def function(*args)
  Function.new(self, *args)
end