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