Commit 805ac56a authored by Grzegorz Bizon's avatar Grzegorz Bizon

Increment subtransactions number when we detect an EXCEPTION

parent c0aa7533
...@@ -21,7 +21,7 @@ module Gitlab ...@@ -21,7 +21,7 @@ module Gitlab
context.set_start_time context.set_start_time
context.set_depth(0) context.set_depth(0)
context.track_sql(event.payload[:sql]) context.track_sql(event.payload[:sql])
elsif cmd.start_with?('SAVEPOINT ') elsif cmd.start_with?('SAVEPOINT', 'EXCEPTION')
context.set_depth(manager.open_transactions) context.set_depth(manager.open_transactions)
context.increment_savepoints context.increment_savepoints
elsif cmd.start_with?('ROLLBACK TO SAVEPOINT') elsif cmd.start_with?('ROLLBACK TO SAVEPOINT')
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment