The HStoreOp class is a simple container for a single object that defines methods that yield Sequel expression objects representing PostgreSQL hstore operators and functions.
In the method documentation examples, assume that:
hstore_op = :hstore.hstore
Methods
Public Instance
Constants
CONCAT | = | ["(".freeze, " || ".freeze, ")".freeze].freeze | ||
CONTAINED_BY | = | ["(".freeze, " <@ ".freeze, ")".freeze].freeze | ||
CONTAINS | = | ["(".freeze, " @> ".freeze, ")".freeze].freeze | ||
CONTAIN_ALL | = | ["(".freeze, " ?& ".freeze, ")".freeze].freeze | ||
CONTAIN_ANY | = | ["(".freeze, " ?| ".freeze, ")".freeze].freeze | ||
HAS_KEY | = | ["(".freeze, " ? ".freeze, ")".freeze].freeze | ||
LOOKUP | = | ["(".freeze, " -> ".freeze, ")".freeze].freeze | ||
RECORD_SET | = | ["(".freeze, " #= ".freeze, ")".freeze].freeze |
Public Instance Aliases
Public Instance methods
Delete entries from an hstore using the subtraction operator:
hstore_op - 'a' # (hstore - 'a')
# File lib/sequel/extensions/pg_hstore_ops.rb, line 84 def -(other) other = if other.is_a?(String) && !other.is_a?(Sequel::LiteralString) Sequel.cast_string(other) else wrap_input_array(wrap_input_hash(other)) end HStoreOp.new(super) end
Lookup the value for the given key in an hstore:
hstore_op['a'] # (hstore -> 'a')
# File lib/sequel/extensions/pg_hstore_ops.rb, line 96 def [](key) v = Sequel::SQL::PlaceholderLiteralString.new(LOOKUP, [value, wrap_input_array(key)]) if key.is_a?(Array) || (defined?(Sequel::Postgres::PGArray) && key.is_a?(Sequel::Postgres::PGArray)) || (defined?(Sequel::Postgres::ArrayOp) && key.is_a?(Sequel::Postgres::ArrayOp)) wrap_output_array(v) else Sequel::SQL::StringExpression.new(:NOOP, v) end end
Check if the receiver contains all of the keys in the given array:
hstore_op.contain_all(:a) # (hstore ?& a)
# File lib/sequel/extensions/pg_hstore_ops.rb, line 108 def contain_all(other) bool_op(CONTAIN_ALL, wrap_input_array(other)) end
Check if the receiver contains any of the keys in the given array:
hstore_op.contain_any(:a) # (hstore ?| a)
# File lib/sequel/extensions/pg_hstore_ops.rb, line 115 def contain_any(other) bool_op(CONTAIN_ANY, wrap_input_array(other)) end
Check if the other hstore contains all entries in the receiver:
hstore_op.contained_by(:h) # (hstore <@ h)
# File lib/sequel/extensions/pg_hstore_ops.rb, line 129 def contained_by(other) bool_op(CONTAINED_BY, wrap_input_hash(other)) end
Check if the receiver contains all entries in the other hstore:
hstore_op.contains(:h) # (hstore @> h)
# File lib/sequel/extensions/pg_hstore_ops.rb, line 122 def contains(other) bool_op(CONTAINS, wrap_input_hash(other)) end
Check if the receiver contains a non-NULL value for the given key:
hstore_op.defined('a') # defined(hstore, 'a')
# File lib/sequel/extensions/pg_hstore_ops.rb, line 136 def defined(key) Sequel::SQL::BooleanExpression.new(:NOOP, function(:defined, key)) end
Delete the matching entries from the receiver:
hstore_op.delete('a') # delete(hstore, 'a')
# File lib/sequel/extensions/pg_hstore_ops.rb, line 143 def delete(key) HStoreOp.new(function(:delete, wrap_input_array(wrap_input_hash(key)))) end
Transform the receiver into a set of keys and values:
hstore_op.each # each(hstore)
# File lib/sequel/extensions/pg_hstore_ops.rb, line 150 def each function(:each) end
Check if the receiver contains the given key:
hstore_op.has_key?('a') # (hstore ? 'a')
# File lib/sequel/extensions/pg_hstore_ops.rb, line 157 def has_key?(key) bool_op(HAS_KEY, key) end
Return the receiver.
# File lib/sequel/extensions/pg_hstore_ops.rb, line 166 def hstore self end
Return the keys as a PostgreSQL array:
hstore_op.keys # akeys(hstore)
# File lib/sequel/extensions/pg_hstore_ops.rb, line 173 def keys wrap_output_array(function(:akeys)) end
Merge a given hstore into the receiver:
hstore_op.merge(:a) # (hstore || a)
# File lib/sequel/extensions/pg_hstore_ops.rb, line 181 def merge(other) HStoreOp.new(Sequel::SQL::PlaceholderLiteralString.new(CONCAT, [self, wrap_input_hash(other)])) end
Create a new record populated with entries from the receiver:
hstore_op.populate(:a) # populate_record(a, hstore)
# File lib/sequel/extensions/pg_hstore_ops.rb, line 189 def populate(record) SQL::Function.new(:populate_record, record, self) end
Update the values in a record using entries in the receiver:
hstore_op.record_set(:a) # (a #= hstore)
# File lib/sequel/extensions/pg_hstore_ops.rb, line 196 def record_set(record) Sequel::SQL::PlaceholderLiteralString.new(RECORD_SET, [record, value]) end
Return the keys as a PostgreSQL set:
hstore_op.skeys # skeys(hstore)
# File lib/sequel/extensions/pg_hstore_ops.rb, line 203 def skeys function(:skeys) end
Return an hstore with only the keys in the given array:
hstore_op.slice(:a) # slice(hstore, a)
# File lib/sequel/extensions/pg_hstore_ops.rb, line 210 def slice(keys) HStoreOp.new(function(:slice, wrap_input_array(keys))) end
Return the values as a PostgreSQL set:
hstore_op.svals # svals(hstore)
# File lib/sequel/extensions/pg_hstore_ops.rb, line 217 def svals function(:svals) end
Return a flattened array of the receiver with alternating keys and values:
hstore_op.to_array # hstore_to_array(hstore)
# File lib/sequel/extensions/pg_hstore_ops.rb, line 225 def to_array wrap_output_array(function(:hstore_to_array)) end
Return a nested array of the receiver, with arrays of 2 element (key/value) arrays:
hstore_op.to_matrix # hstore_to_matrix(hstore)
# File lib/sequel/extensions/pg_hstore_ops.rb, line 233 def to_matrix wrap_output_array(function(:hstore_to_matrix)) end
Return the values as a PostgreSQL array:
hstore_op.values # avals(hstore)
# File lib/sequel/extensions/pg_hstore_ops.rb, line 240 def values wrap_output_array(function(:avals)) end