Class: Sequel::SQL::ColumnAll
- Inherits:
-
Expression
- Object
- Expression
- Sequel::SQL::ColumnAll
- Defined in:
- lib/sequel/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.
Methods inherited from Expression
attr_reader, comparison_attrs, #eql?, #lit, #sql_literal
Constructor Details
#initialize(table) ⇒ ColumnAll
Create an object with the given table
558 559 560 |
# File 'lib/sequel/sql.rb', line 558 def initialize(table) @table = table end |
Instance Attribute Details
#table ⇒ Object (readonly)
The table containing the columns being selected
555 556 557 |
# File 'lib/sequel/sql.rb', line 555 def table @table end |
Instance Method Details
#==(x) ⇒ Object
ColumnAll expressions are considered equivalent if they have the same class and string representation
564 565 566 |
# File 'lib/sequel/sql.rb', line 564 def ==(x) x.class == self.class and @table == x.table end |