diff options
author | Yasufumi Kinoshita <yasufumi.kinoshita@oracle.com> | 2012-12-04 12:32:58 +0900 |
---|---|---|
committer | Yasufumi Kinoshita <yasufumi.kinoshita@oracle.com> | 2012-12-04 12:32:58 +0900 |
commit | 859ff1ec36cac3fae7862b738a4d58f50ca7d44a (patch) | |
tree | 4c382cda506608042db3ab7cb03e5f929ef6b192 /storage | |
parent | 4148bec15135b7ccd47e1a078f62388530827884 (diff) | |
download | mariadb-git-859ff1ec36cac3fae7862b738a4d58f50ca7d44a.tar.gz |
UNIV_DEBUG build of some environments needs
#include "read0read.h"
for srv0srv.c and trx0rec.c.
This is only for mysql-5.5
Diffstat (limited to 'storage')
-rw-r--r-- | storage/innobase/srv/srv0srv.c | 1 | ||||
-rw-r--r-- | storage/innobase/trx/trx0rec.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/storage/innobase/srv/srv0srv.c b/storage/innobase/srv/srv0srv.c index 3b493e4e115..398c544bc5b 100644 --- a/storage/innobase/srv/srv0srv.c +++ b/storage/innobase/srv/srv0srv.c @@ -85,6 +85,7 @@ Created 10/8/1995 Heikki Tuuri #include "ha_prototypes.h" #include "trx0i_s.h" #include "os0sync.h" /* for HAVE_ATOMIC_BUILTINS */ +#include "read0read.h" #include "mysql/plugin.h" #include "mysql/service_thd_wait.h" diff --git a/storage/innobase/trx/trx0rec.c b/storage/innobase/trx/trx0rec.c index 9dd8cc7ba09..f80f58493aa 100644 --- a/storage/innobase/trx/trx0rec.c +++ b/storage/innobase/trx/trx0rec.c @@ -36,6 +36,7 @@ Created 3/26/1996 Heikki Tuuri #ifndef UNIV_HOTBACKUP #include "dict0dict.h" #include "ut0mem.h" +#include "read0read.h" #include "row0ext.h" #include "row0upd.h" #include "que0que.h" |