Method: Sequel::SQL::QualifyingMethods#*
- Defined in:
- lib/sequel/sql.rb
#*(ce = (arg=false;nil)) ⇒ Object
If no arguments are given, return an SQL::ColumnAll:
Sequel[:a].* # a.*
924 925 926 927 928 929 930 |
# File 'lib/sequel/sql.rb', line 924 def *(ce=(arg=false;nil)) if arg == false Sequel::SQL::ColumnAll.new(self) else super(ce) end end |