aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/transactions.rb
diff options
context:
space:
mode:
authorEugene Kenny <elkenny@gmail.com>2019-05-12 15:16:39 +0100
committerEugene Kenny <elkenny@gmail.com>2019-05-12 15:16:39 +0100
commitb608ee88e9c0d8058ee4964dcb6a603b85505d25 (patch)
treed0fad72ce3e528a303e782079cb91d4d47a201a6 /activerecord/lib/active_record/transactions.rb
parent82e3891f14d9ed8a98118310b3d93f95c309c25e (diff)
downloadrails-b608ee88e9c0d8058ee4964dcb6a603b85505d25.tar.gz
rails-b608ee88e9c0d8058ee4964dcb6a603b85505d25.tar.bz2
rails-b608ee88e9c0d8058ee4964dcb6a603b85505d25.zip
Remove SQLite version support caveats [ci skip]
Since d1a74c1e012ed96f7179e53b9190b7da0a369e11, Active Record requires SQLite version 3.8.0 or greater, so savepoints and partial indexes are always available. That commit also added a runtime version check, so we can remove the minimum version requirement from the internal adapter documentation.
Diffstat (limited to 'activerecord/lib/active_record/transactions.rb')
-rw-r--r--activerecord/lib/active_record/transactions.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/activerecord/lib/active_record/transactions.rb b/activerecord/lib/active_record/transactions.rb
index 148bc0550c..cbb970ac98 100644
--- a/activerecord/lib/active_record/transactions.rb
+++ b/activerecord/lib/active_record/transactions.rb
@@ -164,12 +164,12 @@ module ActiveRecord
# end
# end
#
- # only "Kotori" is created. This works on MySQL and PostgreSQL. SQLite3 version >= '3.6.8' also supports it.
+ # only "Kotori" is created.
#
# Most databases don't support true nested transactions. At the time of
# writing, the only database that we're aware of that supports true nested
# transactions, is MS-SQL. Because of this, Active Record emulates nested
- # transactions by using savepoints on MySQL and PostgreSQL. See
+ # transactions by using savepoints. See
# https://dev.mysql.com/doc/refman/5.7/en/savepoint.html
# for more information about savepoints.
#