Class: Arel::Nodes::CteName
- Inherits:
-
Unary
- Object
- Unary
- Arel::Nodes::CteName
- Defined in:
- lib/arel/cte_name.rb
Instance Method Summary collapse
-
#initialize(expr) ⇒ CteName
constructor
A new instance of CteName.
Constructor Details
#initialize(expr) ⇒ CteName
Returns a new instance of CteName.
6 7 8 9 |
# File 'lib/arel/cte_name.rb', line 6 def initialize(expr) expr = SqlLiteral.new(expr) super expr end |