I posted a question earlier - Issues with DISTINCT when used in conjunction with ORDER to which I received a great answer which worked locally on my machine. However, when I pushed it to the server the code didn't do anything to the results... I have since contacted our host provider and discovered that the version of Ruby on the server is 1.8.7
With this in mind, is anyone able to tell me how I can do the equivalent of
@unique_results = @filtered_names.uniq { |result| result.athlete_id }
in a way that will run on our server?
As it stands @unique_results is identical to @filtered_names and the repeat names (as described in the original post) remain in the output.
Thanks for your time