aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/nodes
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2010-09-20 16:23:23 -0700
committerAaron Patterson <aaron.patterson@gmail.com>2010-09-20 16:23:23 -0700
commit0e98ef149cd44dc04d40a8553e1743c5cb6d4a7c (patch)
treed81c026479834250149d90526c98247a1d004dd0 /lib/arel/nodes
parentcd13c3e1dad07c1168a318feb543d3b1ede9f2cf (diff)
downloadrails-0e98ef149cd44dc04d40a8553e1743c5cb6d4a7c.tar.gz
rails-0e98ef149cd44dc04d40a8553e1743c5cb6d4a7c.tar.bz2
rails-0e98ef149cd44dc04d40a8553e1743c5cb6d4a7c.zip
supporting ranges for IN statements
Diffstat (limited to 'lib/arel/nodes')
-rw-r--r--lib/arel/nodes/between.rb6
-rw-r--r--lib/arel/nodes/less_than.rb6
2 files changed, 12 insertions, 0 deletions
diff --git a/lib/arel/nodes/between.rb b/lib/arel/nodes/between.rb
new file mode 100644
index 0000000000..2e7596cdae
--- /dev/null
+++ b/lib/arel/nodes/between.rb
@@ -0,0 +1,6 @@
+module Arel
+ module Nodes
+ class Between < Arel::Nodes::Binary
+ end
+ end
+end
diff --git a/lib/arel/nodes/less_than.rb b/lib/arel/nodes/less_than.rb
new file mode 100644
index 0000000000..cfaf716c42
--- /dev/null
+++ b/lib/arel/nodes/less_than.rb
@@ -0,0 +1,6 @@
+module Arel
+ module Nodes
+ class LessThan < Arel::Nodes::Binary
+ end
+ end
+end