Class: Sequel::SQL::ColumnAll
- Inherits:
-
Expression
- Object
- Expression
- Sequel::SQL::ColumnAll
- Defined in:
- lib/sequel/sql.rb
Overview
Represents all columns in a given table, table.* in SQL
Instance Attribute Summary collapse
-
#table ⇒ Object
readonly
The table containing the columns being selected.
Instance Method Summary collapse
-
#initialize(table) ⇒ ColumnAll
constructor
Create an object with the given table.
Methods inherited from Expression
#==, attr_reader, #clone, #eql?, #hash, inherited, #inspect
Constructor Details
permalink #initialize(table) ⇒ ColumnAll
Create an object with the given table
1265 1266 1267 1268 |
# File 'lib/sequel/sql.rb', line 1265 def initialize(table) @table = table freeze end |