On Feb 10, 12:09 pm, Michael Lang <[email protected]> wrote:
> Instead of :transaction_classes___tc, do something that's more
> juxtaposed, like :transaction_classes.tc

You'd have to add Symbol#method_missing and have it return a
Sequel::SQL::QualifiedIdentifier to do that, which I'm unwilling to do
as I think it's too intrusive (the Symbol#[] on 1.8 causes enough
problems).  If you want to use it in your own code:

  class Symbol
    def method_missing(m)
      Sequel::SQL::QualifiedIdentifier.new(self, m)
    end
  end

Jeremy

-- 
You received this message because you are subscribed to the Google Groups 
"sequel-talk" group.
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.

Reply via email to