class Sequel::SQL::ColumnAll
Represents all columns in a given table, table.* in SQL
Attributes
The table containing the columns being selected
Public Class Methods
Source
# File lib/sequel/sql.rb 1265 def initialize(table) 1266 @table = table 1267 freeze 1268 end
Create an object with the given table