diff options
author | Yasuo Honda <yasuo.honda@gmail.com> | 2016-06-08 17:11:59 +0000 |
---|---|---|
committer | Yasuo Honda <yasuo.honda@gmail.com> | 2016-06-08 17:17:22 +0000 |
commit | d207023f835d735db2f2d9ce7702f55329d0c48f (patch) | |
tree | fa594e889bf221b421da17d3893a80a5abbe29a5 | |
parent | 84c90bbdfc75ebadc66f8d00efb2a2d268192a20 (diff) | |
download | rails-d207023f835d735db2f2d9ce7702f55329d0c48f.tar.gz rails-d207023f835d735db2f2d9ce7702f55329d0c48f.tar.bz2 rails-d207023f835d735db2f2d9ce7702f55329d0c48f.zip |
Allow Oracle bind parameter syntax `:a1`
-rw-r--r-- | activerecord/test/cases/associations/left_outer_join_association_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/test/cases/associations/left_outer_join_association_test.rb b/activerecord/test/cases/associations/left_outer_join_association_test.rb index 4af791b758..eee135cfb8 100644 --- a/activerecord/test/cases/associations/left_outer_join_association_test.rb +++ b/activerecord/test/cases/associations/left_outer_join_association_test.rb @@ -50,7 +50,7 @@ class LeftOuterJoinAssociationTest < ActiveRecord::TestCase def test_join_conditions_added_to_join_clause queries = capture_sql { Author.left_outer_joins(:essays).to_a } - assert queries.any? { |sql| /writer_type.*?=.*?(Author|\?|\$1)/i =~ sql } + assert queries.any? { |sql| /writer_type.*?=.*?(Author|\?|\$1|\:a1)/i =~ sql } assert queries.none? { |sql| /WHERE/i =~ sql } end |