Method: Sequel::Postgres::HStore#fetch

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

#fetch(key, *args, &block) ⇒ Object

Override to force the key argument to a string.



240
241
242
# File 'lib/sequel/extensions/pg_hstore.rb', line 240

def fetch(key, *args, &block)
  super(key.to_s, *args, &block)
end