I was seeing these examples in a book:

Person.minimum(:age).where('last_name <> ?', 'Drake')
Person.minimum(:age).having('min(age) > 17').group(:last_name)

The thing is minimum is returning a FixNum. When invoking the relation
methods (e.g. where, having) on a fixnum will raise an exception:

undefined method `where' for 1:Fixnum

So am I missing something here?

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To unsubscribe from this group, send email to 
rubyonrails-talk+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to