diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2011-04-25 12:01:22 -0700 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2011-04-25 12:01:22 -0700 |
commit | 30c7f0e4b365c85b7a910a0553ed936be56b9c4b (patch) | |
tree | 4978d35b0f41c4bd88bf367697ae8ffac9980a7b | |
parent | f72989de5b3b3cfb6e6e639b57c3a3bebb2de8f2 (diff) | |
download | rails-30c7f0e4b365c85b7a910a0553ed936be56b9c4b.tar.gz rails-30c7f0e4b365c85b7a910a0553ed936be56b9c4b.tar.bz2 rails-30c7f0e4b365c85b7a910a0553ed936be56b9c4b.zip |
add a factory method for production LOWER functions
-rw-r--r-- | lib/arel/factory_methods.rb | 6 | ||||
-rw-r--r-- | test/test_factory_methods.rb | 7 |
2 files changed, 13 insertions, 0 deletions
diff --git a/lib/arel/factory_methods.rb b/lib/arel/factory_methods.rb index 2ced1f8971..9fd0878ada 100644 --- a/lib/arel/factory_methods.rb +++ b/lib/arel/factory_methods.rb @@ -25,5 +25,11 @@ module Arel def grouping expr Nodes::Grouping.new expr end + + ### + # Create a LOWER() function + def lower column + Nodes::NamedFunction.new 'LOWER', [column] + end end end diff --git a/test/test_factory_methods.rb b/test/test_factory_methods.rb index 6506d3c472..50f77c3175 100644 --- a/test/test_factory_methods.rb +++ b/test/test_factory_methods.rb @@ -22,6 +22,13 @@ module Arel assert_instance_of Nodes::On, on assert_equal :one, on.expr end + + def test_lower + lower = @factory.lower :one + assert_instance_of Nodes::NamedFunction, lower + assert_equal 'LOWER', lower.name + assert_equal [:one], lower.expressions + end end end end |