class Mobility::Plugins::Arel::Nodes::JsonbContainer
Public Class Methods
new(column, locale, attr)
click to toggle source
Calls superclass method
# File lib/mobility/plugins/arel/nodes/pg_ops.rb, line 84 def initialize column, locale, attr @column, @locale = column, locale super(JsonbDashArrow.new(column, locale), attr) end
Public Instance Methods
eq(other)
click to toggle source
Calls superclass method
Mobility::Plugins::Arel::Nodes::Jsonb#eq
# File lib/mobility/plugins/arel/nodes/pg_ops.rb, line 89 def eq other other.nil? ? super.or(JsonbQuestion.new(@column, @locale).not) : super end