提交 314e2cc0 编写于 作者: A Aaron Patterson

Merge pull request #12779 from...

Merge pull request #12779 from dougbarth/dont_swallow_exceptions_during_transactional_statements_in_mysql

Don't swallow exceptions in transctional statements
......@@ -320,27 +320,19 @@ def update_sql(sql, name = nil) #:nodoc:
def begin_db_transaction
execute "BEGIN"
rescue
# Transactions aren't supported
end
def begin_isolated_db_transaction(isolation)
execute "SET TRANSACTION ISOLATION LEVEL #{transaction_isolation_levels.fetch(isolation)}"
begin_db_transaction
rescue
# Transactions aren't supported
end
def commit_db_transaction #:nodoc:
execute "COMMIT"
rescue
# Transactions aren't supported
end
def rollback_db_transaction #:nodoc:
execute "ROLLBACK"
rescue
# Transactions aren't supported
end
# In the simple case, MySQL allows us to place JOINs directly into the UPDATE
......
......@@ -462,8 +462,6 @@ def exec_delete(sql, name, binds)
def begin_db_transaction #:nodoc:
exec_query "BEGIN"
rescue Mysql::Error
# Transactions aren't supported
end
private
......
......@@ -40,6 +40,11 @@ def test_no_automatic_reconnection_after_timeout
@connection.update('set @@wait_timeout=1')
sleep 2
assert !@connection.active?
# Repair all fixture connections so other tests won't break.
@fixture_connections.each do |c|
c.verify!
end
end
def test_successful_reconnection_after_timeout_with_manual_reconnect
......
......@@ -18,6 +18,11 @@ def test_no_automatic_reconnection_after_timeout
@connection.update('set @@wait_timeout=1')
sleep 2
assert !@connection.active?
# Repair all fixture connections so other tests won't break.
@fixture_connections.each do |c|
c.verify!
end
end
def test_successful_reconnection_after_timeout_with_manual_reconnect
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册