aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2011-02-07 15:12:21 -0800
committerAaron Patterson <aaron.patterson@gmail.com>2011-02-07 15:12:21 -0800
commit30bba95a048af7f64724fe2450ad14967581a456 (patch)
treeafd9322603e85efba87d44ed1d66c53428b6d93b /activerecord
parent1193709cd693099488353c20f2c7fadcf9cd6d05 (diff)
downloadrails-30bba95a048af7f64724fe2450ad14967581a456.tar.gz
rails-30bba95a048af7f64724fe2450ad14967581a456.tar.bz2
rails-30bba95a048af7f64724fe2450ad14967581a456.zip
update ignored SQL for oracle
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/test/cases/helper.rb2
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 = []