diff options
author | Paul Sadauskas <psadauskas@gmail.com> | 2011-01-20 12:56:08 -0700 |
---|---|---|
committer | Paul Sadauskas <psadauskas@gmail.com> | 2011-01-21 17:25:12 -0700 |
commit | d532b7ee430c5d0c412ab9f1a5e0dd3ebc47f86b (patch) | |
tree | b6cd36d2643c2437db9778a250ce622e8b3432e0 /test/visitors | |
parent | dae7a245f8ec9f8eb5d9866938ea46ed7c88dcf1 (diff) | |
download | rails-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.rb | 1 |
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 |