Method: Sequel::SQL::JoinClause#table
- Defined in:
- lib/sequel/sql.rb
permalink #table ⇒ Object
The table/set related to the JOIN, without any alias.
1555 1556 1557 1558 1559 1560 1561 |
# File 'lib/sequel/sql.rb', line 1555 def table if @table_expr.is_a?(AliasedExpression) @table_expr.expression else @table_expr end end |