Represents all columns in a given table, table.* in SQL
Create an object with the given table
[Source]
# File lib/sequel_core/sql.rb, line 525 525: def initialize(table) 526: @table = table 527: end
ColumnAll expressions are considered equivalent if they have the same class and string representation
# File lib/sequel_core/sql.rb, line 531 531: def ==(x) 532: x.class == self.class && @table == x.table 533: end
Delegate the creation of the resulting SQL to the given dataset, since it may be database dependent.
# File lib/sequel_core/sql.rb, line 537 537: def to_s(ds) 538: ds.column_all_sql(self) 539: end
[Validate]