Class: Sequel::Postgres::HStore
- Includes:
- SQL::AliasMethods
- Defined in:
- lib/sequel/extensions/pg_hstore.rb,
lib/sequel/extensions/pg_hstore_ops.rb
Defined Under Namespace
Modules: DatabaseMethods Classes: Parser
Constant Summary collapse
- DEFAULT_PROC =
Default proc used for all underlying HStore hashes, so that even if you grab the underlying hash, it will still convert non-string keys to strings during lookup.
lambda{|h, k| h[k.to_s] unless k.is_a?(String)}
Class Method Summary collapse
-
._load(args) ⇒ Object
Use custom marshal loading, since underlying hash uses a default proc.
-
.parse(str) ⇒ Object
Parse the given string into an HStore, assuming the str is in PostgreSQL hstore output format.
Instance Method Summary collapse
-
#_dump ⇒ Object
Use custom marshal dumping, since underlying hash uses a default proc.
-
#fetch(key, *args, &block) ⇒ Object
Override to force the key argument to a string.
-
#merge(hash, &block) ⇒ Object
Convert the input hash to string keys and values before merging, and return a new HStore instance with the merged hash.
-
#op ⇒ Object
Wrap the receiver in an HStoreOp so you can easily use the PostgreSQL hstore functions and operators with it.
-
#sql_literal_append(ds, sql) ⇒ Object
Append a literalize version of the hstore to the sql.
-
#unquoted_literal ⇒ Object
Return a string containing the unquoted, unstring-escaped literal version of the hstore.
Methods included from SQL::AliasMethods
Methods inherited from Hash
#&, #case, #hstore, #pg_json, #pg_jsonb, #sql_expr, #sql_negate, #sql_or, #|, #~
Class Method Details
._load(args) ⇒ Object
Use custom marshal loading, since underlying hash uses a default proc.
197 198 199 |
# File 'lib/sequel/extensions/pg_hstore.rb', line 197 def self._load(args) new(Hash[Marshal.load(args)]) end |
.parse(str) ⇒ Object
Parse the given string into an HStore, assuming the str is in PostgreSQL hstore output format.
203 204 205 |
# File 'lib/sequel/extensions/pg_hstore.rb', line 203 def self.parse(str) new(Parser.new(str).parse) end |
Instance Method Details
#_dump ⇒ Object
Use custom marshal dumping, since underlying hash uses a default proc.
229 230 231 |
# File 'lib/sequel/extensions/pg_hstore.rb', line 229 def _dump(*) Marshal.dump(to_a) end |
#fetch(key, *args, &block) ⇒ Object
Override to force the key argument to a string.
234 235 236 |
# File 'lib/sequel/extensions/pg_hstore.rb', line 234 def fetch(key, *args, &block) super(key.to_s, *args, &block) end |
#merge(hash, &block) ⇒ Object
Convert the input hash to string keys and values before merging, and return a new HStore instance with the merged hash.
240 241 242 |
# File 'lib/sequel/extensions/pg_hstore.rb', line 240 def merge(hash, &block) self.class.new(super(convert_hash(hash), &block)) end |
#op ⇒ Object
Wrap the receiver in an HStoreOp so you can easily use the PostgreSQL hstore functions and operators with it.
319 320 321 |
# File 'lib/sequel/extensions/pg_hstore_ops.rb', line 319 def op HStoreOp.new(self) end |
#sql_literal_append(ds, sql) ⇒ Object
Append a literalize version of the hstore to the sql.
248 249 250 251 |
# File 'lib/sequel/extensions/pg_hstore.rb', line 248 def sql_literal_append(ds, sql) ds.literal_append(sql, unquoted_literal) sql << '::hstore' end |
#unquoted_literal ⇒ Object
Return a string containing the unquoted, unstring-escaped literal version of the hstore. Separated out for use by the bound argument code.
256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 |
# File 'lib/sequel/extensions/pg_hstore.rb', line 256 def unquoted_literal str = String.new comma = false commas = "," quote = '"' kv_sep = "=>" null = "NULL" each do |k, v| str << commas if comma str << quote << escape_value(k) << quote str << kv_sep if v.nil? str << null else str << quote << escape_value(v) << quote end comma = true end str end |