如果通过关联访问,为什么BigDecimal规模会发生变化?

时间:2016-02-15 17:02:21

标签: ruby-on-rails ruby bigdecimal

我有两个Ruby on Rails模型FarmHarvest。农场属于收获。以下是模型:

class Farm < ActiveRecord::Base
  acts_as_singleton
  belongs_to :harvest
  validates :harvest, presence: true, allow_blank: true
  serialize :harvest_time, Tod::TimeOfDay
  validates :harvest_time, presence: true, allow_blank: true
  validates :hash_rate, presence: true
  validates_with HashRateValidator
end

class Harvest < ActiveRecord::Base
  belongs_to :user
  validates :user, presence: true
  validates :date, presence: true
  validates :amount, presence: true
  validates :identifier, presence: true
  validates :amount, numericality: { :greater_than => 0 }
end

只有一个农场(由于作为单身宝石的行为而完成)。每次收获完成后,农场的收获协会都会发生变化,因为它总是要指向最新的收获。由于我使用Farm作为单例模型,因此我使用以下代码更新了Farm:

@harvest = Harvest.new(
      :date => DateTime.now,
      :amount => amount,
      :identifier => new_identifier,
      :user => current_user,
      :assigned => false
)

if @harvest.save
   Farm.instance.update_attributes(:harvest => @harvest)
   byebug

奇怪的是,收获量的数值和分配给农场的收获量在此之后不匹配:

(byebug) Farm.instance.harvest.amount
435.435

(byebug) @harvest.amount
435.435345343

(byebug) Farm.instance.harvest.id
12

(byebug) @harvest.id
12

十进制数量的大小为8,精度为6(来自迁移),这是schema.rb文件的相关部分:

create_table "harvests", force: :cascade do |t|
    t.datetime "date"
    t.decimal  "amount",                          precision: 6, scale: 8
    t.integer  "identifier"
    t.datetime "created_at",                                                              null: false
    t.datetime "updated_at",                                                              null: false
    ...
  end

那么,这里发生了什么?金额应该是完全相同的值!

1 个答案:

答案 0 :(得分:0)

我明白了。规模和精度没有意义。精度是BigDecimal量的位数,scale是小数点右侧显示的位数。由于精度设置为6级,小数点后不能容纳8位数。因此,当数字来自数据库时,它被截断,当它来自内存时,它在小数点后面有所有数字。 我通过将精度设置为18并将其缩放为8来修复它,这意味着总共有18位数字,其中8位出现在小数点右侧。

Sqlite允许不连贯的精度=&gt; 6和scale =&gt; 8. Postgres没有。