diff options
author | Paul Sadauskas <psadauskas@gmail.com> | 2011-01-21 17:30:10 -0700 |
---|---|---|
committer | Paul Sadauskas <psadauskas@gmail.com> | 2011-01-21 17:30:10 -0700 |
commit | 6abed021b19d073f159f9b7e6d9f466e053f8e6b (patch) | |
tree | fc6575c72f23f658545c8c0074f09aaccda43706 /lib/arel/visitors | |
parent | d532b7ee430c5d0c412ab9f1a5e0dd3ebc47f86b (diff) | |
download | rails-6abed021b19d073f159f9b7e6d9f466e053f8e6b.tar.gz rails-6abed021b19d073f159f9b7e6d9f466e053f8e6b.tar.bz2 rails-6abed021b19d073f159f9b7e6d9f466e053f8e6b.zip |
Don't need with_recursive
Diffstat (limited to 'lib/arel/visitors')
-rw-r--r-- | lib/arel/visitors/to_sql.rb | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/arel/visitors/to_sql.rb b/lib/arel/visitors/to_sql.rb index f3c8710068..37c6a533ed 100644 --- a/lib/arel/visitors/to_sql.rb +++ b/lib/arel/visitors/to_sql.rb @@ -130,7 +130,6 @@ eowarn def visit_Arel_Nodes_SelectStatement o [ (visit(o.with) if o.with), - (visit(o.with_recursive) if o.with_recursive), o.cores.map { |x| visit_Arel_Nodes_SelectCore x }.join, ("ORDER BY #{o.orders.map { |x| visit x }.join(', ')}" unless o.orders.empty?), (visit(o.limit) if o.limit), |