Class: Sequel::SQL::ColumnAll
- Inherits:
-
SpecificExpression
- Object
- Expression
- SpecificExpression
- Sequel::SQL::ColumnAll
- Defined in:
- lib/sequel_core/sql.rb
Overview
Represents all columns in a given table, table.* in SQL
Instance Attribute Summary collapse
-
#table ⇒ Object
readonly
The table containing the columns being selected.
Instance Method Summary collapse
-
#==(x) ⇒ Object
ColumnAll expressions are considered equivalent if they have the same class and string representation.
-
#initialize(table) ⇒ ColumnAll
constructor
Create an object with the given table.
-
#to_s(ds) ⇒ Object
Delegate the creation of the resulting SQL to the given dataset, since it may be database dependent.
Methods inherited from Expression
Constructor Details
#initialize(table) ⇒ ColumnAll
Create an object with the given table
532 533 534 |
# File 'lib/sequel_core/sql.rb', line 532 def initialize(table) @table = table end |
Instance Attribute Details
#table ⇒ Object (readonly)
The table containing the columns being selected
529 530 531 |
# File 'lib/sequel_core/sql.rb', line 529 def table @table end |
Instance Method Details
#==(x) ⇒ Object
ColumnAll expressions are considered equivalent if they have the same class and string representation
538 539 540 |
# File 'lib/sequel_core/sql.rb', line 538 def ==(x) x.class == self.class && @table == x.table end |
#to_s(ds) ⇒ Object
Delegate the creation of the resulting SQL to the given dataset, since it may be database dependent.
544 545 546 |
# File 'lib/sequel_core/sql.rb', line 544 def to_s(ds) ds.column_all_sql(self) end |