aboutsummaryrefslogtreecommitdiffstats
path: root/test/visitors
diff options
context:
space:
mode:
authorPaul Sadauskas <psadauskas@gmail.com>2011-01-20 12:56:08 -0700
committerPaul Sadauskas <psadauskas@gmail.com>2011-01-21 17:25:12 -0700
commitd532b7ee430c5d0c412ab9f1a5e0dd3ebc47f86b (patch)
treeb6cd36d2643c2437db9778a250ce622e8b3432e0 /test/visitors
parentdae7a245f8ec9f8eb5d9866938ea46ed7c88dcf1 (diff)
downloadrails-d532b7ee430c5d0c412ab9f1a5e0dd3ebc47f86b.tar.gz
rails-d532b7ee430c5d0c412ab9f1a5e0dd3ebc47f86b.tar.bz2
rails-d532b7ee430c5d0c412ab9f1a5e0dd3ebc47f86b.zip
Add support for WITH and UNION
PostgreSQL WITH RECURSIVE support Make WITH be a unary node
Diffstat (limited to 'test/visitors')
-rw-r--r--test/visitors/test_postgres.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/visitors/test_postgres.rb b/test/visitors/test_postgres.rb
index 6e8f399b6b..8d3f19aa6e 100644
--- a/test/visitors/test_postgres.rb
+++ b/test/visitors/test_postgres.rb
@@ -22,6 +22,7 @@ module Arel
assert_match(/LIMIT 'omg'/, sql)
assert_equal 1, sql.scan(/LIMIT/).length, 'should have one limit'
end
+
end
end
end