class Mobility::Plugins::Arel::Nodes::Hstore

Public Instance Methods

eq(other) click to toggle source
Calls superclass method
# File lib/mobility/plugins/arel/nodes/pg_ops.rb, line 70
def eq other
  other.nil? ? to_question.not : super
end
to_question() click to toggle source
# File lib/mobility/plugins/arel/nodes/pg_ops.rb, line 66
def to_question
  HstoreQuestion.new left, right
end