Commit 62233c20 authored by unknown's avatar unknown

more post-merge fixes for SingleUser log events


ndb/include/mgmapi/ndb_logevent.h:
  more post-merge fixes
ndb/src/mgmapi/ndb_logevent.cpp:
  more post-merge fixes
parent aa1c81b1
...@@ -595,6 +595,7 @@ extern "C" { ...@@ -595,6 +595,7 @@ extern "C" {
} BackupAborted; } BackupAborted;
/** Log event data @ref NDB_LE_SingleUser */ /** Log event data @ref NDB_LE_SingleUser */
struct { struct {
unsigned type;
unsigned node_id; unsigned node_id;
} SingleUser; } SingleUser;
#ifndef DOXYGEN_FIX #ifndef DOXYGEN_FIX
......
...@@ -289,7 +289,8 @@ struct Ndb_logevent_body_row ndb_logevent_body[]= { ...@@ -289,7 +289,8 @@ struct Ndb_logevent_body_row ndb_logevent_body[]= {
ROW( BackupAborted, "backup_id", 2, backup_id), ROW( BackupAborted, "backup_id", 2, backup_id),
ROW( BackupAborted, "error", 3, error), ROW( BackupAborted, "error", 3, error),
ROW( SingleUser, "node_id", 1, node_id), ROW( SingleUser, "type", 1, type),
ROW( SingleUser, "node_id", 2, node_id),
{ NDB_LE_ILLEGAL_TYPE, 0, 0, 0, 0, 0} { NDB_LE_ILLEGAL_TYPE, 0, 0, 0, 0, 0}
}; };
......
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