Commit 3a439a34 authored by unknown's avatar unknown

ha_innodb.cc:

  Fix compilation error in the fix of Bug #12263


sql/ha_innodb.cc:
  Fix compilation error in the fix of Bug #12263
parent 4daa2cd1
......@@ -2153,7 +2153,7 @@ innobase_close_connection(
" InnoDB: Warning: MySQL is closing a connection"
"InnoDB: that has an active InnoDB transaction. We roll back that\n"
"InnoDB: transaction. %lu row modifications to roll back.\n",
(ulong)ut_dulint_get_low(trx->undo_no));
(ulong)trx->undo_no.low);
}
innobase_rollback_trx(trx);
......
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