This project is archived and is in readonly mode.

#5686 ✓stale
Aaron Patterson

ActiveRecord should raise an exception sometimes

Reported by Aaron Patterson | September 22nd, 2010 @ 10:48 PM | in 3.1

I'm filing this so I don't forget. When you set a hash value as a model attribute, AR silently stores the value in the to_s form. When you reload the object, you get a string rather than a hash. This is unexpected:

t = Topic.new
t.title = { 'a' => 'b' }
t.title # => { 'a' => 'b' }
t.save
t.reload
t.title # => 'ab'

Comments and changes to this ticket

  • Neeraj Singh

    Neeraj Singh November 18th, 2010 @ 03:52 AM

    Assuming that title is defined as string and is not declared as serialize.

    Is the fix going to be serialize the value behind the scene and then desearialize?

  • 2kan

    2kan November 23rd, 2010 @ 11:45 AM

    +1 for serialize/deserialize

  • Aaron Patterson

    Aaron Patterson November 24th, 2010 @ 12:02 AM

    The fix should be to raise an exception unless you've declared the attribute as serialized.

  • rails

    rails February 25th, 2011 @ 12:00 AM

    • State changed from “new” to “open”

    This issue has been automatically marked as stale because it has not been commented on for at least three months.

    The resources of the Rails core team are limited, and so we are asking for your help. If you can still reproduce this error on the 3-0-stable branch or on master, please reply with all of the information you have about it and add "[state:open]" to your comment. This will reopen the ticket for review. Likewise, if you feel that this is a very important feature for Rails to include, please reply with your explanation so we can consider it.

    Thank you for all your contributions, and we hope you will understand this step to focus our efforts where they are most helpful.

  • rails

    rails February 25th, 2011 @ 12:00 AM

    • State changed from “open” to “stale”

Create your profile

Help contribute to this project by taking a few moments to create your personal profile. Create your profile »

<h2 style="font-size: 14px">Tickets have moved to Github</h2>

The new ticket tracker is available at <a href="https://github.com/rails/rails/issues">https://github.com/rails/rails/issues</a>

Pages