class Sequel::SQL::Constant
def initialize(constant)
def initialize(constant) @constant = constant freeze end
def inspect
Reference the constant in the Sequel module if there is
def inspect INSPECT_LOOKUPS.each do |c| return "Sequel::#{c}" if Sequel.const_get(c) == self end super end