:nocov:
Public Instance methods
[](v)
[show source]
# File lib/sequel/extensions/symbol_aref.rb 25 def [](v) 26 case v 27 when Symbol, Sequel::SQL::Identifier, Sequel::SQL::QualifiedIdentifier 28 Sequel::SQL::QualifiedIdentifier.new(self, v) 29 else 30 super 31 end 32 end