Represents all columns in a given table, table.* in SQL
Create an object with the given table
[Source]
# File lib/sequel/sql.rb, line 508 508: def initialize(table) 509: @table = table 510: end
ColumnAll expressions are considered equivalent if they have the same class and string representation
# File lib/sequel/sql.rb, line 514 514: def ==(x) 515: x.class == self.class and @table == x.table 516: end
[Validate]