aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorRaimonds Simanovskis <raimonds.simanovskis@gmail.com>2010-11-16 12:45:29 +0200
committerRaimonds Simanovskis <raimonds.simanovskis@gmail.com>2010-11-16 12:45:29 +0200
commit237e580c4920b2414ef1bb72c14250688b479b9e (patch)
tree9387b40c4dfd18fae7e6bad97cb4fde2883431f9 /test
parentee30881b5aa0a545e6624bd343ae2646061e7107 (diff)
downloadrails-237e580c4920b2414ef1bb72c14250688b479b9e.tar.gz
rails-237e580c4920b2414ef1bb72c14250688b479b9e.tar.bz2
rails-237e580c4920b2414ef1bb72c14250688b479b9e.zip
fix one more time order_hacks method for Oracle
correctly split order string by commas ignoring commas which separate function arguments
Diffstat (limited to 'test')
-rw-r--r--test/visitors/test_oracle.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/visitors/test_oracle.rb b/test/visitors/test_oracle.rb
index d2a73ea8c5..2c9bba15d8 100644
--- a/test/visitors/test_oracle.rb
+++ b/test/visitors/test_oracle.rb
@@ -43,6 +43,18 @@ module Arel
}
end
+ it 'splits orders with commas and function calls' do
+ # *sigh*
+ select = "DISTINCT foo.id, FIRST_VALUE(projects.name) OVER (foo) AS alias_0__"
+ stmt = Nodes::SelectStatement.new
+ stmt.cores.first.projections << Nodes::SqlLiteral.new(select)
+ stmt.orders << Nodes::SqlLiteral.new('NVL(LOWER(bar, foo), foo) DESC, UPPER(baz)')
+ sql = @visitor.accept(stmt)
+ sql.must_be_like %{
+ SELECT #{select} ORDER BY alias_0__ DESC, alias_1__
+ }
+ end
+
describe 'Nodes::SelectStatement' do
describe 'limit' do
it 'adds a rownum clause' do