Class: Sequel::SQL::Constant

Inherits:
GenericExpression show all
Defined in:
lib/sequel/sql.rb,
lib/sequel/extensions/eval_inspect.rb

Overview

Represents constants or psuedo-constants (e.g. CURRENT_DATE) in SQL.

Direct Known Subclasses

BooleanConstant, NegativeBooleanConstant

Constant Summary collapse

INSPECT_LOOKUPS =

Constants to lookup in the Sequel module.

[:CURRENT_DATE, :CURRENT_TIMESTAMP, :CURRENT_TIME, :SQLTRUE, :SQLFALSE, :NULL, :NOTNULL]

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#ilike, #like

Methods included from PatternMatchMethods

#=~

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, #lit, #sql_literal

Constructor Details

#initialize(constant) ⇒ Constant

Create an constant with the given value



1206
1207
1208
# File 'lib/sequel/sql.rb', line 1206

def initialize(constant)
  @constant = constant
end

Instance Attribute Details

#constantObject (readonly)

The underlying constant related to this object.



1203
1204
1205
# File 'lib/sequel/sql.rb', line 1203

def constant
  @constant
end

Instance Method Details

#inspectObject

Reference the constant in the Sequel module if there is one that matches.



109
110
111
112
113
114
# File 'lib/sequel/extensions/eval_inspect.rb', line 109

def inspect
  INSPECT_LOOKUPS.each do |c|
    return "Sequel::#{c}" if Sequel.const_get(c) == self
  end
  super
end