Class: Sequel::Postgres::HStoreOp

Inherits:
SQL::Wrapper show all
Defined in:
lib/sequel/extensions/pg_hstore_ops.rb

Overview

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

Constant Summary collapse

CONCAT =
["(".freeze, " || ".freeze, ")".freeze].freeze
CONTAIN_ALL =
["(".freeze, " ?& ".freeze, ")".freeze].freeze
CONTAIN_ANY =
["(".freeze, " ?| ".freeze, ")".freeze].freeze
CONTAINS =
["(".freeze, " @> ".freeze, ")".freeze].freeze
CONTAINED_BY =
["(".freeze, " <@ ".freeze, ")".freeze].freeze
HAS_KEY =
["(".freeze, " ? ".freeze, ")".freeze].freeze
LOOKUP =
["(".freeze, " -> ".freeze, ")".freeze].freeze
RECORD_SET =
["(".freeze, " #= ".freeze, ")".freeze].freeze

Instance Attribute Summary

Attributes inherited from SQL::Wrapper

#value

Instance Method Summary collapse

Methods inherited from SQL::Wrapper

#initialize

Methods included from ArrayOpMethods

#pg_array

Methods included from SQL::SubscriptMethods

#sql_subscript

Methods included from SQL::StringMethods

#ilike, #like

Methods included from SQL::OrderMethods

#asc, #desc

Methods included from SQL::NumericMethods

#+

Methods included from SQL::ComplexExpressionMethods

#extract, #sql_boolean, #sql_number, #sql_string

Methods included from SQL::CastMethods

#cast, #cast_numeric, #cast_string

Methods included from SQL::BooleanMethods

#~

Methods included from SQL::AliasMethods

#as

Methods inherited from SQL::Expression

#==, attr_reader, comparison_attrs, #eql?, #hash, #inspect, #lit, #sql_literal

Constructor Details

This class inherits a constructor from Sequel::SQL::Wrapper

Instance Method Details

#-(other) ⇒ Object

Delete entries from an hstore using the subtraction operator:

hstore_op - 'a' # (hstore - 'a')


63
64
65
# File 'lib/sequel/extensions/pg_hstore_ops.rb', line 63

def -(other)
  HStoreOp.new(super)
end

#[](key) ⇒ Object

Lookup the value for the given key in an hstore:

hstore_op['a'] # (hstore -> 'a')


70
71
72
# File 'lib/sequel/extensions/pg_hstore_ops.rb', line 70

def [](key)
  Sequel::SQL::StringExpression.new(:NOOP, Sequel::SQL::PlaceholderLiteralString.new(LOOKUP, [value, key]))
end

#contain_all(other) ⇒ Object

Check if the receiver contains all of the keys in the given array:

hstore_op.contain_all(:a) # (hstore ?& a)


77
78
79
# File 'lib/sequel/extensions/pg_hstore_ops.rb', line 77

def contain_all(other)
  bool_op(CONTAIN_ALL, other)
end

#contain_any(other) ⇒ Object

Check if the receiver contains any of the keys in the given array:

hstore_op.contain_any(:a) # (hstore ?| a)


84
85
86
# File 'lib/sequel/extensions/pg_hstore_ops.rb', line 84

def contain_any(other)
  bool_op(CONTAIN_ANY, other)
end

#contained_by(other) ⇒ Object

Check if the other hstore contains all entries in the receiver:

hstore_op.contained_by(:h) # (hstore <@ h)


98
99
100
# File 'lib/sequel/extensions/pg_hstore_ops.rb', line 98

def contained_by(other)
  bool_op(CONTAINED_BY, other)
end

#contains(other) ⇒ Object

Check if the receiver contains all entries in the other hstore:

hstore_op.contains(:h) # (hstore @> h)


91
92
93
# File 'lib/sequel/extensions/pg_hstore_ops.rb', line 91

def contains(other)
  bool_op(CONTAINS, other)
end

#defined(key) ⇒ Object

Check if the receiver contains a non-NULL value for the given key:

hstore_op.defined('a') # defined(hstore, 'a')


105
106
107
# File 'lib/sequel/extensions/pg_hstore_ops.rb', line 105

