diff options
author | Matthew Draper <matthew@trebex.net> | 2014-12-25 18:00:07 +1030 |
---|---|---|
committer | Matthew Draper <matthew@trebex.net> | 2014-12-25 18:00:07 +1030 |
commit | bf7c7558b57a36d9997fcbf3aee00e0e493f6649 (patch) | |
tree | b838d8bece807bb34684f6999065d0a6543d0726 /test | |
parent | 0cd5fa9671592a16ee34f0718704b15f27911620 (diff) | |
parent | 2c95c39e9345ef50a7e9c3ad573857b1d358e04a (diff) | |
download | rails-bf7c7558b57a36d9997fcbf3aee00e0e493f6649.tar.gz rails-bf7c7558b57a36d9997fcbf3aee00e0e493f6649.tar.bz2 rails-bf7c7558b57a36d9997fcbf3aee00e0e493f6649.zip |
Merge pull request #344 from kaznum/support_the_escape_clause_of_postgresql
{Matches,DoesNotMatch} support the ESCAPE clause with PostgreSQL
Diffstat (limited to 'test')
-rw-r--r-- | test/visitors/test_postgres.rb | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/test/visitors/test_postgres.rb b/test/visitors/test_postgres.rb index 368feb5977..d6de216d91 100644 --- a/test/visitors/test_postgres.rb +++ b/test/visitors/test_postgres.rb @@ -58,6 +58,13 @@ module Arel } end + it "can handle ESCAPE" do + node = @table[:name].matches('foo!%', '!') + compile(node).must_be_like %{ + "users"."name" ILIKE 'foo!%' ESCAPE '!' + } + end + it 'can handle subqueries' do subquery = @table.project(:id).where(@table[:name].matches('foo%')) node = @attr.in subquery @@ -75,6 +82,13 @@ module Arel } end + it "can handle ESCAPE" do + node = @table[:name].does_not_match('foo!%', '!') + compile(node).must_be_like %{ + "users"."name" NOT ILIKE 'foo!%' ESCAPE '!' + } + end + it 'can handle subqueries' do subquery = @table.project(:id).where(@table[:name].does_not_match('foo%')) node = @attr.in subquery |