This project is archived and is in readonly mode.

#2763 ✓stale
Bob Zoller

question and serialized attribute methods should raise ActiveRecord::MissingAttributeError.

Reported by Bob Zoller | June 5th, 2009 @ 01:29 AM | in 3.x

When doing a find and specifying :select, ActiveRecord will raise a MissingAttributeError if you try to access an attribute that wasn't included in the :select.

It will not, however, raise that error if you access serialized attributes or the question method of a boolean attribute. This patch fixes that (and adds tests to cover it).

Given this ActiveRecord model:

class User < ActiveRecord::Base
  # column :name, :string
  # column :data, :text
  # column :active, :boolean


serialize :data end

And this database record:

User.create!(:name => 'Bob', :data => [], :active => true)

Before this patch:

u = User.find(:first, :select => 'id')
u.name #=> raises ActiveRecord::MissingAttributeError
u.active #=> raises ActiveRecord::MissingAttributeError
u.active? #=> nil
u.data #=> nil

After this patch:

u = User.find(:first, :select => 'id')
u.name #=> raises ActiveRecord::MissingAttributeError
u.active #=> raises ActiveRecord::MissingAttributeError
u.active? #=> raises ActiveRecord::MissingAttributeError
u.data #=> raises ActiveRecord::MissingAttributeError

Comments and changes to this ticket

  • Jeremy Kemper

    Jeremy Kemper May 4th, 2010 @ 06:48 PM

    • Milestone changed from 2.x to 3.x
  • Rohit Arondekar

    Rohit Arondekar October 15th, 2010 @ 11:13 AM

    • State changed from “new” to “open”
    • Assigned user set to “Rohit Arondekar”
    • Importance changed from “” to “Low”

    This still happens on Rails 3. Could you rebase/re-write the patch?

  • Santiago Pastorino

    Santiago Pastorino February 2nd, 2011 @ 04:30 PM

    • Tag changed from 2.x, active_record, patch to 2x, active_record, patch

    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.

  • Santiago Pastorino

    Santiago Pastorino February 2nd, 2011 @ 04:30 PM

    • State changed from “open” to “stale”
  • bingbing

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