diff options
author | Ryuta Kamizono <kamipo@gmail.com> | 2016-04-24 11:02:30 +0900 |
---|---|---|
committer | Ryuta Kamizono <kamipo@gmail.com> | 2016-04-24 11:02:30 +0900 |
commit | 7ec31ac4296cc10ca463e1b4673ab5440daf5e1d (patch) | |
tree | 5e76ffc9ec893e154acb595f0aa54d7b2950813b /activerecord | |
parent | 39f1dac9a5700c6601f671fea2e9b68b785c94d2 (diff) | |
download | rails-7ec31ac4296cc10ca463e1b4673ab5440daf5e1d.tar.gz rails-7ec31ac4296cc10ca463e1b4673ab5440daf5e1d.tar.bz2 rails-7ec31ac4296cc10ca463e1b4673ab5440daf5e1d.zip |
Remove in the doc about MySQL versions below 5 [ci skip]
Follow up to #23458.
Active Record supports MySQL >= 5.0 now.
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/lib/active_record/connection_adapters/abstract/database_statements.rb | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/activerecord/lib/active_record/connection_adapters/abstract/database_statements.rb b/activerecord/lib/active_record/connection_adapters/abstract/database_statements.rb index ddfd97b537..cc33af25f6 100644 --- a/activerecord/lib/active_record/connection_adapters/abstract/database_statements.rb +++ b/activerecord/lib/active_record/connection_adapters/abstract/database_statements.rb @@ -221,9 +221,7 @@ module ActiveRecord # * You are creating a nested (savepoint) transaction # # The mysql2 and postgresql adapters support setting the transaction - # isolation level. However, support is disabled for MySQL versions below 5, - # because they are affected by a bug[http://bugs.mysql.com/bug.php?id=39170] - # which means the isolation level gets persisted outside the transaction. + # isolation level. def transaction(requires_new: nil, isolation: nil, joinable: true) if !requires_new && current_transaction.joinable? if isolation |