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