Sha256: f0189a134b2f1f9a8ec72f80aac638d5d9b8da857ffaa2155624ae6b62c7cd70

Contents?: true

Size: 766 Bytes

Versions: 46

Compression:

Stored size: 766 Bytes

Contents

module ActiveRecord
  module ConnectionAdapters
    module PostgreSQL
      module OID # :nodoc:
        class Jsonb < Json # :nodoc:
          def type
            :jsonb
          end

          def changed_in_place?(raw_old_value, new_value)
            # Postgres does not preserve insignificant whitespaces when
            # round-tripping jsonb columns. This causes some false positives for
            # the comparison here. Therefore, we need to parse and re-dump the
            # raw value here to ensure the insignificant whitespaces are
            # consistent with our encoder's output.
            raw_old_value = serialize(deserialize(raw_old_value))
            super(raw_old_value, new_value)
          end
        end
      end
    end
  end
end

Version data entries

46 entries across 46 versions & 4 rubygems

Version Path
activerecord-5.0.7.2 lib/active_record/connection_adapters/postgresql/oid/jsonb.rb
activerecord-5.0.7.1 lib/active_record/connection_adapters/postgresql/oid/jsonb.rb
activerecord-5.0.7 lib/active_record/connection_adapters/postgresql/oid/jsonb.rb
activerecord-5.0.6 lib/active_record/connection_adapters/postgresql/oid/jsonb.rb
activerecord-5.0.6.rc1 lib/active_record/connection_adapters/postgresql/oid/jsonb.rb
activerecord-5.1.3 lib/active_record/connection_adapters/postgresql/oid/jsonb.rb
activerecord-5.1.3.rc3 lib/active_record/connection_adapters/postgresql/oid/jsonb.rb
activerecord-5.0.5 lib/active_record/connection_adapters/postgresql/oid/jsonb.rb
activerecord-5.0.5.rc2 lib/active_record/connection_adapters/postgresql/oid/jsonb.rb
activerecord-5.1.3.rc2 lib/active_record/connection_adapters/postgresql/oid/jsonb.rb
activerecord-5.0.5.rc1 lib/active_record/connection_adapters/postgresql/oid/jsonb.rb
activerecord-5.1.3.rc1 lib/active_record/connection_adapters/postgresql/oid/jsonb.rb
activerecord-5.1.2 lib/active_record/connection_adapters/postgresql/oid/jsonb.rb
activerecord-5.1.2.rc1 lib/active_record/connection_adapters/postgresql/oid/jsonb.rb
activerecord-5.0.4 lib/active_record/connection_adapters/postgresql/oid/jsonb.rb
activerecord-5.0.4.rc1 lib/active_record/connection_adapters/postgresql/oid/jsonb.rb
activerecord-5.1.1 lib/active_record/connection_adapters/postgresql/oid/jsonb.rb
activerecord-5.0.3 lib/active_record/connection_adapters/postgresql/oid/jsonb.rb
enju_leaf-1.2.1 vendor/bundle/ruby/2.3/gems/activerecord-5.0.2/lib/active_record/connection_adapters/postgresql/oid/jsonb.rb
activerecord-5.1.0 lib/active_record/connection_adapters/postgresql/oid/jsonb.rb