Turn the given symbol/string into a string, keeping the current case.
# File lib/sequel/adapters/utils/unmodified_identifiers.rb, line 23 def input_identifier(v) v.to_s end
Turn the given symbol/string into a symbol, keeping the current case.
# File lib/sequel/adapters/utils/unmodified_identifiers.rb, line 18 def output_identifier(v) v == '' ? :untitled : v.to_sym end