diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2011-02-07 15:12:21 -0800 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2011-02-07 15:12:21 -0800 |
commit | 30bba95a048af7f64724fe2450ad14967581a456 (patch) | |
tree | afd9322603e85efba87d44ed1d66c53428b6d93b /activerecord/test | |
parent | 1193709cd693099488353c20f2c7fadcf9cd6d05 (diff) | |
download | rails-30bba95a048af7f64724fe2450ad14967581a456.tar.gz rails-30bba95a048af7f64724fe2450ad14967581a456.tar.bz2 rails-30bba95a048af7f64724fe2450ad14967581a456.zip |
update ignored SQL for oracle
Diffstat (limited to 'activerecord/test')
-rw-r--r-- | activerecord/test/cases/helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/test/cases/helper.rb b/activerecord/test/cases/helper.rb index 499b30b4e8..8c001096cc 100644 --- a/activerecord/test/cases/helper.rb +++ b/activerecord/test/cases/helper.rb @@ -55,7 +55,7 @@ module ActiveRecord # FIXME: this needs to be refactored so specific database can add their own # ignored SQL. This ignored SQL is for Oracle. - IGNORED_SQL.concat [/^select .*nextval/i, /^SAVEPOINT/, /^ROLLBACK TO/, /^\s*select .* from ((all|user)_tab_columns|(all|user)_triggers|(all|user)_constraints)/im] + IGNORED_SQL.concat [/^select .*nextval/i, /^SAVEPOINT/, /^ROLLBACK TO/, /^\s*select .* from all_triggers/im] def initialize $queries_executed = [] |