Skip to content

Commit 7bd32d4

Browse files
committed
Fixed bug #8653 : TRANSACTION_ROLLBACK missing in the trace log when appropriate DB-level trigger fires
1 parent e98c36b commit 7bd32d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utilities/ntrace/TracePluginImpl.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -471,7 +471,7 @@ void TracePluginImpl::logRecordTrig(const char* action, ITraceDatabaseConnection
471471
extras += "TRANSACTION_COMMIT";
472472
break;
473473
case TRIGGER_TRANS_ROLLBACK:
474-
extras + "TRANSACTION_ROLLBACK";
474+
extras += "TRANSACTION_ROLLBACK";
475475
break;
476476
case TRIGGER_DDL:
477477
extras += "DDL";

0 commit comments

Comments
 (0)