def defined(key)
  Sequel::SQL::BooleanExpression.new(:NOOP, function(:defined, key))
end

#delete(key) ⇒ Object

Delete the matching entries from the receiver:

hstore_op.delete('a') # delete(hstore, 'a')


112
113
114
# File 'lib/sequel/extensions/pg_hstore_ops.rb', line 112

def delete(key)
  HStoreOp.new(function(:delete, key))
end

#eachObject

Transform the receiver into a set of keys and values:

hstore_op.each # each(hstore)


119
120
121
# File 'lib/sequel/extensions/pg_hstore_ops.rb', line 119

def each
  function(:each)
end

#has_key?(key) ⇒ Boolean Also known as: include?, key?, member?, exist?

Check if the receiver contains the given key:

hstore_op.has_key?('a') # (hstore ? 'a')

Returns:

  • (Boolean)


126
127
128
# File 'lib/sequel/extensions/pg_hstore_ops.rb', line 126

def has_key?(key)
  bool_op(HAS_KEY, key)
end

#hstoreObject

Return the receiver.



135
136
137
# File 'lib/sequel/extensions/pg_hstore_ops.rb', line 135

def hstore
  self
end

#keysObject Also known as: akeys

Return the keys as a PostgreSQL array:

hstore_op.keys # akeys(hstore)


142
143
144
# File 'lib/sequel/extensions/pg_hstore_ops.rb', line 142

def keys
  function(:akeys)
end

#merge(other) ⇒ Object Also known as: concat

Merge a given hstore into the receiver:

hstore_op.merge(:a) # (hstore || a)


150
151
152
# File 'lib/sequel/extensions/pg_hstore_ops.rb', line 150

def merge(other)
  HStoreOp.new(Sequel::SQL::PlaceholderLiteralString.new(CONCAT, [self, other]))
end

#populate(record) ⇒ Object

Create a new record populated with entries from the receiver:

hstore_op.populate(:a) # populate_record(a, hstore)


158
159
160
# File 'lib/sequel/extensions/pg_hstore_ops.rb', line 158

def populate(record)
  SQL::Function.new(:populate_record, record, self)
end

#record_set(record) ⇒ Object

Update the values in a record using entries in the receiver:

hstore_op.record_set(:a) # (a #= hstore)


165
166
167
# File 'lib/sequel/extensions/pg_hstore_ops.rb', line 165

def record_set(record)
  Sequel::SQL::PlaceholderLiteralString.new(RECORD_SET, [record, value])
end

#skeysObject

Return the keys as a PostgreSQL set:

hstore_op.skeys # skeys(hstore)


172
173
174
# File 'lib/sequel/extensions/pg_hstore_ops.rb', line 172

def skeys
  function(:skeys)
end

#slice(keys) ⇒ Object

Return an hstore with only the keys in the given array:

hstore_op.slice(:a) # slice(hstore, a)


179
180
181
# File 'lib/sequel/extensions/pg_hstore_ops.rb', line 179

def slice(keys)
  HStoreOp.new(function(:slice, keys))
end

#svalsObject

Return the values as a PostgreSQL set:

hstore_op.svals # svals(hstore)


186
187
188
# File 'lib/sequel/extensions/pg_hstore_ops.rb', line 186

def svals
  function(:svals)
end

#to_arrayObject

Return a flattened array of the receiver with alternating keys and values:

hstore_op.to_array # hstore_to_array(hstore)


194
195
196
# File 'lib/sequel/extensions/pg_hstore_ops.rb', line 194

def to_array
  function(:hstore_to_array)
end

#to_matrixObject

Return a nested array of the receiver, with arrays of 2 element (key/value) arrays:

hstore_op.to_matrix # hstore_to_matrix(hstore)


202
203
204
# File 'lib/sequel/extensions/pg_hstore_ops.rb', line 202

def to_matrix
  function(:hstore_to_matrix)
end

#valuesObject Also known as: avals

Return the values as a PostgreSQL array:

hstore_op.values # avals(hstore)


209
210
211
# File 'lib/sequel/extensions/pg_hstore_ops.rb', line 209

def values
  function(:avals)
end