Method: Sequel::Postgres::DatasetMethods#supports_cte_in_subqueries?
- Defined in:
- lib/sequel/adapters/shared/postgres.rb
permalink #supports_cte_in_subqueries? ⇒ Boolean
PostgreSQL supports using the WITH clause in subqueries if it supports using WITH at all (i.e. on PostgreSQL 8.4+).
2180 2181 2182 |
# File 'lib/sequel/adapters/shared/postgres.rb', line 2180 def supports_cte_in_subqueries? supports_cte? end |