Method: Sequel::Postgres::HStore#sql_literal_append

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

#sql_literal_append(ds, sql) ⇒ Object

Append a literalize version of the hstore to the sql.



254
255
256
257
# File 'lib/sequel/extensions/pg_hstore.rb', line 254

def sql_literal_append(ds, sql)
  ds.literal_append(sql, unquoted_literal)
  sql << '::hstore'
end