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

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

Constructor Details

#initialize(constant) ⇒ Constant

Create an constant with the given value



1148
1149
1150
# File 'lib/sequel/sql.rb', line 1148

def initialize(constant)
  @constant = constant
end

Instance Attribute Details

#constantObject (readonly)

The underlying constant related to this object.



1145
1146
1147
# File 'lib/sequel/sql.rb', line 1145

def constant
  @constant
end

Instance Method Details

#inspectObject

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



103
104
105
106
107
108
# File 'lib/sequel/extensions/eval_inspect.rb', line 103

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