We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 087ce9d + c132841 commit a4c9538Copy full SHA for a4c9538
activerecord/lib/active_record/connection_adapters/abstract/database_statements.rb
@@ -125,7 +125,8 @@ def supports_statement_cache?
125
# In order to get around this problem, #transaction will emulate the effect
126
# of nested transactions, by using savepoints:
127
# http://dev.mysql.com/doc/refman/5.0/en/savepoint.html
128
- # Savepoints are supported by MySQL and PostgreSQL, but not SQLite3.
+ # Savepoints are supported by MySQL and PostgreSQL. SQLite3 version >= '3.6.8'
129
+ # supports savepoints.
130
#
131
# It is safe to call this method if a database transaction is already open,
132
# i.e. if #transaction is called within another #transaction block. In case
0 commit comments