aboutsummaryrefslogtreecommitdiffstats
path: root/test/visitors
diff options
context:
space:
mode:
authorAlexander Staubo <alex@origo.no>2012-02-22 15:25:10 +0100
committerAlexander Staubo <alex@origo.no>2012-02-22 15:25:10 +0100
commita1a6fbc189d0cb8c44606eafcb8bda7a010554c0 (patch)
tree05bb006e6a5b39e5796d5eae302642c169ba7d5b /test/visitors
parent6e427e589820278908e7a746749eb9b79b0f85e3 (diff)
downloadrails-a1a6fbc189d0cb8c44606eafcb8bda7a010554c0.tar.gz
rails-a1a6fbc189d0cb8c44606eafcb8bda7a010554c0.tar.bz2
rails-a1a6fbc189d0cb8c44606eafcb8bda7a010554c0.zip
Support ANSI SQL2003 window functions.
Diffstat (limited to 'test/visitors')
-rw-r--r--test/visitors/test_depth_first.rb6
1 files changed, 4 insertions, 2 deletions
diff --git a/test/visitors/test_depth_first.rb b/test/visitors/test_depth_first.rb
index e62ce5266f..9c01fb8fcc 100644
--- a/test/visitors/test_depth_first.rb
+++ b/test/visitors/test_depth_first.rb
@@ -179,7 +179,8 @@ module Arel
core.froms = :b
core.wheres << :c
core.groups << :d
- core.having = :e
+ core.windows << :e
+ core.having = :f
@visitor.accept core
assert_equal [
@@ -188,7 +189,8 @@ module Arel
core.source,
:c, core.wheres,
:d, core.groups,
- :e,
+ :e, core.windows,
+ :f,
core], @collector.calls
end