Sha256: 1cd5ec67575e8ba9549679f6f207060068eb23dbe996c938571e7cbd92f533b4
Contents?: true
Size: 1.41 KB
Versions: 2
Compression:
Stored size: 1.41 KB
Contents
module ActiveRecord #:nodoc: module ConnectionAdapters #:nodoc: module OracleEnhancedDirty #:nodoc: module InstanceMethods #:nodoc: private def field_changed?(attr, old, value) if column = column_for_attribute(attr) # Added also :decimal type if (column.type == :integer || column.type == :decimal) && column.null && (old.nil? || old == 0) && value.blank? # For nullable integer columns, NULL gets stored in database for blank (i.e. '') values. # Hence we don't record it as a change if the value changes from nil to ''. # If an old value of 0 is set to '' we want this to get changed to nil as otherwise it'll # be typecast back to 0 (''.to_i => 0) value = nil # Oracle stores empty string '' or empty text (CLOB) as NULL # therefore need to convert empty string value to nil if old value is nil elsif (column.type == :string || column.type == :text) && column.null && old.nil? value = nil if value == '' else value = column.type_cast(value) end end old != value end end end end end if ActiveRecord::Base.method_defined?(:changed?) ActiveRecord::Base.class_eval do include ActiveRecord::ConnectionAdapters::OracleEnhancedDirty::InstanceMethods end end
Version data entries
2 entries across 2 versions & 2 rubygems