aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/nodes
diff options
context:
space:
mode:
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