From e2374e8dc7223dd224bebc8cb0b4811a30f70f07 Mon Sep 17 00:00:00 2001 From: marko Date: Thu, 19 Apr 2007 13:02:21 +0000 Subject: [PATCH] ha_innodb.cc: Remove ../storage/innobase/include/ prefix from #include directives. This could and should have been done when sql/ha_innodb.cc was renamed to storage/innobase/handler/ha_innodb.cc. --- handler/ha_innodb.cc | 48 ++++++++++++++++++++++---------------------- 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/handler/ha_innodb.cc b/handler/ha_innodb.cc index 8ac713a1ad4..c3b460f5a12 100644 --- a/handler/ha_innodb.cc +++ b/handler/ha_innodb.cc @@ -67,30 +67,30 @@ typedef byte mysql_byte; /* Include necessary InnoDB headers */ extern "C" { -#include "../storage/innobase/include/univ.i" -#include "../storage/innobase/include/os0file.h" -#include "../storage/innobase/include/os0thread.h" -#include "../storage/innobase/include/srv0start.h" -#include "../storage/innobase/include/srv0srv.h" -#include "../storage/innobase/include/trx0roll.h" -#include "../storage/innobase/include/trx0trx.h" -#include "../storage/innobase/include/trx0sys.h" -#include "../storage/innobase/include/mtr0mtr.h" -#include "../storage/innobase/include/row0ins.h" -#include "../storage/innobase/include/row0mysql.h" -#include "../storage/innobase/include/row0sel.h" -#include "../storage/innobase/include/row0upd.h" -#include "../storage/innobase/include/log0log.h" -#include "../storage/innobase/include/lock0lock.h" -#include "../storage/innobase/include/dict0crea.h" -#include "../storage/innobase/include/btr0cur.h" -#include "../storage/innobase/include/btr0btr.h" -#include "../storage/innobase/include/fsp0fsp.h" -#include "../storage/innobase/include/sync0sync.h" -#include "../storage/innobase/include/fil0fil.h" -#include "../storage/innobase/include/trx0xa.h" -#include "../storage/innobase/include/thr0loc.h" -#include "../storage/innobase/include/ha_prototypes.h" +#include "univ.i" +#include "os0file.h" +#include "os0thread.h" +#include "srv0start.h" +#include "srv0srv.h" +#include "trx0roll.h" +#include "trx0trx.h" +#include "trx0sys.h" +#include "mtr0mtr.h" +#include "row0ins.h" +#include "row0mysql.h" +#include "row0sel.h" +#include "row0upd.h" +#include "log0log.h" +#include "lock0lock.h" +#include "dict0crea.h" +#include "btr0cur.h" +#include "btr0btr.h" +#include "fsp0fsp.h" +#include "sync0sync.h" +#include "fil0fil.h" +#include "trx0xa.h" +#include "thr0loc.h" +#include "ha_prototypes.h" } ulong innobase_large_page_size = 0;