-
Type:
Task
-
Resolution: Done
-
Affects Version/s: None
-
Component/s: None
-
None
-
None
-
None
-
None
-
None
-
None
-
None
class Fund embeds_many :stock_positions, :cascade_callbacks => true # ... end class StockPosition # ... end f = Fund.new f.stock_positions.create() f.stock_positions.create() f = Fund.last f.stock_positions.first.destroy f.stock_positions.first.attributes = { :some_key => :some_new_val } f.save!
In this example, I create one fund object with two stock positions. The first stock position gets destroyed and the second gets updated via mass-assignment. As you can see, the destroy goes through and then the update goes through after with the incorrect index of 1 (it should be 0 since there were 2 objects in the array but only 1 after the destroy call).
MONGODB wall_street_game_development['users'].update({"_id"=>BSON::ObjectId('4f5fbf4c6c4be8010e000019'), "fund._id"=>BSON::ObjectId('4f5fbf4d6c4be8010e00001a')}, {"$pull"=>{"fund.stock_positions"=>{"_id"=>BSON::ObjectId('4f5fc7c46c4be8010e000025')}}}) MONGODB wall_street_game_development['users'].update({"_id"=>BSON::ObjectId('4f5fbf4c6c4be8010e000019')}, {"$set"=>{"updated_at"=>2012-03-13 22:22:53 UTC, "fund.cash"=>988001777, "fund.running_stocks_profit"=>-253763, "fund.updated_at"=>2012-03-13 22:22:53 UTC, "fund.stock_positions.1.shares"=>12700, "fund.stock_positions.1.avg_cost"=>357, "fund.stock_positions.1.base_daily_avg_cost"=>357, "fund.stock_positions.1.time_of_trade"=>nil, "fund.stock_positions.1.pending_action"=>"summary", "fund.stock_positions.1.pending_cash"=>0, "fund.stock_positions.1.updated_at"=>2012-03-13 22:22:53 UTC}})
Update: This issue actually occurs no matter how save is called. stock_position.save, and fund.save both yield the same results.
I'm also concerned that it's possible that the underlying data might change. Another query could change the natural order of the array through insertion or deletion. I think the best policy would be to update based on id.