Hi Jeremy, is there a technical reason for not being able to use virtual row on join conditions? It looks like virtual row should be a good fit for join conditions. If we could solve this problem it would save us tons of time porting 1.8 to 1.9. Thanks, -Alex
This is the same issue with the inequality methods on Symbol already being > defined. The only difference is that you can't use a virtual row in this > case. As a general rule, you can just wrap the symbol in Sequel.expr: > > join(:geo_locations, ((Sequel.expr(:linksource_visits__ip) >= > :geo_locations__ip_from) & (Sequel.expr(:linksource_visits__ip) <= > :geo_locations__ip_to))) > > Thanks, > Jeremy > -- You received this message because you are subscribed to the Google Groups "sequel-talk" group. To view this discussion on the web visit https://groups.google.com/d/msg/sequel-talk/-/kVnxztXYraIJ. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/sequel-talk?hl=en.
