Module: Sequel::Postgres::HStore::DatabaseMethods

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

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.extended(db) ⇒ Object



146
147
148
149
150
151
# File 'lib/sequel/extensions/pg_hstore.rb', line 146

def self.extended(db)
  db.instance_eval do
    add_named_conversion_proc(:hstore, &HStore.method(:parse))
    @schema_type_classes[:hstore] = HStore
  end
end

Instance Method Details

#bound_variable_arg(arg, conn) ⇒ Object

Handle hstores in bound variables



154
155
156
157
158
159
160
161
162
163
# File 'lib/sequel/extensions/pg_hstore.rb', line 154

def bound_variable_arg(arg, conn)
  case arg
  when HStore
    arg.unquoted_literal
  when Hash
    HStore.new(arg).unquoted_literal
  else
    super
  end
end

#reset_conversion_procsObject

SEQUEL5: Remove



166
167
168
169
170
# File 'lib/sequel/extensions/pg_hstore.rb', line 166

def reset_conversion_procs
  procs = super
  add_named_conversion_proc(:hstore, &HStore.method(:parse))
  procs 
end