Method: Sequel::Dataset#supports_cte_in_subqueries?
- Defined in:
- lib/sequel/dataset/features.rb
permalink #supports_cte_in_subqueries? ⇒ Boolean
Whether the dataset supports common table expressions in subqueries, false by default. If false, applies the WITH clause to the main query, which can cause issues if multiple WITH clauses use the same name.
55 56 57 |
# File 'lib/sequel/dataset/features.rb', line 55 def supports_cte_in_subqueries? false end |