summaryrefslogtreecommitdiff
path: root/ndb
diff options
context:
space:
mode:
authorunknown <stewart@mysql.com>2005-09-30 14:44:24 +1000
committerunknown <stewart@mysql.com>2005-09-30 14:44:24 +1000
commit62233c2091f3fe2462f52a867806ee9c1ca6120c (patch)
tree865641db81ce2302b60e57466440caca8a016c4e /ndb
parentaa1c81b1500aa9cfcd126d0e0742a443c29d4537 (diff)
downloadmariadb-git-62233c2091f3fe2462f52a867806ee9c1ca6120c.tar.gz
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
Diffstat (limited to 'ndb')
-rw-r--r--ndb/include/mgmapi/ndb_logevent.h1
-rw-r--r--ndb/src/mgmapi/ndb_logevent.cpp3
2 files changed, 3 insertions, 1 deletions
diff --git a/ndb/include/mgmapi/ndb_logevent.h b/ndb/include/mgmapi/ndb_logevent.h
index ff0d817d593..b69379545fc 100644
--- a/ndb/include/mgmapi/ndb_logevent.h
+++ b/ndb/include/mgmapi/ndb_logevent.h
@@ -595,6 +595,7 @@ extern "C" {
} BackupAborted;
/** Log event data @ref NDB_LE_SingleUser */
struct {
+ unsigned type;
unsigned node_id;
} SingleUser;
#ifndef DOXYGEN_FIX
diff --git a/ndb/src/mgmapi/ndb_logevent.cpp b/ndb/src/mgmapi/ndb_logevent.cpp
index 046df06754a..918ec5d6705 100644
--- a/ndb/src/mgmapi/ndb_logevent.cpp
+++ b/ndb/src/mgmapi/ndb_logevent.cpp
@@ -289,7 +289,8 @@ struct Ndb_logevent_body_row ndb_logevent_body[]= {
ROW( BackupAborted, "backup_id", 2, backup_id),
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}
};