Method: Sequel::SQL::Constant#inspect

Defined in:
lib/sequel/extensions/eval_inspect.rb

#inspectObject

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

[View source]

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

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