Class: Sequel::SQL::ColumnAll
- Inherits:
-
Expression
- Object
- Expression
- Sequel::SQL::ColumnAll
- Defined in:
- lib/sequel/core_sql.rb
Instance Method Summary collapse
-
#initialize(t) ⇒ ColumnAll
constructor
A new instance of ColumnAll.
- #to_s(ds) ⇒ Object
Methods inherited from Expression
Constructor Details
#initialize(t) ⇒ ColumnAll
Returns a new instance of ColumnAll.
111 |
# File 'lib/sequel/core_sql.rb', line 111 def initialize(t); @t = t; end |
Instance Method Details
#to_s(ds) ⇒ Object
112 |
# File 'lib/sequel/core_sql.rb', line 112 def to_s(ds); "#{@t}.*"; end |