Revisit aggregate join logic
Reported by bahuvrihi | February 21st, 2009 @ 11:14 PM
Not efficient or useful for any other purpose.
#--
# TODO -- consider is there a better way to optimize this?
# currently this method is only used by an aggregate join
def has?(entry) # :nodoc:
synchronize do
entry_id = entry.object_id
@rounds.each do |round|
round.each do |enqued_entry|
return true if entry_id == enqued_entry.object_id
end
end
false
end
end
Comments and changes to this ticket
-
bahuvrihi May 25th, 2009 @ 12:10 PM
- Assigned user set to bahuvrihi
- State changed from new to invalid
Aggregate no longer used in join logic.
Please Sign in or create a free account to add a new ticket.
With your very own profile, you can contribute to projects, track your activity, watch tickets, receive and update tickets through your email and much more.
Create your profile
Help contribute to this project by taking a few moments to create your personal profile. Create your profile ยป
A framework for making configurable, file-based tasks and workflows.