Class: Sequel::SQL::Constant
- Inherits:
-
GenericExpression
- Object
- Expression
- GenericExpression
- Sequel::SQL::Constant
- 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
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
-
#constant ⇒ Object
readonly
The underlying constant related to this object.
Instance Method Summary collapse
-
#initialize(constant) ⇒ Constant
constructor
Create an constant with the given value.
-
#inspect ⇒ Object
Reference the constant in the Sequel module if there is one that matches.
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
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, #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
#constant ⇒ Object (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
#inspect ⇒ Object
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 |