diff --git a/config/ac-macros/ha_berkeley.m4 b/config/ac-macros/ha_berkeley.m4 index 732c7730816..5463f10ca98 100644 --- a/config/ac-macros/ha_berkeley.m4 +++ b/config/ac-macros/ha_berkeley.m4 @@ -187,7 +187,7 @@ AC_DEFUN([MYSQL_SEARCH_FOR_BDB], [ dnl echo ["MYSQL_SEARCH_FOR_BDB"] bdb_dir_ok="no BerkeleyDB found" - for test_dir in $srcdir/bdb $srcdir/db-*.*.* /usr/local/BerkeleyDB*; do + for test_dir in $srcdir/storage/bdb $srcdir/db-*.*.* /usr/local/BerkeleyDB*; do dnl echo "-----------> Looking at ($test_dir; `cd $test_dir && pwd`)" MYSQL_CHECK_BDB_DIR([$test_dir]) if test X"$bdb_dir_ok" = Xsource || test X"$bdb_dir_ok" = Xinstalled; then diff --git a/config/ac-macros/ha_innodb.m4 b/config/ac-macros/ha_innodb.m4 index 17f0fab3e90..287b77c8851 100644 --- a/config/ac-macros/ha_innodb.m4 +++ b/config/ac-macros/ha_innodb.m4 @@ -20,45 +20,45 @@ AC_DEFUN([MYSQL_CHECK_INNODB], [ AC_MSG_RESULT([Using Innodb]) AC_DEFINE([HAVE_INNOBASE_DB], [1], [Using Innobase DB]) have_innodb="yes" - innodb_includes="-I../innobase/include" + innodb_includes="-I\$(top_builddir)/innobase/include" innodb_system_libs="" dnl Some libs are listed several times, in order for gcc to sort out dnl circular references. innodb_libs="\ - \$(top_builddir)/innobase/usr/libusr.a\ - \$(top_builddir)/innobase/srv/libsrv.a\ - \$(top_builddir)/innobase/dict/libdict.a\ - \$(top_builddir)/innobase/que/libque.a\ - \$(top_builddir)/innobase/srv/libsrv.a\ - \$(top_builddir)/innobase/ibuf/libibuf.a\ - \$(top_builddir)/innobase/row/librow.a\ - \$(top_builddir)/innobase/pars/libpars.a\ - \$(top_builddir)/innobase/btr/libbtr.a\ - \$(top_builddir)/innobase/trx/libtrx.a\ - \$(top_builddir)/innobase/read/libread.a\ - \$(top_builddir)/innobase/usr/libusr.a\ - \$(top_builddir)/innobase/buf/libbuf.a\ - \$(top_builddir)/innobase/ibuf/libibuf.a\ - \$(top_builddir)/innobase/eval/libeval.a\ - \$(top_builddir)/innobase/log/liblog.a\ - \$(top_builddir)/innobase/fsp/libfsp.a\ - \$(top_builddir)/innobase/fut/libfut.a\ - \$(top_builddir)/innobase/fil/libfil.a\ - \$(top_builddir)/innobase/lock/liblock.a\ - \$(top_builddir)/innobase/mtr/libmtr.a\ - \$(top_builddir)/innobase/page/libpage.a\ - \$(top_builddir)/innobase/rem/librem.a\ - \$(top_builddir)/innobase/thr/libthr.a\ - \$(top_builddir)/innobase/sync/libsync.a\ - \$(top_builddir)/innobase/data/libdata.a\ - \$(top_builddir)/innobase/mach/libmach.a\ - \$(top_builddir)/innobase/ha/libha.a\ - \$(top_builddir)/innobase/dyn/libdyn.a\ - \$(top_builddir)/innobase/mem/libmem.a\ - \$(top_builddir)/innobase/sync/libsync.a\ - \$(top_builddir)/innobase/ut/libut.a\ - \$(top_builddir)/innobase/os/libos.a\ - \$(top_builddir)/innobase/ut/libut.a" + \$(top_builddir)/storage/innobase/usr/libusr.a\ + \$(top_builddir)/storage/innobase/srv/libsrv.a\ + \$(top_builddir)/storage/innobase/dict/libdict.a\ + \$(top_builddir)/storage/innobase/que/libque.a\ + \$(top_builddir)/storage/innobase/srv/libsrv.a\ + \$(top_builddir)/storage/innobase/ibuf/libibuf.a\ + \$(top_builddir)/storage/innobase/row/librow.a\ + \$(top_builddir)/storage/innobase/pars/libpars.a\ + \$(top_builddir)/storage/innobase/btr/libbtr.a\ + \$(top_builddir)/storage/innobase/trx/libtrx.a\ + \$(top_builddir)/storage/innobase/read/libread.a\ + \$(top_builddir)/storage/innobase/usr/libusr.a\ + \$(top_builddir)/storage/innobase/buf/libbuf.a\ + \$(top_builddir)/storage/innobase/ibuf/libibuf.a\ + \$(top_builddir)/storage/innobase/eval/libeval.a\ + \$(top_builddir)/storage/innobase/log/liblog.a\ + \$(top_builddir)/storage/innobase/fsp/libfsp.a\ + \$(top_builddir)/storage/innobase/fut/libfut.a\ + \$(top_builddir)/storage/innobase/fil/libfil.a\ + \$(top_builddir)/storage/innobase/lock/liblock.a\ + \$(top_builddir)/storage/innobase/mtr/libmtr.a\ + \$(top_builddir)/storage/innobase/page/libpage.a\ + \$(top_builddir)/storage/innobase/rem/librem.a\ + \$(top_builddir)/storage/innobase/thr/libthr.a\ + \$(top_builddir)/storage/innobase/sync/libsync.a\ + \$(top_builddir)/storage/innobase/data/libdata.a\ + \$(top_builddir)/storage/innobase/mach/libmach.a\ + \$(top_builddir)/storage/innobase/ha/libha.a\ + \$(top_builddir)/storage/innobase/dyn/libdyn.a\ + \$(top_builddir)/storage/innobase/mem/libmem.a\ + \$(top_builddir)/storage/innobase/sync/libsync.a\ + \$(top_builddir)/storage/innobase/ut/libut.a\ + \$(top_builddir)/storage/innobase/os/libos.a\ + \$(top_builddir)/storage/innobase/ut/libut.a" AC_CHECK_LIB(rt, aio_read, [innodb_system_libs="-lrt"]) ;; diff --git a/config/ac-macros/ha_ndbcluster.m4 b/config/ac-macros/ha_ndbcluster.m4 index dc5e0e73558..f26c62ee214 100644 --- a/config/ac-macros/ha_ndbcluster.m4 +++ b/config/ac-macros/ha_ndbcluster.m4 @@ -131,10 +131,10 @@ AC_DEFUN([MYSQL_CHECK_NDBCLUSTER], [ AC_MSG_RESULT([Using NDB Cluster]) AC_DEFINE([HAVE_NDBCLUSTER_DB], [1], [Using Ndb Cluster DB]) have_ndbcluster="yes" - ndbcluster_includes="-I../ndb/include -I../ndb/include/ndbapi" - ndbcluster_libs="\$(top_builddir)/ndb/src/.libs/libndbclient.a" + ndbcluster_includes="-I\$(top_builddir)/storage/ndb/include -I\$(top_builddir)/storage/ndb/include/ndbapi" + ndbcluster_libs="\$(top_builddir)/storage/ndb/src/.libs/libndbclient.a" ndbcluster_system_libs="" - ndb_mgmclient_libs="\$(top_builddir)/ndb/src/mgmclient/libndbmgmclient.la" + ndb_mgmclient_libs="\$(top_builddir)/storage/ndb/src/mgmclient/libndbmgmclient.la" MYSQL_CHECK_NDB_OPTIONS ;; * ) diff --git a/configure.in b/configure.in index 4b2c851be3c..7b2267ebdfb 100644 --- a/configure.in +++ b/configure.in @@ -2461,7 +2461,7 @@ then if test X"$have_berkeley_db" != Xyes; then # we must build berkeley db from source sql_server_dirs="$sql_server_dirs $have_berkeley_db" - AC_CONFIG_FILES(bdb/Makefile) + AC_CONFIG_FILES(storage/bdb/Makefile) echo "CONFIGURING FOR BERKELEY DB" bdb_conf_flags="--disable-shared" @@ -2487,8 +2487,10 @@ then rel_srcdir= case "$srcdir" in /* ) rel_srcdir="$srcdir" ;; - * ) rel_srcdir="../../$srcdir" ;; + * ) rel_srcdir="../../../$srcdir" ;; esac + echo $bdb/build_unix + echo $rel_srcdir/$bdb/dist/configure (cd $bdb/build_unix && \ sh $rel_srcdir/$bdb/dist/configure $bdb_conf_flags) || \ AC_MSG_ERROR([could not configure Berkeley DB]) @@ -2501,12 +2503,12 @@ dnl echo "bdb = '$bdb'; inc = '$bdb_includes', lib = '$bdb_libs'" else if test -d bdb; then : else - mkdir bdb && mkdir bdb/build_unix + mkdir storage/bdb && mkdir storage/bdb/build_unix fi - if test -r bdb/build_unix/db.h; then : + if test -r storage/bdb/build_unix/db.h; then : else - cat < bdb/build_unix/db.h + cat < storage/bdb/build_unix/db.h This file is a placeholder to fool make. The way that automake and GNU make work together causes some files to depend on this @@ -2529,8 +2531,8 @@ EOF if test X"$have_innodb" = Xyes then innodb_conf_flags="" - sql_server_dirs="$sql_server_dirs innobase" - AC_CONFIG_SUBDIRS(innobase) + sql_server_dirs="$sql_server_dirs storage/innobase" + AC_CONFIG_SUBDIRS(storage/innobase) fi case $SYSTEM_TYPE-$MACHINE_TYPE-$ac_cv_prog_gcc-$have_ndbcluster in @@ -2552,12 +2554,12 @@ esac echo exit 1 fi - sql_server_dirs="$sql_server_dirs ndb" + sql_server_dirs="$sql_server_dirs storage/ndb" fi # # END of configuration for optional table handlers # - sql_server_dirs="$sql_server_dirs myisam myisammrg heap vio sql" + sql_server_dirs="$sql_server_dirs storage/myisam storage/myisammrg storage/heap vio sql" fi @@ -2690,51 +2692,53 @@ AC_SUBST([NDB_SIZEOF_INT]) AC_SUBST([NDB_SIZEOF_LONG]) AC_SUBST([NDB_SIZEOF_LONG_LONG]) -AC_CONFIG_FILES(ndb/Makefile ndb/include/Makefile dnl - ndb/src/Makefile ndb/src/common/Makefile dnl - ndb/docs/Makefile dnl - ndb/tools/Makefile dnl - ndb/src/common/debugger/Makefile dnl - ndb/src/common/debugger/signaldata/Makefile dnl - ndb/src/common/portlib/Makefile dnl - ndb/src/common/util/Makefile dnl - ndb/src/common/logger/Makefile dnl - ndb/src/common/transporter/Makefile dnl - ndb/src/common/mgmcommon/Makefile dnl - ndb/src/kernel/Makefile dnl - ndb/src/kernel/error/Makefile dnl - ndb/src/kernel/blocks/Makefile dnl - ndb/src/kernel/blocks/cmvmi/Makefile dnl - ndb/src/kernel/blocks/dbacc/Makefile dnl - ndb/src/kernel/blocks/dbdict/Makefile dnl - ndb/src/kernel/blocks/dbdih/Makefile dnl - ndb/src/kernel/blocks/dblqh/Makefile dnl - ndb/src/kernel/blocks/dbtc/Makefile dnl - ndb/src/kernel/blocks/dbtup/Makefile dnl - ndb/src/kernel/blocks/ndbfs/Makefile dnl - ndb/src/kernel/blocks/ndbcntr/Makefile dnl - ndb/src/kernel/blocks/qmgr/Makefile dnl - ndb/src/kernel/blocks/trix/Makefile dnl - ndb/src/kernel/blocks/backup/Makefile dnl - ndb/src/kernel/blocks/dbutil/Makefile dnl - ndb/src/kernel/blocks/suma/Makefile dnl - ndb/src/kernel/blocks/grep/Makefile dnl - ndb/src/kernel/blocks/dbtux/Makefile dnl - ndb/src/kernel/vm/Makefile dnl - ndb/src/mgmapi/Makefile dnl - ndb/src/ndbapi/Makefile dnl - ndb/src/mgmsrv/Makefile dnl - ndb/src/mgmclient/Makefile dnl - ndb/src/cw/Makefile dnl - ndb/src/cw/cpcd/Makefile dnl - ndb/test/Makefile dnl - ndb/test/src/Makefile dnl - ndb/test/ndbapi/Makefile dnl - ndb/test/ndbapi/bank/Makefile dnl - ndb/test/tools/Makefile dnl - ndb/test/run-test/Makefile mysql-test/ndb/Makefile dnl - ndb/include/ndb_version.h ndb/include/ndb_global.h dnl - ndb/include/ndb_types.h dnl +AC_CONFIG_FILES(storage/ndb/Makefile storage/ndb/include/Makefile dnl + storage/ndb/src/Makefile storage/ndb/src/common/Makefile dnl + storage/ndb/docs/Makefile dnl + storage/ndb/tools/Makefile dnl + storage/ndb/src/common/debugger/Makefile dnl + storage/ndb/src/common/debugger/signaldata/Makefile dnl + storage/ndb/src/common/portlib/Makefile dnl + storage/ndb/src/common/util/Makefile dnl + storage/ndb/src/common/logger/Makefile dnl + storage/ndb/src/common/transporter/Makefile dnl + storage/ndb/src/common/mgmcommon/Makefile dnl + storage/ndb/src/kernel/Makefile dnl + storage/ndb/src/kernel/error/Makefile dnl + storage/ndb/src/kernel/blocks/Makefile dnl + storage/ndb/src/kernel/blocks/cmvmi/Makefile dnl + storage/ndb/src/kernel/blocks/dbacc/Makefile dnl + storage/ndb/src/kernel/blocks/dbdict/Makefile dnl + storage/ndb/src/kernel/blocks/dbdih/Makefile dnl + storage/ndb/src/kernel/blocks/dblqh/Makefile dnl + storage/ndb/src/kernel/blocks/dbtc/Makefile dnl + storage/ndb/src/kernel/blocks/dbtup/Makefile dnl + storage/ndb/src/kernel/blocks/ndbfs/Makefile dnl + storage/ndb/src/kernel/blocks/ndbcntr/Makefile dnl + storage/ndb/src/kernel/blocks/qmgr/Makefile dnl + storage/ndb/src/kernel/blocks/trix/Makefile dnl + storage/ndb/src/kernel/blocks/backup/Makefile dnl + storage/ndb/src/kernel/blocks/dbutil/Makefile dnl + storage/ndb/src/kernel/blocks/suma/Makefile dnl + storage/ndb/src/kernel/blocks/grep/Makefile dnl + storage/ndb/src/kernel/blocks/dbtux/Makefile dnl + storage/ndb/src/kernel/vm/Makefile dnl + storage/ndb/src/mgmapi/Makefile dnl + storage/ndb/src/ndbapi/Makefile dnl + storage/ndb/src/mgmsrv/Makefile dnl + storage/ndb/src/mgmclient/Makefile dnl + storage/ndb/src/cw/Makefile dnl + storage/ndb/src/cw/cpcd/Makefile dnl + storage/ndb/test/Makefile dnl + storage/ndb/test/src/Makefile dnl + storage/ndb/test/ndbapi/Makefile dnl + storage/ndb/test/ndbapi/bank/Makefile dnl + storage/ndb/test/tools/Makefile dnl + storage/ndb/test/run-test/Makefile dnl + storage/ndb/include/ndb_version.h dnl + storage/ndb/include/ndb_global.h dnl + storage/ndb/include/ndb_types.h dnl + mysql-test/ndb/Makefile dnl ) fi @@ -2742,8 +2746,8 @@ AC_SUBST(MAKE_BINARY_DISTRIBUTION_OPTIONS) # Output results AC_CONFIG_FILES(Makefile extra/Makefile mysys/Makefile dnl - strings/Makefile regex/Makefile heap/Makefile dnl - myisam/Makefile myisammrg/Makefile dnl + strings/Makefile regex/Makefile storage/Makefile storage/heap/Makefile dnl + storage/myisam/Makefile storage/myisammrg/Makefile dnl os2/Makefile os2/include/Makefile os2/include/sys/Makefile dnl man/Makefile BUILD/Makefile vio/Makefile dnl libmysql_r/Makefile libmysqld/Makefile libmysqld/examples/Makefile dnl diff --git a/extra/perror.c b/extra/perror.c index d68f5230e4a..283c3b0c107 100644 --- a/extra/perror.c +++ b/extra/perror.c @@ -24,7 +24,7 @@ #include #include #ifdef HAVE_NDBCLUSTER_DB -#include "../ndb/src/ndbapi/ndberror.c" +#include "../storage/ndb/src/ndbapi/ndberror.c" #endif static my_bool verbose, print_all_codes; diff --git a/libmysqld/Makefile.am b/libmysqld/Makefile.am index ab52e8245a2..9007e9af769 100644 --- a/libmysqld/Makefile.am +++ b/libmysqld/Makefile.am @@ -73,9 +73,9 @@ sql_yacc.cc sql_yacc.h: $(top_srcdir)/sql/sql_yacc.yy # The following libraries should be included in libmysqld.a INC_LIB= $(top_builddir)/regex/libregex.a \ - $(top_builddir)/myisam/libmyisam.a \ - $(top_builddir)/myisammrg/libmyisammrg.a \ - $(top_builddir)/heap/libheap.a \ + $(top_builddir)/storage/myisam/libmyisam.a \ + $(top_builddir)/storage/myisammrg/libmyisammrg.a \ + $(top_builddir)/storage/heap/libheap.a \ @innodb_libs@ @bdb_libs_with_path@ \ $(top_builddir)/mysys/libmysys.a \ $(top_builddir)/strings/libmystrings.a \ diff --git a/mysql-test/mysql-test-run.sh b/mysql-test/mysql-test-run.sh index 5fb4d99d4f4..647d077f916 100644 --- a/mysql-test/mysql-test-run.sh +++ b/mysql-test/mysql-test-run.sh @@ -582,8 +582,8 @@ if [ x$SOURCE_DIST = x1 ] ; then CHARSETSDIR="$BASEDIR/sql/share/charsets" INSTALL_DB="./install_test_db" MYSQL_FIX_SYSTEM_TABLES="$BASEDIR/scripts/mysql_fix_privilege_tables" - NDB_TOOLS_DIR="$BASEDIR/ndb/tools" - NDB_MGM="$BASEDIR/ndb/src/mgmclient/ndb_mgm" + NDB_TOOLS_DIR="$BASEDIR/storage/ndb/tools" + NDB_MGM="$BASEDIR/storage/ndb/src/mgmclient/ndb_mgm" if [ -n "$USE_PURIFY" ] ; then PSUP="$MYSQL_TEST_DIR/purify.suppress" diff --git a/ndb/config/type_kernel.mk.am b/ndb/config/type_kernel.mk.am deleted file mode 100644 index 703876ee2e9..00000000000 --- a/ndb/config/type_kernel.mk.am +++ /dev/null @@ -1,18 +0,0 @@ - -INCLUDES += \ - -I$(srcdir) -I$(top_srcdir)/include \ - -I$(top_srcdir)/ndb/include \ - -I$(top_srcdir)/ndb/src/kernel/vm \ - -I$(top_srcdir)/ndb/src/kernel/error \ - -I$(top_srcdir)/ndb/src/kernel \ - -I$(top_srcdir)/ndb/include/kernel \ - -I$(top_srcdir)/ndb/include/transporter \ - -I$(top_srcdir)/ndb/include/debugger \ - -I$(top_srcdir)/ndb/include/mgmapi \ - -I$(top_srcdir)/ndb/include/mgmcommon \ - -I$(top_srcdir)/ndb/include/ndbapi \ - -I$(top_srcdir)/ndb/include/util \ - -I$(top_srcdir)/ndb/include/portlib \ - -I$(top_srcdir)/ndb/include/logger - -#AM_LDFLAGS = @ndb_ldflags@ diff --git a/ndb/config/type_mgmapiclient.mk.am b/ndb/config/type_mgmapiclient.mk.am deleted file mode 100644 index 1ef4a81d67e..00000000000 --- a/ndb/config/type_mgmapiclient.mk.am +++ /dev/null @@ -1,2 +0,0 @@ - -INCLUDES += -I$(top_srcdir)/ndb/include/mgmapi diff --git a/ndb/config/type_ndbapi.mk.am b/ndb/config/type_ndbapi.mk.am deleted file mode 100644 index ed648273aea..00000000000 --- a/ndb/config/type_ndbapi.mk.am +++ /dev/null @@ -1,12 +0,0 @@ - -INCLUDES += \ - -I$(srcdir) -I$(top_srcdir)/include -I$(top_srcdir)/ndb/include \ - -I$(top_srcdir)/ndb/include/kernel \ - -I$(top_srcdir)/ndb/include/transporter \ - -I$(top_srcdir)/ndb/include/debugger \ - -I$(top_srcdir)/ndb/include/mgmapi \ - -I$(top_srcdir)/ndb/include/mgmcommon \ - -I$(top_srcdir)/ndb/include/ndbapi \ - -I$(top_srcdir)/ndb/include/util \ - -I$(top_srcdir)/ndb/include/portlib \ - -I$(top_srcdir)/ndb/include/logger diff --git a/ndb/config/type_ndbapiclient.mk.am b/ndb/config/type_ndbapiclient.mk.am deleted file mode 100644 index 88b57e49e19..00000000000 --- a/ndb/config/type_ndbapiclient.mk.am +++ /dev/null @@ -1,2 +0,0 @@ - -INCLUDES += -I$(top_srcdir)/ndb/include/ndbapi diff --git a/ndb/config/type_ndbapitest.mk.am b/ndb/config/type_ndbapitest.mk.am deleted file mode 100644 index 392c4e9fc70..00000000000 --- a/ndb/config/type_ndbapitest.mk.am +++ /dev/null @@ -1,14 +0,0 @@ - -LDADD += $(top_builddir)/ndb/test/src/libNDBT.a \ - $(top_builddir)/ndb/src/libndbclient.la \ - $(top_builddir)/dbug/libdbug.a \ - $(top_builddir)/mysys/libmysys.a \ - $(top_builddir)/strings/libmystrings.a @NDB_SCI_LIBS@ - -INCLUDES += -I$(top_srcdir) -I$(top_srcdir)/include \ - -I$(top_srcdir)/ndb/include \ - -I$(top_srcdir)/ndb/include/ndbapi \ - -I$(top_srcdir)/ndb/include/util \ - -I$(top_srcdir)/ndb/include/portlib \ - -I$(top_srcdir)/ndb/test/include \ - -I$(top_srcdir)/ndb/include/mgmapi diff --git a/ndb/config/type_ndbapitools.mk.am b/ndb/config/type_ndbapitools.mk.am deleted file mode 100644 index d4eb090112d..00000000000 --- a/ndb/config/type_ndbapitools.mk.am +++ /dev/null @@ -1,15 +0,0 @@ - -LDADD += \ - $(top_builddir)/ndb/src/libndbclient.la \ - $(top_builddir)/dbug/libdbug.a \ - $(top_builddir)/mysys/libmysys.a \ - $(top_builddir)/strings/libmystrings.a @NDB_SCI_LIBS@ - -INCLUDES += -I$(srcdir) -I$(top_srcdir)/include \ - -I$(top_srcdir)/ndb/include \ - -I$(top_srcdir)/ndb/include/ndbapi \ - -I$(top_srcdir)/ndb/include/util \ - -I$(top_srcdir)/ndb/include/portlib \ - -I$(top_srcdir)/ndb/test/include \ - -I$(top_srcdir)/ndb/include/mgmapi \ - -I$(top_srcdir)/ndb/include/kernel diff --git a/ndb/config/type_util.mk.am b/ndb/config/type_util.mk.am deleted file mode 100644 index 0dfa77b7a7c..00000000000 --- a/ndb/config/type_util.mk.am +++ /dev/null @@ -1,6 +0,0 @@ - -INCLUDES += -I$(srcdir) -I$(top_srcdir)/include \ - -I$(top_srcdir)/ndb/include \ - -I$(top_srcdir)/ndb/include/util \ - -I$(top_srcdir)/ndb/include/portlib \ - -I$(top_srcdir)/ndb/include/logger diff --git a/ndb/src/Makefile.am b/ndb/src/Makefile.am deleted file mode 100644 index d35790a2e43..00000000000 --- a/ndb/src/Makefile.am +++ /dev/null @@ -1,33 +0,0 @@ -SUBDIRS = common mgmapi ndbapi . kernel mgmclient mgmsrv cw - -include $(top_srcdir)/ndb/config/common.mk.am - -ndblib_LTLIBRARIES = libndbclient.la - -libndbclient_la_SOURCES = - -libndbclient_la_LIBADD = \ - ndbapi/libndbapi.la \ - common/transporter/libtransporter.la \ - common/debugger/libtrace.la \ - common/debugger/signaldata/libsignaldataprint.la \ - mgmapi/libmgmapi.la \ - common/mgmcommon/libmgmsrvcommon.la \ - common/logger/liblogger.la \ - common/portlib/libportlib.la \ - common/util/libgeneral.la - -windoze-dsp: libndbclient.dsp - -libndbclient.dsp: Makefile \ - $(top_srcdir)/ndb/config/win-lib.am \ - $(top_srcdir)/ndb/config/win-name \ - $(top_srcdir)/ndb/config/win-includes \ - $(top_srcdir)/ndb/config/win-sources \ - $(top_srcdir)/ndb/config/win-libraries - cat $(top_srcdir)/ndb/config/win-lib.am > $@ - @$(top_srcdir)/ndb/config/win-name $@ $(ndblib_LTLIBRARIES) - @$(top_srcdir)/ndb/config/win-includes $@ $(INCLUDES) - @$(top_srcdir)/ndb/config/win-sources $@ dummy.cpp - @$(top_srcdir)/ndb/config/win-libraries $@ LIB $(libndbclient_la_LIBADD) - @touch dummy.cpp diff --git a/ndb/src/common/debugger/Makefile.am b/ndb/src/common/debugger/Makefile.am deleted file mode 100644 index e25a11c9bee..00000000000 --- a/ndb/src/common/debugger/Makefile.am +++ /dev/null @@ -1,25 +0,0 @@ -SUBDIRS = signaldata - -noinst_LTLIBRARIES = libtrace.la - -libtrace_la_SOURCES = SignalLoggerManager.cpp DebuggerNames.cpp BlockNames.cpp EventLogger.cpp GrepError.cpp - -include $(top_srcdir)/ndb/config/common.mk.am -include $(top_srcdir)/ndb/config/type_kernel.mk.am - -# Don't update the files from bitkeeper -%::SCCS/s.% - -windoze-dsp: libtrace.dsp - -libtrace.dsp: Makefile \ - $(top_srcdir)/ndb/config/win-lib.am \ - $(top_srcdir)/ndb/config/win-name \ - $(top_srcdir)/ndb/config/win-includes \ - $(top_srcdir)/ndb/config/win-sources \ - $(top_srcdir)/ndb/config/win-libraries - cat $(top_srcdir)/ndb/config/win-lib.am > $@ - @$(top_srcdir)/ndb/config/win-name $@ $(noinst_LTLIBRARIES) - @$(top_srcdir)/ndb/config/win-includes $@ $(INCLUDES) - @$(top_srcdir)/ndb/config/win-sources $@ $(libtrace_la_SOURCES) - @$(top_srcdir)/ndb/config/win-libraries $@ LIB $(LDADD) diff --git a/ndb/src/common/logger/Makefile.am b/ndb/src/common/logger/Makefile.am deleted file mode 100644 index 0af21f9fbde..00000000000 --- a/ndb/src/common/logger/Makefile.am +++ /dev/null @@ -1,25 +0,0 @@ - -noinst_LTLIBRARIES = liblogger.la - -SOURCE_WIN = Logger.cpp LogHandlerList.cpp LogHandler.cpp \ - ConsoleLogHandler.cpp FileLogHandler.cpp -liblogger_la_SOURCES = $(SOURCE_WIN) SysLogHandler.cpp - -include $(top_srcdir)/ndb/config/common.mk.am -include $(top_srcdir)/ndb/config/type_ndbapi.mk.am - -# Don't update the files from bitkeeper -%::SCCS/s.% -windoze-dsp: liblogger.dsp - -liblogger.dsp: Makefile \ - $(top_srcdir)/ndb/config/win-lib.am \ - $(top_srcdir)/ndb/config/win-name \ - $(top_srcdir)/ndb/config/win-includes \ - $(top_srcdir)/ndb/config/win-sources \ - $(top_srcdir)/ndb/config/win-libraries - cat $(top_srcdir)/ndb/config/win-lib.am > $@ - @$(top_srcdir)/ndb/config/win-name $@ $(noinst_LTLIBRARIES) - @$(top_srcdir)/ndb/config/win-includes $@ $(INCLUDES) - @$(top_srcdir)/ndb/config/win-sources $@ $(SOURCE_WIN) - @$(top_srcdir)/ndb/config/win-libraries $@ LIB $(LDADD) diff --git a/ndb/src/common/mgmcommon/Makefile.am b/ndb/src/common/mgmcommon/Makefile.am deleted file mode 100644 index 104bf0b29f2..00000000000 --- a/ndb/src/common/mgmcommon/Makefile.am +++ /dev/null @@ -1,28 +0,0 @@ -noinst_LTLIBRARIES = libmgmsrvcommon.la - -libmgmsrvcommon_la_SOURCES = \ - ConfigRetriever.cpp \ - IPCConfig.cpp - -INCLUDES_LOC = -I$(top_srcdir)/ndb/src/mgmapi -I$(top_srcdir)/ndb/src/mgmsrv - -include $(top_srcdir)/ndb/config/common.mk.am -include $(top_srcdir)/ndb/config/type_ndbapi.mk.am -include $(top_srcdir)/ndb/config/type_mgmapiclient.mk.am - -# Don't update the files from bitkeeper -%::SCCS/s.% - -windoze-dsp: libmgmsrvcommon.dsp - -libmgmsrvcommon.dsp: Makefile \ - $(top_srcdir)/ndb/config/win-lib.am \ - $(top_srcdir)/ndb/config/win-name \ - $(top_srcdir)/ndb/config/win-includes \ - $(top_srcdir)/ndb/config/win-sources \ - $(top_srcdir)/ndb/config/win-libraries - cat $(top_srcdir)/ndb/config/win-lib.am > $@ - @$(top_srcdir)/ndb/config/win-name $@ $(noinst_LTLIBRARIES) - @$(top_srcdir)/ndb/config/win-includes $@ $(INCLUDES) - @$(top_srcdir)/ndb/config/win-sources $@ $(libmgmsrvcommon_la_SOURCES) - @$(top_srcdir)/ndb/config/win-libraries $@ LIB $(LDADD) diff --git a/ndb/src/common/transporter/Makefile.am b/ndb/src/common/transporter/Makefile.am deleted file mode 100644 index 4c277097a91..00000000000 --- a/ndb/src/common/transporter/Makefile.am +++ /dev/null @@ -1,36 +0,0 @@ - -noinst_LTLIBRARIES = libtransporter.la - -libtransporter_la_SOURCES = \ - Transporter.cpp \ - SendBuffer.cpp \ - TCP_Transporter.cpp \ - TransporterRegistry.cpp \ - Packer.cpp - -EXTRA_libtransporter_la_SOURCES = SHM_Transporter.cpp SHM_Transporter.unix.cpp SCI_Transporter.cpp - -libtransporter_la_LIBADD = @ndb_transporter_opt_objs@ -libtransporter_la_DEPENDENCIES = @ndb_transporter_opt_objs@ - -INCLUDES_LOC = -I$(top_srcdir)/ndb/include/mgmapi -I$(top_srcdir)/ndb/src/mgmapi -I$(top_srcdir)/ndb/include/debugger -I$(top_srcdir)/ndb/include/kernel -I$(top_srcdir)/ndb/include/transporter @NDB_SCI_INCLUDES@ - -include $(top_srcdir)/ndb/config/common.mk.am -include $(top_srcdir)/ndb/config/type_util.mk.am - -# Don't update the files from bitkeeper -%::SCCS/s.% - -windoze-dsp: libtransporter.dsp - -libtransporter.dsp: Makefile \ - $(top_srcdir)/ndb/config/win-lib.am \ - $(top_srcdir)/ndb/config/win-name \ - $(top_srcdir)/ndb/config/win-includes \ - $(top_srcdir)/ndb/config/win-sources \ - $(top_srcdir)/ndb/config/win-libraries - cat $(top_srcdir)/ndb/config/win-lib.am > $@ - @$(top_srcdir)/ndb/config/win-name $@ $(noinst_LTLIBRARIES) - @$(top_srcdir)/ndb/config/win-includes $@ $(INCLUDES) - @$(top_srcdir)/ndb/config/win-sources $@ $(libtransporter_la_SOURCES) - @$(top_srcdir)/ndb/config/win-libraries $@ LIB $(LDADD) diff --git a/ndb/src/kernel/blocks/backup/Makefile.am b/ndb/src/kernel/blocks/backup/Makefile.am deleted file mode 100644 index c8f44f31292..00000000000 --- a/ndb/src/kernel/blocks/backup/Makefile.am +++ /dev/null @@ -1,24 +0,0 @@ - -noinst_LIBRARIES = libbackup.a - -libbackup_a_SOURCES = Backup.cpp BackupInit.cpp - -include $(top_srcdir)/ndb/config/common.mk.am -include $(top_srcdir)/ndb/config/type_kernel.mk.am - -# Don't update the files from bitkeeper -%::SCCS/s.% - -windoze-dsp: libbackup.dsp - -libbackup.dsp: Makefile \ - $(top_srcdir)/ndb/config/win-lib.am \ - $(top_srcdir)/ndb/config/win-name \ - $(top_srcdir)/ndb/config/win-includes \ - $(top_srcdir)/ndb/config/win-sources \ - $(top_srcdir)/ndb/config/win-libraries - cat $(top_srcdir)/ndb/config/win-lib.am > $@ - @$(top_srcdir)/ndb/config/win-name $@ $(noinst_LIBRARIES) - @$(top_srcdir)/ndb/config/win-includes $@ $(INCLUDES) - @$(top_srcdir)/ndb/config/win-sources $@ $(libbackup_a_SOURCES) - @$(top_srcdir)/ndb/config/win-libraries $@ LIB $(LDADD) diff --git a/ndb/src/kernel/blocks/cmvmi/Makefile.am b/ndb/src/kernel/blocks/cmvmi/Makefile.am deleted file mode 100644 index dc2e12746fd..00000000000 --- a/ndb/src/kernel/blocks/cmvmi/Makefile.am +++ /dev/null @@ -1,24 +0,0 @@ - -noinst_LIBRARIES = libcmvmi.a - -libcmvmi_a_SOURCES = Cmvmi.cpp - -include $(top_srcdir)/ndb/config/common.mk.am -include $(top_srcdir)/ndb/config/type_kernel.mk.am - -# Don't update the files from bitkeeper -%::SCCS/s.% - -windoze-dsp: libcmvmi.dsp - -libcmvmi.dsp: Makefile \ - $(top_srcdir)/ndb/config/win-lib.am \ - $(top_srcdir)/ndb/config/win-name \ - $(top_srcdir)/ndb/config/win-includes \ - $(top_srcdir)/ndb/config/win-sources \ - $(top_srcdir)/ndb/config/win-libraries - cat $(top_srcdir)/ndb/config/win-lib.am > $@ - @$(top_srcdir)/ndb/config/win-name $@ $(noinst_LIBRARIES) - @$(top_srcdir)/ndb/config/win-includes $@ $(INCLUDES) - @$(top_srcdir)/ndb/config/win-sources $@ $(libcmvmi_a_SOURCES) - @$(top_srcdir)/ndb/config/win-libraries $@ LIB $(LDADD) diff --git a/ndb/src/kernel/blocks/dbacc/Makefile.am b/ndb/src/kernel/blocks/dbacc/Makefile.am deleted file mode 100644 index ca1b1efac37..00000000000 --- a/ndb/src/kernel/blocks/dbacc/Makefile.am +++ /dev/null @@ -1,26 +0,0 @@ - -noinst_LIBRARIES = libdbacc.a - -libdbacc_a_SOURCES = DbaccInit.cpp DbaccMain.cpp - -INCLUDES_LOC = -I$(top_srcdir)/ndb/src/kernel/blocks/dbtup - -include $(top_srcdir)/ndb/config/common.mk.am -include $(top_srcdir)/ndb/config/type_kernel.mk.am - -# Don't update the files from bitkeeper -%::SCCS/s.% - -windoze-dsp: libdbacc.dsp - -libdbacc.dsp: Makefile \ - $(top_srcdir)/ndb/config/win-lib.am \ - $(top_srcdir)/ndb/config/win-name \ - $(top_srcdir)/ndb/config/win-includes \ - $(top_srcdir)/ndb/config/win-sources \ - $(top_srcdir)/ndb/config/win-libraries - cat $(top_srcdir)/ndb/config/win-lib.am > $@ - @$(top_srcdir)/ndb/config/win-name $@ $(noinst_LIBRARIES) - @$(top_srcdir)/ndb/config/win-includes $@ $(INCLUDES) - @$(top_srcdir)/ndb/config/win-sources $@ $(libdbacc_a_SOURCES) - @$(top_srcdir)/ndb/config/win-libraries $@ LIB $(LDADD) diff --git a/ndb/src/kernel/blocks/dbdict/Makefile.am b/ndb/src/kernel/blocks/dbdict/Makefile.am deleted file mode 100644 index 9a0d68f8148..00000000000 --- a/ndb/src/kernel/blocks/dbdict/Makefile.am +++ /dev/null @@ -1,25 +0,0 @@ -#SUBDIRS = printSchemafile - -noinst_LIBRARIES = libdbdict.a - -libdbdict_a_SOURCES = Dbdict.cpp - -include $(top_srcdir)/ndb/config/common.mk.am -include $(top_srcdir)/ndb/config/type_kernel.mk.am - -# Don't update the files from bitkeeper -%::SCCS/s.% - -windoze-dsp: libdbdict.dsp - -libdbdict.dsp: Makefile \ - $(top_srcdir)/ndb/config/win-lib.am \ - $(top_srcdir)/ndb/config/win-name \ - $(top_srcdir)/ndb/config/win-includes \ - $(top_srcdir)/ndb/config/win-sources \ - $(top_srcdir)/ndb/config/win-libraries - cat $(top_srcdir)/ndb/config/win-lib.am > $@ - @$(top_srcdir)/ndb/config/win-name $@ $(noinst_LIBRARIES) - @$(top_srcdir)/ndb/config/win-includes $@ $(INCLUDES) - @$(top_srcdir)/ndb/config/win-sources $@ $(libdbdict_a_SOURCES) - @$(top_srcdir)/ndb/config/win-libraries $@ LIB $(LDADD) diff --git a/ndb/src/kernel/blocks/dbdih/Makefile.am b/ndb/src/kernel/blocks/dbdih/Makefile.am deleted file mode 100644 index d6ad380b806..00000000000 --- a/ndb/src/kernel/blocks/dbdih/Makefile.am +++ /dev/null @@ -1,23 +0,0 @@ -noinst_LIBRARIES = libdbdih.a - -libdbdih_a_SOURCES = DbdihInit.cpp DbdihMain.cpp - -include $(top_srcdir)/ndb/config/common.mk.am -include $(top_srcdir)/ndb/config/type_kernel.mk.am - -# Don't update the files from bitkeeper -%::SCCS/s.% - -windoze-dsp: libdbdih.dsp - -libdbdih.dsp: Makefile \ - $(top_srcdir)/ndb/config/win-lib.am \ - $(top_srcdir)/ndb/config/win-name \ - $(top_srcdir)/ndb/config/win-includes \ - $(top_srcdir)/ndb/config/win-sources \ - $(top_srcdir)/ndb/config/win-libraries - cat $(top_srcdir)/ndb/config/win-lib.am > $@ - @$(top_srcdir)/ndb/config/win-name $@ $(noinst_LIBRARIES) - @$(top_srcdir)/ndb/config/win-includes $@ $(INCLUDES) - @$(top_srcdir)/ndb/config/win-sources $@ $(libdbdih_a_SOURCES) - @$(top_srcdir)/ndb/config/win-libraries $@ LIB $(LDADD) diff --git a/ndb/src/kernel/blocks/dblqh/Makefile.am b/ndb/src/kernel/blocks/dblqh/Makefile.am deleted file mode 100644 index 854860b269c..00000000000 --- a/ndb/src/kernel/blocks/dblqh/Makefile.am +++ /dev/null @@ -1,25 +0,0 @@ -#SUBDIRS = redoLogReader - -noinst_LIBRARIES = libdblqh.a - -libdblqh_a_SOURCES = DblqhInit.cpp DblqhMain.cpp - -include $(top_srcdir)/ndb/config/common.mk.am -include $(top_srcdir)/ndb/config/type_kernel.mk.am - -# Don't update the files from bitkeeper -%::SCCS/s.% - -windoze-dsp: libdblqh.dsp - -libdblqh.dsp: Makefile \ - $(top_srcdir)/ndb/config/win-lib.am \ - $(top_srcdir)/ndb/config/win-name \ - $(top_srcdir)/ndb/config/win-includes \ - $(top_srcdir)/ndb/config/win-sources \ - $(top_srcdir)/ndb/config/win-libraries - cat $(top_srcdir)/ndb/config/win-lib.am > $@ - @$(top_srcdir)/ndb/config/win-name $@ $(noinst_LIBRARIES) - @$(top_srcdir)/ndb/config/win-includes $@ $(INCLUDES) - @$(top_srcdir)/ndb/config/win-sources $@ $(libdblqh_a_SOURCES) - @$(top_srcdir)/ndb/config/win-libraries $@ LIB $(LDADD) diff --git a/ndb/src/kernel/blocks/dbtc/Makefile.am b/ndb/src/kernel/blocks/dbtc/Makefile.am deleted file mode 100644 index 98ee2639bac..00000000000 --- a/ndb/src/kernel/blocks/dbtc/Makefile.am +++ /dev/null @@ -1,23 +0,0 @@ -noinst_LIBRARIES = libdbtc.a - -libdbtc_a_SOURCES = DbtcInit.cpp DbtcMain.cpp - -include $(top_srcdir)/ndb/config/common.mk.am -include $(top_srcdir)/ndb/config/type_kernel.mk.am - -# Don't update the files from bitkeeper -%::SCCS/s.% - -windoze-dsp: libdbtc.dsp - -libdbtc.dsp: Makefile \ - $(top_srcdir)/ndb/config/win-lib.am \ - $(top_srcdir)/ndb/config/win-name \ - $(top_srcdir)/ndb/config/win-includes \ - $(top_srcdir)/ndb/config/win-sources \ - $(top_srcdir)/ndb/config/win-libraries - cat $(top_srcdir)/ndb/config/win-lib.am > $@ - @$(top_srcdir)/ndb/config/win-name $@ $(noinst_LIBRARIES) - @$(top_srcdir)/ndb/config/win-includes $@ $(INCLUDES) - @$(top_srcdir)/ndb/config/win-sources $@ $(libdbtc_a_SOURCES) - @$(top_srcdir)/ndb/config/win-libraries $@ LIB $(LDADD) diff --git a/ndb/src/kernel/blocks/dbtup/Makefile.am b/ndb/src/kernel/blocks/dbtup/Makefile.am deleted file mode 100644 index e51410e6be3..00000000000 --- a/ndb/src/kernel/blocks/dbtup/Makefile.am +++ /dev/null @@ -1,41 +0,0 @@ -noinst_LIBRARIES = libdbtup.a - -libdbtup_a_SOURCES = \ - DbtupExecQuery.cpp \ - DbtupBuffer.cpp \ - DbtupRoutines.cpp \ - DbtupCommit.cpp \ - DbtupFixAlloc.cpp \ - DbtupTrigger.cpp \ - DbtupAbort.cpp \ - DbtupLCP.cpp \ - DbtupUndoLog.cpp \ - DbtupPageMap.cpp \ - DbtupPagMan.cpp \ - DbtupStoredProcDef.cpp \ - DbtupMeta.cpp \ - DbtupTabDesMan.cpp \ - DbtupGen.cpp \ - DbtupSystemRestart.cpp \ - DbtupIndex.cpp \ - DbtupDebug.cpp - -include $(top_srcdir)/ndb/config/common.mk.am -include $(top_srcdir)/ndb/config/type_kernel.mk.am - -# Don't update the files from bitkeeper -%::SCCS/s.% - -windoze-dsp: libdbtup.dsp - -libdbtup.dsp: Makefile \ - $(top_srcdir)/ndb/config/win-lib.am \ - $(top_srcdir)/ndb/config/win-name \ - $(top_srcdir)/ndb/config/win-includes \ - $(top_srcdir)/ndb/config/win-sources \ - $(top_srcdir)/ndb/config/win-libraries - cat $(top_srcdir)/ndb/config/win-lib.am > $@ - @$(top_srcdir)/ndb/config/win-name $@ $(noinst_LIBRARIES) - @$(top_srcdir)/ndb/config/win-includes $@ $(INCLUDES) - @$(top_srcdir)/ndb/config/win-sources $@ $(libdbtup_a_SOURCES) - @$(top_srcdir)/ndb/config/win-libraries $@ LIB $(LDADD) diff --git a/ndb/src/kernel/blocks/dbtux/Makefile.am b/ndb/src/kernel/blocks/dbtux/Makefile.am deleted file mode 100644 index b5951e8ed37..00000000000 --- a/ndb/src/kernel/blocks/dbtux/Makefile.am +++ /dev/null @@ -1,34 +0,0 @@ -noinst_LIBRARIES = libdbtux.a - -libdbtux_a_SOURCES = \ - DbtuxGen.cpp \ - DbtuxMeta.cpp \ - DbtuxMaint.cpp \ - DbtuxNode.cpp \ - DbtuxTree.cpp \ - DbtuxScan.cpp \ - DbtuxSearch.cpp \ - DbtuxCmp.cpp \ - DbtuxDebug.cpp - -INCLUDES_LOC = -I$(top_srcdir)/ndb/src/kernel/blocks/dbtup - -include $(top_srcdir)/ndb/config/common.mk.am -include $(top_srcdir)/ndb/config/type_kernel.mk.am - -# Don't update the files from bitkeeper -%::SCCS/s.% - -windoze-dsp: libdbtux.dsp - -libdbtux.dsp: Makefile \ - $(top_srcdir)/ndb/config/win-lib.am \ - $(top_srcdir)/ndb/config/win-name \ - $(top_srcdir)/ndb/config/win-includes \ - $(top_srcdir)/ndb/config/win-sources \ - $(top_srcdir)/ndb/config/win-libraries - cat $(top_srcdir)/ndb/config/win-lib.am > $@ - @$(top_srcdir)/ndb/config/win-name $@ $(noinst_LIBRARIES) - @$(top_srcdir)/ndb/config/win-includes $@ $(INCLUDES) - @$(top_srcdir)/ndb/config/win-sources $@ $(libdbtux_a_SOURCES) - @$(top_srcdir)/ndb/config/win-libraries $@ LIB $(LDADD) diff --git a/ndb/src/kernel/blocks/dbutil/Makefile.am b/ndb/src/kernel/blocks/dbutil/Makefile.am deleted file mode 100644 index 925356c2f76..00000000000 --- a/ndb/src/kernel/blocks/dbutil/Makefile.am +++ /dev/null @@ -1,23 +0,0 @@ -noinst_LIBRARIES = libdbutil.a - -libdbutil_a_SOURCES = DbUtil.cpp - -include $(top_srcdir)/ndb/config/common.mk.am -include $(top_srcdir)/ndb/config/type_kernel.mk.am - -# Don't update the files from bitkeeper -%::SCCS/s.% - -windoze-dsp: libdbutil.dsp - -libdbutil.dsp: Makefile \ - $(top_srcdir)/ndb/config/win-lib.am \ - $(top_srcdir)/ndb/config/win-name \ - $(top_srcdir)/ndb/config/win-includes \ - $(top_srcdir)/ndb/config/win-sources \ - $(top_srcdir)/ndb/config/win-libraries - cat $(top_srcdir)/ndb/config/win-lib.am > $@ - @$(top_srcdir)/ndb/config/win-name $@ $(noinst_LIBRARIES) - @$(top_srcdir)/ndb/config/win-includes $@ $(INCLUDES) - @$(top_srcdir)/ndb/config/win-sources $@ $(libdbutil_a_SOURCES) - @$(top_srcdir)/ndb/config/win-libraries $@ LIB $(LDADD) diff --git a/ndb/src/kernel/blocks/grep/Makefile.am b/ndb/src/kernel/blocks/grep/Makefile.am deleted file mode 100644 index 6d2b422784b..00000000000 --- a/ndb/src/kernel/blocks/grep/Makefile.am +++ /dev/null @@ -1,23 +0,0 @@ -noinst_LIBRARIES = libgrep.a - -libgrep_a_SOURCES = Grep.cpp GrepInit.cpp - -include $(top_srcdir)/ndb/config/common.mk.am -include $(top_srcdir)/ndb/config/type_kernel.mk.am - -# Don't update the files from bitkeeper -%::SCCS/s.% - -windoze-dsp: libgrep.dsp - -libgrep.dsp: Makefile \ - $(top_srcdir)/ndb/config/win-lib.am \ - $(top_srcdir)/ndb/config/win-name \ - $(top_srcdir)/ndb/config/win-includes \ - $(top_srcdir)/ndb/config/win-sources \ - $(top_srcdir)/ndb/config/win-libraries - cat $(top_srcdir)/ndb/config/win-lib.am > $@ - @$(top_srcdir)/ndb/config/win-name $@ $(noinst_LIBRARIES) - @$(top_srcdir)/ndb/config/win-includes $@ $(INCLUDES) - @$(top_srcdir)/ndb/config/win-sources $@ $(libgrep_a_SOURCES) - @$(top_srcdir)/ndb/config/win-libraries $@ LIB $(LDADD) diff --git a/ndb/src/kernel/blocks/ndbcntr/Makefile.am b/ndb/src/kernel/blocks/ndbcntr/Makefile.am deleted file mode 100644 index 3f24675b2b3..00000000000 --- a/ndb/src/kernel/blocks/ndbcntr/Makefile.am +++ /dev/null @@ -1,26 +0,0 @@ -noinst_LIBRARIES = libndbcntr.a - -libndbcntr_a_SOURCES = \ - NdbcntrInit.cpp \ - NdbcntrSysTable.cpp \ - NdbcntrMain.cpp - -include $(top_srcdir)/ndb/config/common.mk.am -include $(top_srcdir)/ndb/config/type_kernel.mk.am - -# Don't update the files from bitkeeper -%::SCCS/s.% - -windoze-dsp: libndbcntr.dsp - -libndbcntr.dsp: Makefile \ - $(top_srcdir)/ndb/config/win-lib.am \ - $(top_srcdir)/ndb/config/win-name \ - $(top_srcdir)/ndb/config/win-includes \ - $(top_srcdir)/ndb/config/win-sources \ - $(top_srcdir)/ndb/config/win-libraries - cat $(top_srcdir)/ndb/config/win-lib.am > $@ - @$(top_srcdir)/ndb/config/win-name $@ $(noinst_LIBRARIES) - @$(top_srcdir)/ndb/config/win-includes $@ $(INCLUDES) - @$(top_srcdir)/ndb/config/win-sources $@ $(libndbcntr_a_SOURCES) - @$(top_srcdir)/ndb/config/win-libraries $@ LIB $(LDADD) diff --git a/ndb/src/kernel/blocks/ndbfs/Makefile.am b/ndb/src/kernel/blocks/ndbfs/Makefile.am deleted file mode 100644 index a22386f8612..00000000000 --- a/ndb/src/kernel/blocks/ndbfs/Makefile.am +++ /dev/null @@ -1,27 +0,0 @@ -noinst_LIBRARIES = libndbfs.a - -libndbfs_a_SOURCES = \ - AsyncFile.cpp \ - Ndbfs.cpp VoidFs.cpp \ - Filename.cpp \ - CircularIndex.cpp - -include $(top_srcdir)/ndb/config/common.mk.am -include $(top_srcdir)/ndb/config/type_kernel.mk.am - -# Don't update the files from bitkeeper -%::SCCS/s.% - -windoze-dsp: libndbfs.dsp - -libndbfs.dsp: Makefile \ - $(top_srcdir)/ndb/config/win-lib.am \ - $(top_srcdir)/ndb/config/win-name \ - $(top_srcdir)/ndb/config/win-includes \ - $(top_srcdir)/ndb/config/win-sources \ - $(top_srcdir)/ndb/config/win-libraries - cat $(top_srcdir)/ndb/config/win-lib.am > $@ - @$(top_srcdir)/ndb/config/win-name $@ $(noinst_LIBRARIES) - @$(top_srcdir)/ndb/config/win-includes $@ $(INCLUDES) - @$(top_srcdir)/ndb/config/win-sources $@ $(libndbfs_a_SOURCES) - @$(top_srcdir)/ndb/config/win-libraries $@ LIB $(LDADD) diff --git a/ndb/src/kernel/blocks/qmgr/Makefile.am b/ndb/src/kernel/blocks/qmgr/Makefile.am deleted file mode 100644 index 278af2a7865..00000000000 --- a/ndb/src/kernel/blocks/qmgr/Makefile.am +++ /dev/null @@ -1,25 +0,0 @@ -noinst_LIBRARIES = libqmgr.a - -libqmgr_a_SOURCES = \ - QmgrInit.cpp \ - QmgrMain.cpp - -include $(top_srcdir)/ndb/config/common.mk.am -include $(top_srcdir)/ndb/config/type_kernel.mk.am - -# Don't update the files from bitkeeper -%::SCCS/s.% - -windoze-dsp: libqmgr.dsp - -libqmgr.dsp: Makefile \ - $(top_srcdir)/ndb/config/win-lib.am \ - $(top_srcdir)/ndb/config/win-name \ - $(top_srcdir)/ndb/config/win-includes \ - $(top_srcdir)/ndb/config/win-sources \ - $(top_srcdir)/ndb/config/win-libraries - cat $(top_srcdir)/ndb/config/win-lib.am > $@ - @$(top_srcdir)/ndb/config/win-name $@ $(noinst_LIBRARIES) - @$(top_srcdir)/ndb/config/win-includes $@ $(INCLUDES) - @$(top_srcdir)/ndb/config/win-sources $@ $(libqmgr_a_SOURCES) - @$(top_srcdir)/ndb/config/win-libraries $@ LIB $(LDADD) diff --git a/ndb/src/kernel/blocks/suma/Makefile.am b/ndb/src/kernel/blocks/suma/Makefile.am deleted file mode 100644 index 5a74dbb74eb..00000000000 --- a/ndb/src/kernel/blocks/suma/Makefile.am +++ /dev/null @@ -1,23 +0,0 @@ -noinst_LIBRARIES = libsuma.a - -libsuma_a_SOURCES = Suma.cpp SumaInit.cpp - -include $(top_srcdir)/ndb/config/common.mk.am -include $(top_srcdir)/ndb/config/type_kernel.mk.am - -# Don't update the files from bitkeeper -%::SCCS/s.% - -windoze-dsp: libsuma.dsp - -libsuma.dsp: Makefile \ - $(top_srcdir)/ndb/config/win-lib.am \ - $(top_srcdir)/ndb/config/win-name \ - $(top_srcdir)/ndb/config/win-includes \ - $(top_srcdir)/ndb/config/win-sources \ - $(top_srcdir)/ndb/config/win-libraries - cat $(top_srcdir)/ndb/config/win-lib.am > $@ - @$(top_srcdir)/ndb/config/win-name $@ $(noinst_LIBRARIES) - @$(top_srcdir)/ndb/config/win-includes $@ $(INCLUDES) - @$(top_srcdir)/ndb/config/win-sources $@ $(libsuma_a_SOURCES) - @$(top_srcdir)/ndb/config/win-libraries $@ LIB $(LDADD) diff --git a/ndb/src/kernel/blocks/trix/Makefile.am b/ndb/src/kernel/blocks/trix/Makefile.am deleted file mode 100644 index 343063a6283..00000000000 --- a/ndb/src/kernel/blocks/trix/Makefile.am +++ /dev/null @@ -1,23 +0,0 @@ -noinst_LIBRARIES = libtrix.a - -libtrix_a_SOURCES = Trix.cpp - -include $(top_srcdir)/ndb/config/common.mk.am -include $(top_srcdir)/ndb/config/type_kernel.mk.am - -# Don't update the files from bitkeeper -%::SCCS/s.% - -windoze-dsp: libtrix.dsp - -libtrix.dsp: Makefile \ - $(top_srcdir)/ndb/config/win-lib.am \ - $(top_srcdir)/ndb/config/win-name \ - $(top_srcdir)/ndb/config/win-includes \ - $(top_srcdir)/ndb/config/win-sources \ - $(top_srcdir)/ndb/config/win-libraries - cat $(top_srcdir)/ndb/config/win-lib.am > $@ - @$(top_srcdir)/ndb/config/win-name $@ $(noinst_LIBRARIES) - @$(top_srcdir)/ndb/config/win-includes $@ $(INCLUDES) - @$(top_srcdir)/ndb/config/win-sources $@ $(libtrix_a_SOURCES) - @$(top_srcdir)/ndb/config/win-libraries $@ LIB $(LDADD) diff --git a/ndb/src/kernel/error/Makefile.am b/ndb/src/kernel/error/Makefile.am deleted file mode 100644 index 54f3de2d76d..00000000000 --- a/ndb/src/kernel/error/Makefile.am +++ /dev/null @@ -1,25 +0,0 @@ -noinst_LIBRARIES = liberror.a - -liberror_a_SOURCES = TimeModule.cpp \ - ErrorReporter.cpp \ - ErrorMessages.cpp - -include $(top_srcdir)/ndb/config/common.mk.am -include $(top_srcdir)/ndb/config/type_kernel.mk.am - -# Don't update the files from bitkeeper -%::SCCS/s.% - -windoze-dsp: liberror.dsp - -liberror.dsp: Makefile \ - $(top_srcdir)/ndb/config/win-lib.am \ - $(top_srcdir)/ndb/config/win-name \ - $(top_srcdir)/ndb/config/win-includes \ - $(top_srcdir)/ndb/config/win-sources \ - $(top_srcdir)/ndb/config/win-libraries - cat $(top_srcdir)/ndb/config/win-lib.am > $@ - @$(top_srcdir)/ndb/config/win-name $@ $(noinst_LIBRARIES) - @$(top_srcdir)/ndb/config/win-includes $@ $(INCLUDES) - @$(top_srcdir)/ndb/config/win-sources $@ $(liberror_a_SOURCES) - @$(top_srcdir)/ndb/config/win-libraries $@ LIB $(LDADD) diff --git a/ndb/src/kernel/vm/Makefile.am b/ndb/src/kernel/vm/Makefile.am deleted file mode 100644 index 0dce9285ae3..00000000000 --- a/ndb/src/kernel/vm/Makefile.am +++ /dev/null @@ -1,43 +0,0 @@ -#SUBDIRS = testCopy testDataBuffer testSimplePropertiesSection -#ifneq ($(USE_EDITLINE), N) -#DIRS += testLongSig -#endif - -noinst_LIBRARIES = libkernel.a - -libkernel_a_SOURCES = \ - SimulatedBlock.cpp \ - FastScheduler.cpp \ - TimeQueue.cpp \ - VMSignal.cpp \ - ThreadConfig.cpp \ - TransporterCallback.cpp \ - Emulator.cpp \ - Configuration.cpp \ - WatchDog.cpp \ - SimplePropertiesSection.cpp \ - SectionReader.cpp \ - MetaData.cpp \ - Mutex.cpp SafeCounter.cpp - -INCLUDES_LOC = -I$(top_srcdir)/ndb/src/mgmapi - -include $(top_srcdir)/ndb/config/common.mk.am -include $(top_srcdir)/ndb/config/type_kernel.mk.am - -# Don't update the files from bitkeeper -%::SCCS/s.% - -windoze-dsp: libkernel.dsp - -libkernel.dsp: Makefile \ - $(top_srcdir)/ndb/config/win-lib.am \ - $(top_srcdir)/ndb/config/win-name \ - $(top_srcdir)/ndb/config/win-includes \ - $(top_srcdir)/ndb/config/win-sources \ - $(top_srcdir)/ndb/config/win-libraries - cat $(top_srcdir)/ndb/config/win-lib.am > $@ - @$(top_srcdir)/ndb/config/win-name $@ $(noinst_LIBRARIES) - @$(top_srcdir)/ndb/config/win-includes $@ $(INCLUDES) - @$(top_srcdir)/ndb/config/win-sources $@ $(libkernel_a_SOURCES) - @$(top_srcdir)/ndb/config/win-libraries $@ LIB $(LDADD) diff --git a/ndb/src/mgmapi/Makefile.am b/ndb/src/mgmapi/Makefile.am deleted file mode 100644 index db730bf8c89..00000000000 --- a/ndb/src/mgmapi/Makefile.am +++ /dev/null @@ -1,30 +0,0 @@ - -noinst_LTLIBRARIES = libmgmapi.la - -libmgmapi_la_SOURCES = mgmapi.cpp ndb_logevent.cpp mgmapi_configuration.cpp LocalConfig.cpp - -INCLUDES_LOC = -I$(top_srcdir)/ndb/include/mgmapi - -DEFS_LOC = -DNO_DEBUG_MESSAGES -DNDB_PORT="\"@ndb_port@\"" - -include $(top_srcdir)/ndb/config/common.mk.am -include $(top_srcdir)/ndb/config/type_util.mk.am - -#ndbtest_PROGRAMS = ndb_test_mgmapi - -# Don't update the files from bitkeeper -%::SCCS/s.% - -windoze-dsp: libmgmapi.dsp - -libmgmapi.dsp: Makefile \ - $(top_srcdir)/ndb/config/win-lib.am \ - $(top_srcdir)/ndb/config/win-name \ - $(top_srcdir)/ndb/config/win-includes \ - $(top_srcdir)/ndb/config/win-sources \ - $(top_srcdir)/ndb/config/win-libraries - cat $(top_srcdir)/ndb/config/win-lib.am > $@ - @$(top_srcdir)/ndb/config/win-name $@ $(noinst_LTLIBRARIES) - @$(top_srcdir)/ndb/config/win-includes $@ $(INCLUDES) - @$(top_srcdir)/ndb/config/win-sources $@ $(libmgmapi_la_SOURCES) - @$(top_srcdir)/ndb/config/win-libraries $@ LIB $(LDADD) diff --git a/ndb/src/mgmclient/Makefile.am b/ndb/src/mgmclient/Makefile.am deleted file mode 100644 index c63e8d1bff8..00000000000 --- a/ndb/src/mgmclient/Makefile.am +++ /dev/null @@ -1,58 +0,0 @@ - -noinst_LTLIBRARIES = libndbmgmclient.la -ndbtools_PROGRAMS = ndb_mgm - -libndbmgmclient_la_SOURCES = CommandInterpreter.cpp -libndbmgmclient_la_LIBADD = ../mgmapi/libmgmapi.la \ - ../common/logger/liblogger.la \ - ../common/portlib/libportlib.la \ - ../common/util/libgeneral.la \ - ../common/portlib/libportlib.la - - -ndb_mgm_SOURCES = main.cpp - -include $(top_srcdir)/ndb/config/common.mk.am -include $(top_srcdir)/ndb/config/type_ndbapi.mk.am - -INCLUDES += -I$(top_srcdir)/ndb/include/mgmapi \ - -I$(top_srcdir)/ndb/src/common/mgmcommon - -LDADD_LOC = $(noinst_LTLIBRARIES) \ - ../common/portlib/libportlib.la \ - @readline_link@ \ - $(top_builddir)/dbug/libdbug.a \ - $(top_builddir)/mysys/libmysys.a \ - $(top_builddir)/strings/libmystrings.a \ - @TERMCAP_LIB@ @NDB_SCI_LIBS@ - -ndb_mgm_LDFLAGS = @ndb_bin_am_ldflags@ - -# Don't update the files from bitkeeper -%::SCCS/s.% - -windoze-dsp: ndb_mgm.dsp libndbmgmclient.dsp - -ndb_mgm.dsp: Makefile \ - $(top_srcdir)/ndb/config/win-prg.am \ - $(top_srcdir)/ndb/config/win-name \ - $(top_srcdir)/ndb/config/win-includes \ - $(top_srcdir)/ndb/config/win-sources \ - $(top_srcdir)/ndb/config/win-libraries - cat $(top_srcdir)/ndb/config/win-prg.am > $@ - @$(top_srcdir)/ndb/config/win-name $@ $(ndbtools_PROGRAMS) - @$(top_srcdir)/ndb/config/win-includes $@ $(INCLUDES) - @$(top_srcdir)/ndb/config/win-sources $@ $(ndb_mgm_SOURCES) - @$(top_srcdir)/ndb/config/win-libraries $@ LINK $(LDADD) - -libndbmgmclient.dsp: Makefile \ - $(top_srcdir)/ndb/config/win-lib.am \ - $(top_srcdir)/ndb/config/win-name \ - $(top_srcdir)/ndb/config/win-includes \ - $(top_srcdir)/ndb/config/win-sources \ - $(top_srcdir)/ndb/config/win-libraries - cat $(top_srcdir)/ndb/config/win-lib.am > $@ - @$(top_srcdir)/ndb/config/win-name $@ $(noinst_LTLIBRARIES) - @$(top_srcdir)/ndb/config/win-includes $@ $(INCLUDES) - @$(top_srcdir)/ndb/config/win-sources $@ $(libndbmgmclient_la_SOURCES) - @$(top_srcdir)/ndb/config/win-libraries $@ LIB diff --git a/ndb/src/mgmsrv/Makefile.am b/ndb/src/mgmsrv/Makefile.am deleted file mode 100644 index 7fd3fa66b43..00000000000 --- a/ndb/src/mgmsrv/Makefile.am +++ /dev/null @@ -1,60 +0,0 @@ -MYSQLDATAdir = $(localstatedir) -MYSQLSHAREdir = $(pkgdatadir) -MYSQLBASEdir= $(prefix) -#MYSQLCLUSTERdir= $(prefix)/mysql-cluster -MYSQLCLUSTERdir= . - -ndbbin_PROGRAMS = ndb_mgmd - -ndb_mgmd_SOURCES = \ - MgmtSrvr.cpp \ - MgmtSrvrGeneralSignalHandling.cpp \ - main.cpp \ - Services.cpp \ - convertStrToInt.cpp \ - SignalQueue.cpp \ - MgmtSrvrConfig.cpp \ - ConfigInfo.cpp \ - InitConfigFileParser.cpp \ - Config.cpp - -INCLUDES_LOC = -I$(top_srcdir)/ndb/src/ndbapi \ - -I$(top_srcdir)/ndb/src/mgmapi \ - -I$(top_srcdir)/ndb/src/common/mgmcommon \ - -I$(top_srcdir)/ndb/src/mgmclient - -LDADD_LOC = $(top_srcdir)/ndb/src/mgmclient/CommandInterpreter.o \ - $(top_builddir)/ndb/src/libndbclient.la \ - $(top_builddir)/dbug/libdbug.a \ - $(top_builddir)/mysys/libmysys.a \ - $(top_builddir)/strings/libmystrings.a \ - @readline_link@ \ - @NDB_SCI_LIBS@ \ - @TERMCAP_LIB@ - -DEFS_LOC = -DDEFAULT_MYSQL_HOME="\"$(MYSQLBASEdir)\"" \ - -DDATADIR="\"$(MYSQLDATAdir)\"" \ - -DSHAREDIR="\"$(MYSQLSHAREdir)\"" \ - -DMYSQLCLUSTERDIR="\"$(MYSQLCLUSTERdir)\"" - -include $(top_srcdir)/ndb/config/common.mk.am -include $(top_srcdir)/ndb/config/type_ndbapi.mk.am - -ndb_mgmd_LDFLAGS = @ndb_bin_am_ldflags@ - -# Don't update the files from bitkeeper -%::SCCS/s.% - -windoze-dsp: ndb_mgmd.dsp - -ndb_mgmd.dsp: Makefile \ - $(top_srcdir)/ndb/config/win-prg.am \ - $(top_srcdir)/ndb/config/win-name \ - $(top_srcdir)/ndb/config/win-includes \ - $(top_srcdir)/ndb/config/win-sources \ - $(top_srcdir)/ndb/config/win-libraries - cat $(top_srcdir)/ndb/config/win-prg.am > $@ - @$(top_srcdir)/ndb/config/win-name $@ $(ndbbin_PROGRAMS) - @$(top_srcdir)/ndb/config/win-includes $@ $(INCLUDES) - @$(top_srcdir)/ndb/config/win-sources $@ $(ndb_mgmd_SOURCES) - @$(top_srcdir)/ndb/config/win-libraries $@ LINK $(LDADD) diff --git a/ndb/test/ndbapi/Makefile.am b/ndb/test/ndbapi/Makefile.am deleted file mode 100644 index 1d2dfb3f948..00000000000 --- a/ndb/test/ndbapi/Makefile.am +++ /dev/null @@ -1,159 +0,0 @@ - -SUBDIRS = bank - -ndbtest_PROGRAMS = \ -flexBench \ -drop_all_tabs \ -create_all_tabs \ -create_tab \ -flexAsynch \ -flexBench \ -flexHammer \ -flexTT \ -testBackup \ -testBasic \ -testBasicAsynch \ -testBlobs \ -testDataBuffers \ -testDict \ -testIndex \ -testMgm \ -testNdbApi \ -testNodeRestart \ -testOIBasic \ -testOperations \ -testRestartGci \ -testScan \ -testScanInterpreter \ -testScanPerf \ -testSystemRestart \ -testTimeout \ -testTransactions \ -testDeadlock \ -test_event ndbapi_slow_select testReadPerf testLcp \ -testPartitioning \ -testBitfield \ -DbCreate DbAsyncGenerator \ -test_event_multi_table - -#flexTimedAsynch -#testBlobs -#flex_bench_mysql - -create_all_tabs_SOURCES = create_all_tabs.cpp -create_tab_SOURCES = create_tab.cpp -drop_all_tabs_SOURCES = drop_all_tabs.cpp -flexAsynch_SOURCES = flexAsynch.cpp -flexBench_SOURCES = flexBench.cpp -flexHammer_SOURCES = flexHammer.cpp -flexTT_SOURCES = flexTT.cpp -#flexTimedAsynch_SOURCES = flexTimedAsynch.cpp -#flex_bench_mysql_SOURCES = flex_bench_mysql.cpp -testBackup_SOURCES = testBackup.cpp -testBasic_SOURCES = testBasic.cpp -testBasicAsynch_SOURCES = testBasicAsynch.cpp -testBlobs_SOURCES = testBlobs.cpp -testDataBuffers_SOURCES = testDataBuffers.cpp -testDict_SOURCES = testDict.cpp -testIndex_SOURCES = testIndex.cpp -testMgm_SOURCES = testMgm.cpp -testNdbApi_SOURCES = testNdbApi.cpp -testNodeRestart_SOURCES = testNodeRestart.cpp -testOIBasic_SOURCES = testOIBasic.cpp -testOperations_SOURCES = testOperations.cpp -testRestartGci_SOURCES = testRestartGci.cpp -testScan_SOURCES = testScan.cpp ScanFunctions.hpp -testScanInterpreter_SOURCES = testScanInterpreter.cpp ScanFilter.hpp ScanInterpretTest.hpp -testScanPerf_SOURCES = testScanPerf.cpp -testSystemRestart_SOURCES = testSystemRestart.cpp -testTimeout_SOURCES = testTimeout.cpp -testTransactions_SOURCES = testTransactions.cpp -testDeadlock_SOURCES = testDeadlock.cpp -test_event_SOURCES = test_event.cpp -ndbapi_slow_select_SOURCES = slow_select.cpp -testReadPerf_SOURCES = testReadPerf.cpp -testLcp_SOURCES = testLcp.cpp -testPartitioning_SOURCES = testPartitioning.cpp -testBitfield_SOURCES = testBitfield.cpp -DbCreate_SOURCES = bench/mainPopulate.cpp bench/dbPopulate.cpp bench/userInterface.cpp bench/dbPopulate.h bench/userInterface.h bench/testData.h bench/testDefinitions.h bench/ndb_schema.hpp bench/ndb_error.hpp -DbAsyncGenerator_SOURCES = bench/mainAsyncGenerator.cpp bench/asyncGenerator.cpp bench/ndb_async2.cpp bench/dbGenerator.h bench/macros.h bench/userInterface.h bench/testData.h bench/testDefinitions.h bench/ndb_schema.hpp bench/ndb_error.hpp -test_event_multi_table_SOURCES = test_event_multi_table.cpp - -INCLUDES_LOC = -I$(top_srcdir)/ndb/include/kernel - -include $(top_srcdir)/ndb/config/common.mk.am -include $(top_srcdir)/ndb/config/type_ndbapitest.mk.am - -##testDict_INCLUDES = $(INCLUDES) -I$(top_srcdir)/ndb/include/kernel -##testIndex_INCLUDES = $(INCLUDES) -I$(top_srcdir)/ndb/include/kernel -##testSystemRestart_INCLUDES = $(INCLUDES) -I$(top_srcdir)/ndb/include/kernel -##testTransactions_INCLUDES = $(INCLUDES) -I$(top_srcdir)/ndb/include/kernel -testBackup_LDADD = $(LDADD) bank/libbank.a - -# Don't update the files from bitkeeper -%::SCCS/s.% - - - -windoze-dsp: flexBench.dsp testBasic.dsp testBlobs.dsp \ - testScan.dsp - -flexBench.dsp: Makefile \ - $(top_srcdir)/ndb/config/win-prg.am \ - $(top_srcdir)/ndb/config/win-name \ - $(top_srcdir)/ndb/config/win-includes \ - $(top_srcdir)/ndb/config/win-sources \ - $(top_srcdir)/ndb/config/win-libraries - cat $(top_srcdir)/ndb/config/win-prg.am > $@ - @$(top_srcdir)/ndb/config/win-name $@ flexBench - @$(top_srcdir)/ndb/config/win-includes $@ $(INCLUDES) - @$(top_srcdir)/ndb/config/win-sources $@ $(flexBench_SOURCES) - @$(top_srcdir)/ndb/config/win-libraries $@ LINK $(LDADD) - -testBasic.dsp: Makefile \ - $(top_srcdir)/ndb/config/win-prg.am \ - $(top_srcdir)/ndb/config/win-name \ - $(top_srcdir)/ndb/config/win-includes \ - $(top_srcdir)/ndb/config/win-sources \ - $(top_srcdir)/ndb/config/win-libraries - cat $(top_srcdir)/ndb/config/win-prg.am > $@ - @$(top_srcdir)/ndb/config/win-name $@ testBasic - @$(top_srcdir)/ndb/config/win-includes $@ $(INCLUDES) - @$(top_srcdir)/ndb/config/win-sources $@ $(testBasic_SOURCES) - @$(top_srcdir)/ndb/config/win-libraries $@ LINK $(LDADD) - -testOIBasic.dsp: Makefile \ - $(top_srcdir)/ndb/config/win-prg.am \ - $(top_srcdir)/ndb/config/win-name \ - $(top_srcdir)/ndb/config/win-includes \ - $(top_srcdir)/ndb/config/win-sources \ - $(top_srcdir)/ndb/config/win-libraries - cat $(top_srcdir)/ndb/config/win-prg.am > $@ - @$(top_srcdir)/ndb/config/win-name $@ testOIBasic - @$(top_srcdir)/ndb/config/win-includes $@ $(INCLUDES) - @$(top_srcdir)/ndb/config/win-sources $@ $(testOIBasic_SOURCES) - @$(top_srcdir)/ndb/config/win-libraries $@ LINK $(LDADD) - -testBlobs.dsp: Makefile \ - $(top_srcdir)/ndb/config/win-prg.am \ - $(top_srcdir)/ndb/config/win-name \ - $(top_srcdir)/ndb/config/win-includes \ - $(top_srcdir)/ndb/config/win-sources \ - $(top_srcdir)/ndb/config/win-libraries - cat $(top_srcdir)/ndb/config/win-prg.am > $@ - @$(top_srcdir)/ndb/config/win-name $@ testBlobs - @$(top_srcdir)/ndb/config/win-includes $@ $(INCLUDES) - @$(top_srcdir)/ndb/config/win-sources $@ $(testBlobs_SOURCES) - @$(top_srcdir)/ndb/config/win-libraries $@ LINK $(LDADD) - -testScan.dsp: Makefile \ - $(top_srcdir)/ndb/config/win-prg.am \ - $(top_srcdir)/ndb/config/win-name \ - $(top_srcdir)/ndb/config/win-includes \ - $(top_srcdir)/ndb/config/win-sources \ - $(top_srcdir)/ndb/config/win-libraries - cat $(top_srcdir)/ndb/config/win-prg.am > $@ - @$(top_srcdir)/ndb/config/win-name $@ testScan - @$(top_srcdir)/ndb/config/win-includes $@ $(INCLUDES) - @$(top_srcdir)/ndb/config/win-sources $@ $(testScan_SOURCES) - @$(top_srcdir)/ndb/config/win-libraries $@ LINK $(LDADD) diff --git a/ndb/test/src/Makefile.am b/ndb/test/src/Makefile.am deleted file mode 100644 index 289633b060a..00000000000 --- a/ndb/test/src/Makefile.am +++ /dev/null @@ -1,35 +0,0 @@ - -noinst_LIBRARIES = libNDBT.a - -libNDBT_a_SOURCES = \ - NDBT_ReturnCodes.cpp \ - NDBT_Error.cpp NDBT_Tables.cpp NDBT_ResultRow.cpp \ - NDBT_Test.cpp HugoCalculator.cpp \ - HugoOperations.cpp HugoTransactions.cpp \ - HugoAsynchTransactions.cpp UtilTransactions.cpp \ - NdbRestarter.cpp NdbRestarts.cpp NDBT_Output.cpp \ - NdbBackup.cpp NdbConfig.cpp NdbGrep.cpp NDBT_Table.cpp \ - NdbSchemaCon.cpp NdbSchemaOp.cpp getarg.c \ - CpcClient.cpp - -INCLUDES_LOC = -I$(top_srcdir)/ndb/src/common/mgmcommon -I$(top_srcdir)/ndb/include/mgmcommon -I$(top_srcdir)/ndb/include/kernel -I$(top_srcdir)/ndb/src/mgmapi - -include $(top_srcdir)/ndb/config/common.mk.am -include $(top_srcdir)/ndb/config/type_ndbapitest.mk.am - -# Don't update the files from bitkeeper -%::SCCS/s.% - -windoze-dsp: libNDBT.dsp - -libNDBT.dsp: Makefile \ - $(top_srcdir)/ndb/config/win-lib.am \ - $(top_srcdir)/ndb/config/win-name \ - $(top_srcdir)/ndb/config/win-includes \ - $(top_srcdir)/ndb/config/win-sources \ - $(top_srcdir)/ndb/config/win-libraries - cat $(top_srcdir)/ndb/config/win-lib.am > $@ - @$(top_srcdir)/ndb/config/win-name $@ $(noinst_LIBRARIES) - @$(top_srcdir)/ndb/config/win-includes $@ $(INCLUDES) - @$(top_srcdir)/ndb/config/win-sources $@ $(libNDBT_a_SOURCES) - @$(top_srcdir)/ndb/config/win-libraries $@ LIB diff --git a/ndb/tools/Makefile.am b/ndb/tools/Makefile.am deleted file mode 100644 index c350fb0a141..00000000000 --- a/ndb/tools/Makefile.am +++ /dev/null @@ -1,156 +0,0 @@ - -ndbtools_PROGRAMS = \ - ndb_test_platform \ - ndb_waiter \ - ndb_drop_table \ - ndb_delete_all \ - ndb_desc \ - ndb_drop_index \ - ndb_show_tables \ - ndb_select_all \ - ndb_select_count \ - ndb_restore - -tools_common_sources = ../test/src/NDBT_ReturnCodes.cpp \ - ../test/src/NDBT_Table.cpp \ - ../test/src/NDBT_Output.cpp - -ndb_test_platform_SOURCES = ndb_test_platform.cpp -ndb_waiter_SOURCES = waiter.cpp $(tools_common_sources) -ndb_delete_all_SOURCES = delete_all.cpp $(tools_common_sources) -ndb_desc_SOURCES = desc.cpp $(tools_common_sources) -ndb_drop_index_SOURCES = drop_index.cpp $(tools_common_sources) -ndb_drop_table_SOURCES = drop_tab.cpp $(tools_common_sources) -ndb_show_tables_SOURCES = listTables.cpp $(tools_common_sources) -ndb_select_all_SOURCES = select_all.cpp \ - ../test/src/NDBT_ResultRow.cpp \ - $(tools_common_sources) -ndb_select_count_SOURCES = select_count.cpp $(tools_common_sources) -ndb_restore_SOURCES = restore/restore_main.cpp \ - restore/consumer.cpp \ - restore/consumer_restore.cpp \ - restore/consumer_printer.cpp \ - restore/Restore.cpp - -include $(top_srcdir)/ndb/config/common.mk.am -include $(top_srcdir)/ndb/config/type_ndbapitools.mk.am - -ndb_test_platform_LDFLAGS = @ndb_bin_am_ldflags@ -ndb_waiter_LDFLAGS = @ndb_bin_am_ldflags@ -ndb_drop_table_LDFLAGS = @ndb_bin_am_ldflags@ -ndb_delete_all_LDFLAGS = @ndb_bin_am_ldflags@ -ndb_desc_LDFLAGS = @ndb_bin_am_ldflags@ -ndb_drop_index_LDFLAGS = @ndb_bin_am_ldflags@ -ndb_show_tables_LDFLAGS = @ndb_bin_am_ldflags@ -ndb_select_all_LDFLAGS = @ndb_bin_am_ldflags@ -ndb_select_count_LDFLAGS = @ndb_bin_am_ldflags@ -ndb_restore_LDFLAGS = @ndb_bin_am_ldflags@ - -# Don't update the files from bitkeeper -%::SCCS/s.% - -windoze-dsp: \ - ndb_waiter.dsp \ - ndb_drop_table.dsp \ - ndb_delete_all.dsp \ - ndb_desc.dsp \ - ndb_drop_index.dsp \ - ndb_show_tables.dsp \ - ndb_select_all.dsp \ - ndb_select_count.dsp - -ndb_waiter.dsp: Makefile \ - $(top_srcdir)/ndb/config/win-prg.am \ - $(top_srcdir)/ndb/config/win-name \ - $(top_srcdir)/ndb/config/win-includes \ - $(top_srcdir)/ndb/config/win-sources \ - $(top_srcdir)/ndb/config/win-libraries - cat $(top_srcdir)/ndb/config/win-prg.am > $@ - @$(top_srcdir)/ndb/config/win-name $@ ndb_waiter - @$(top_srcdir)/ndb/config/win-includes $@ $(INCLUDES) - @$(top_srcdir)/ndb/config/win-sources $@ $(ndb_waiter_SOURCES) - @$(top_srcdir)/ndb/config/win-libraries $@ LINK $(LDADD) - -ndb_drop_table.dsp: Makefile \ - $(top_srcdir)/ndb/config/win-prg.am \ - $(top_srcdir)/ndb/config/win-name \ - $(top_srcdir)/ndb/config/win-includes \ - $(top_srcdir)/ndb/config/win-sources \ - $(top_srcdir)/ndb/config/win-libraries - cat $(top_srcdir)/ndb/config/win-prg.am > $@ - @$(top_srcdir)/ndb/config/win-name $@ ndb_drop_table - @$(top_srcdir)/ndb/config/win-includes $@ $(INCLUDES) - @$(top_srcdir)/ndb/config/win-sources $@ $(ndb_drop_table_SOURCES) - @$(top_srcdir)/ndb/config/win-libraries $@ LINK $(LDADD) - -ndb_delete_all.dsp: Makefile \ - $(top_srcdir)/ndb/config/win-prg.am \ - $(top_srcdir)/ndb/config/win-name \ - $(top_srcdir)/ndb/config/win-includes \ - $(top_srcdir)/ndb/config/win-sources \ - $(top_srcdir)/ndb/config/win-libraries - cat $(top_srcdir)/ndb/config/win-prg.am > $@ - @$(top_srcdir)/ndb/config/win-name $@ ndb_delete_all - @$(top_srcdir)/ndb/config/win-includes $@ $(INCLUDES) - @$(top_srcdir)/ndb/config/win-sources $@ $(ndb_delete_all_SOURCES) - @$(top_srcdir)/ndb/config/win-libraries $@ LINK $(LDADD) - -ndb_desc.dsp: Makefile \ - $(top_srcdir)/ndb/config/win-prg.am \ - $(top_srcdir)/ndb/config/win-name \ - $(top_srcdir)/ndb/config/win-includes \ - $(top_srcdir)/ndb/config/win-sources \ - $(top_srcdir)/ndb/config/win-libraries - cat $(top_srcdir)/ndb/config/win-prg.am > $@ - @$(top_srcdir)/ndb/config/win-name $@ ndb_desc - @$(top_srcdir)/ndb/config/win-includes $@ $(INCLUDES) - @$(top_srcdir)/ndb/config/win-sources $@ $(ndb_desc_SOURCES) - @$(top_srcdir)/ndb/config/win-libraries $@ LINK $(LDADD) - -ndb_drop_index.dsp: Makefile \ - $(top_srcdir)/ndb/config/win-prg.am \ - $(top_srcdir)/ndb/config/win-name \ - $(top_srcdir)/ndb/config/win-includes \ - $(top_srcdir)/ndb/config/win-sources \ - $(top_srcdir)/ndb/config/win-libraries - cat $(top_srcdir)/ndb/config/win-prg.am > $@ - @$(top_srcdir)/ndb/config/win-name $@ ndb_drop_index - @$(top_srcdir)/ndb/config/win-includes $@ $(INCLUDES) - @$(top_srcdir)/ndb/config/win-sources $@ $(ndb_drop_index_SOURCES) - @$(top_srcdir)/ndb/config/win-libraries $@ LINK $(LDADD) - -ndb_show_tables.dsp: Makefile \ - $(top_srcdir)/ndb/config/win-prg.am \ - $(top_srcdir)/ndb/config/win-name \ - $(top_srcdir)/ndb/config/win-includes \ - $(top_srcdir)/ndb/config/win-sources \ - $(top_srcdir)/ndb/config/win-libraries - cat $(top_srcdir)/ndb/config/win-prg.am > $@ - @$(top_srcdir)/ndb/config/win-name $@ ndb_show_tables - @$(top_srcdir)/ndb/config/win-includes $@ $(INCLUDES) - @$(top_srcdir)/ndb/config/win-sources $@ $(ndb_show_tables_SOURCES) - @$(top_srcdir)/ndb/config/win-libraries $@ LINK $(LDADD) - -ndb_select_all.dsp: Makefile \ - $(top_srcdir)/ndb/config/win-prg.am \ - $(top_srcdir)/ndb/config/win-name \ - $(top_srcdir)/ndb/config/win-includes \ - $(top_srcdir)/ndb/config/win-sources \ - $(top_srcdir)/ndb/config/win-libraries - cat $(top_srcdir)/ndb/config/win-prg.am > $@ - @$(top_srcdir)/ndb/config/win-name $@ ndb_select_all - @$(top_srcdir)/ndb/config/win-includes $@ $(INCLUDES) - @$(top_srcdir)/ndb/config/win-sources $@ $(ndb_select_all_SOURCES) - @$(top_srcdir)/ndb/config/win-libraries $@ LINK $(LDADD) - -ndb_select_count.dsp: Makefile \ - $(top_srcdir)/ndb/config/win-prg.am \ - $(top_srcdir)/ndb/config/win-name \ - $(top_srcdir)/ndb/config/win-includes \ - $(top_srcdir)/ndb/config/win-sources \ - $(top_srcdir)/ndb/config/win-libraries - cat $(top_srcdir)/ndb/config/win-prg.am > $@ - @$(top_srcdir)/ndb/config/win-name $@ ndb_select_count - @$(top_srcdir)/ndb/config/win-includes $@ $(INCLUDES) - @$(top_srcdir)/ndb/config/win-sources $@ $(ndb_select_count_SOURCES) - @$(top_srcdir)/ndb/config/win-libraries $@ LINK $(LDADD) diff --git a/sql/Makefile.am b/sql/Makefile.am index aabe7c08f0f..b9a9bdaec74 100644 --- a/sql/Makefile.am +++ b/sql/Makefile.am @@ -29,9 +29,9 @@ libexec_PROGRAMS = mysqld noinst_PROGRAMS = gen_lex_hash bin_PROGRAMS = mysql_tzinfo_to_sql gen_lex_hash_LDFLAGS = @NOINST_LDFLAGS@ -LDADD = $(top_builddir)/myisam/libmyisam.a \ - $(top_builddir)/myisammrg/libmyisammrg.a \ - $(top_builddir)/heap/libheap.a \ +LDADD = $(top_builddir)/storage/myisam/libmyisam.a \ + $(top_builddir)/storage/myisammrg/libmyisammrg.a \ + $(top_builddir)/storage/heap/libheap.a \ $(top_builddir)/vio/libvio.a \ $(top_builddir)/mysys/libmysys.a \ $(top_builddir)/dbug/libdbug.a \ diff --git a/sql/ha_innodb.cc b/sql/ha_innodb.cc index 3f592e36219..6f61fce7cb1 100644 --- a/sql/ha_innodb.cc +++ b/sql/ha_innodb.cc @@ -59,28 +59,28 @@ typedef byte mysql_byte; /* Include necessary InnoDB headers */ extern "C" { -#include "../innobase/include/univ.i" -#include "../innobase/include/os0file.h" -#include "../innobase/include/os0thread.h" -#include "../innobase/include/srv0start.h" -#include "../innobase/include/srv0srv.h" -#include "../innobase/include/trx0roll.h" -#include "../innobase/include/trx0trx.h" -#include "../innobase/include/trx0sys.h" -#include "../innobase/include/mtr0mtr.h" -#include "../innobase/include/row0ins.h" -#include "../innobase/include/row0mysql.h" -#include "../innobase/include/row0sel.h" -#include "../innobase/include/row0upd.h" -#include "../innobase/include/log0log.h" -#include "../innobase/include/lock0lock.h" -#include "../innobase/include/dict0crea.h" -#include "../innobase/include/btr0cur.h" -#include "../innobase/include/btr0btr.h" -#include "../innobase/include/fsp0fsp.h" -#include "../innobase/include/sync0sync.h" -#include "../innobase/include/fil0fil.h" -#include "../innobase/include/trx0xa.h" +#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" } #define HA_INNOBASE_ROWS_IN_TABLE 10000 /* to get optimization right */ diff --git a/sql/ha_myisam.cc b/sql/ha_myisam.cc index 2179eaa7f8f..9d17ebd06e3 100644 --- a/sql/ha_myisam.cc +++ b/sql/ha_myisam.cc @@ -27,8 +27,8 @@ #ifndef MASTER #include "../srclib/myisam/myisamdef.h" #else -#include "../myisam/myisamdef.h" -#include "../myisam/rt_index.h" +#include "../storage/myisam/myisamdef.h" +#include "../storage/myisam/rt_index.h" #endif ulong myisam_recover_options= HA_RECOVER_NONE; diff --git a/sql/ha_myisammrg.cc b/sql/ha_myisammrg.cc index 4cd39660728..1d86e31054e 100644 --- a/sql/ha_myisammrg.cc +++ b/sql/ha_myisammrg.cc @@ -25,7 +25,7 @@ #ifndef MASTER #include "../srclib/myisammrg/myrg_def.h" #else -#include "../myisammrg/myrg_def.h" +#include "../storage/myisammrg/myrg_def.h" #endif /***************************************************************************** diff --git a/sql/lock.cc b/sql/lock.cc index a8ccba32d4f..2b0edacf073 100644 --- a/sql/lock.cc +++ b/sql/lock.cc @@ -72,7 +72,7 @@ TODO: #ifndef MASTER #include "../srclib/myisammrg/myrg_def.h" #else -#include "../myisammrg/myrg_def.h" +#include "../storage/myisammrg/myrg_def.h" #endif static MYSQL_LOCK *get_lock_data(THD *thd, TABLE **table,uint count, diff --git a/sql/sql_cache.cc b/sql/sql_cache.cc index 4a4f61f985c..9c5e1f5e58f 100644 --- a/sql/sql_cache.cc +++ b/sql/sql_cache.cc @@ -304,7 +304,7 @@ TODO list: #ifndef MASTER #include "../srclib/myisammrg/myrg_def.h" #else -#include "../myisammrg/myrg_def.h" +#include "../storage/myisammrg/myrg_def.h" #endif #ifdef EMBEDDED_LIBRARY diff --git a/bdb/LICENSE b/storage/bdb/LICENSE similarity index 100% rename from bdb/LICENSE rename to storage/bdb/LICENSE diff --git a/bdb/Makefile.in b/storage/bdb/Makefile.in similarity index 100% rename from bdb/Makefile.in rename to storage/bdb/Makefile.in diff --git a/bdb/btree/bt_compare.c b/storage/bdb/btree/bt_compare.c similarity index 100% rename from bdb/btree/bt_compare.c rename to storage/bdb/btree/bt_compare.c diff --git a/bdb/btree/bt_conv.c b/storage/bdb/btree/bt_conv.c similarity index 100% rename from bdb/btree/bt_conv.c rename to storage/bdb/btree/bt_conv.c diff --git a/bdb/btree/bt_curadj.c b/storage/bdb/btree/bt_curadj.c similarity index 100% rename from bdb/btree/bt_curadj.c rename to storage/bdb/btree/bt_curadj.c diff --git a/bdb/btree/bt_cursor.c b/storage/bdb/btree/bt_cursor.c similarity index 100% rename from bdb/btree/bt_cursor.c rename to storage/bdb/btree/bt_cursor.c diff --git a/bdb/btree/bt_delete.c b/storage/bdb/btree/bt_delete.c similarity index 100% rename from bdb/btree/bt_delete.c rename to storage/bdb/btree/bt_delete.c diff --git a/bdb/btree/bt_method.c b/storage/bdb/btree/bt_method.c similarity index 100% rename from bdb/btree/bt_method.c rename to storage/bdb/btree/bt_method.c diff --git a/bdb/btree/bt_open.c b/storage/bdb/btree/bt_open.c similarity index 100% rename from bdb/btree/bt_open.c rename to storage/bdb/btree/bt_open.c diff --git a/bdb/btree/bt_put.c b/storage/bdb/btree/bt_put.c similarity index 100% rename from bdb/btree/bt_put.c rename to storage/bdb/btree/bt_put.c diff --git a/bdb/btree/bt_rec.c b/storage/bdb/btree/bt_rec.c similarity index 100% rename from bdb/btree/bt_rec.c rename to storage/bdb/btree/bt_rec.c diff --git a/bdb/btree/bt_reclaim.c b/storage/bdb/btree/bt_reclaim.c similarity index 100% rename from bdb/btree/bt_reclaim.c rename to storage/bdb/btree/bt_reclaim.c diff --git a/bdb/btree/bt_recno.c b/storage/bdb/btree/bt_recno.c similarity index 100% rename from bdb/btree/bt_recno.c rename to storage/bdb/btree/bt_recno.c diff --git a/bdb/btree/bt_rsearch.c b/storage/bdb/btree/bt_rsearch.c similarity index 100% rename from bdb/btree/bt_rsearch.c rename to storage/bdb/btree/bt_rsearch.c diff --git a/bdb/btree/bt_search.c b/storage/bdb/btree/bt_search.c similarity index 100% rename from bdb/btree/bt_search.c rename to storage/bdb/btree/bt_search.c diff --git a/bdb/btree/bt_split.c b/storage/bdb/btree/bt_split.c similarity index 100% rename from bdb/btree/bt_split.c rename to storage/bdb/btree/bt_split.c diff --git a/bdb/btree/bt_stat.c b/storage/bdb/btree/bt_stat.c similarity index 100% rename from bdb/btree/bt_stat.c rename to storage/bdb/btree/bt_stat.c diff --git a/bdb/btree/bt_upgrade.c b/storage/bdb/btree/bt_upgrade.c similarity index 100% rename from bdb/btree/bt_upgrade.c rename to storage/bdb/btree/bt_upgrade.c diff --git a/bdb/btree/bt_verify.c b/storage/bdb/btree/bt_verify.c similarity index 100% rename from bdb/btree/bt_verify.c rename to storage/bdb/btree/bt_verify.c diff --git a/bdb/btree/btree.src b/storage/bdb/btree/btree.src similarity index 100% rename from bdb/btree/btree.src rename to storage/bdb/btree/btree.src diff --git a/bdb/build_unix/.IGNORE_ME b/storage/bdb/build_unix/.IGNORE_ME similarity index 100% rename from bdb/build_unix/.IGNORE_ME rename to storage/bdb/build_unix/.IGNORE_ME diff --git a/bdb/build_vxworks/BerkeleyDB.wsp b/storage/bdb/build_vxworks/BerkeleyDB.wsp similarity index 100% rename from bdb/build_vxworks/BerkeleyDB.wsp rename to storage/bdb/build_vxworks/BerkeleyDB.wsp diff --git a/bdb/build_vxworks/dbdemo/README b/storage/bdb/build_vxworks/dbdemo/README similarity index 100% rename from bdb/build_vxworks/dbdemo/README rename to storage/bdb/build_vxworks/dbdemo/README diff --git a/bdb/build_win32/Berkeley_DB.dsw b/storage/bdb/build_win32/Berkeley_DB.dsw similarity index 100% rename from bdb/build_win32/Berkeley_DB.dsw rename to storage/bdb/build_win32/Berkeley_DB.dsw diff --git a/bdb/build_win32/app_dsp.src b/storage/bdb/build_win32/app_dsp.src similarity index 100% rename from bdb/build_win32/app_dsp.src rename to storage/bdb/build_win32/app_dsp.src diff --git a/bdb/build_win32/build_all.dsp b/storage/bdb/build_win32/build_all.dsp similarity index 100% rename from bdb/build_win32/build_all.dsp rename to storage/bdb/build_win32/build_all.dsp diff --git a/bdb/build_win32/db_java_xa.dsp b/storage/bdb/build_win32/db_java_xa.dsp similarity index 100% rename from bdb/build_win32/db_java_xa.dsp rename to storage/bdb/build_win32/db_java_xa.dsp diff --git a/bdb/build_win32/db_java_xaj.mak b/storage/bdb/build_win32/db_java_xaj.mak similarity index 100% rename from bdb/build_win32/db_java_xaj.mak rename to storage/bdb/build_win32/db_java_xaj.mak diff --git a/bdb/build_win32/db_lib.dsp b/storage/bdb/build_win32/db_lib.dsp similarity index 100% rename from bdb/build_win32/db_lib.dsp rename to storage/bdb/build_win32/db_lib.dsp diff --git a/bdb/build_win32/db_test.src b/storage/bdb/build_win32/db_test.src similarity index 100% rename from bdb/build_win32/db_test.src rename to storage/bdb/build_win32/db_test.src diff --git a/bdb/build_win32/dbkill.cpp b/storage/bdb/build_win32/dbkill.cpp similarity index 100% rename from bdb/build_win32/dbkill.cpp rename to storage/bdb/build_win32/dbkill.cpp diff --git a/bdb/build_win32/dllmain.c b/storage/bdb/build_win32/dllmain.c similarity index 100% rename from bdb/build_win32/dllmain.c rename to storage/bdb/build_win32/dllmain.c diff --git a/bdb/build_win32/dynamic_dsp.src b/storage/bdb/build_win32/dynamic_dsp.src similarity index 100% rename from bdb/build_win32/dynamic_dsp.src rename to storage/bdb/build_win32/dynamic_dsp.src diff --git a/bdb/build_win32/java_dsp.src b/storage/bdb/build_win32/java_dsp.src similarity index 100% rename from bdb/build_win32/java_dsp.src rename to storage/bdb/build_win32/java_dsp.src diff --git a/bdb/build_win32/libdb_tcl.def b/storage/bdb/build_win32/libdb_tcl.def similarity index 100% rename from bdb/build_win32/libdb_tcl.def rename to storage/bdb/build_win32/libdb_tcl.def diff --git a/bdb/build_win32/libdbrc.src b/storage/bdb/build_win32/libdbrc.src similarity index 100% rename from bdb/build_win32/libdbrc.src rename to storage/bdb/build_win32/libdbrc.src diff --git a/bdb/build_win32/srcfile_dsp.src b/storage/bdb/build_win32/srcfile_dsp.src similarity index 100% rename from bdb/build_win32/srcfile_dsp.src rename to storage/bdb/build_win32/srcfile_dsp.src diff --git a/bdb/build_win32/static_dsp.src b/storage/bdb/build_win32/static_dsp.src similarity index 100% rename from bdb/build_win32/static_dsp.src rename to storage/bdb/build_win32/static_dsp.src diff --git a/bdb/build_win32/tcl_dsp.src b/storage/bdb/build_win32/tcl_dsp.src similarity index 100% rename from bdb/build_win32/tcl_dsp.src rename to storage/bdb/build_win32/tcl_dsp.src diff --git a/bdb/clib/getcwd.c b/storage/bdb/clib/getcwd.c similarity index 100% rename from bdb/clib/getcwd.c rename to storage/bdb/clib/getcwd.c diff --git a/bdb/clib/getopt.c b/storage/bdb/clib/getopt.c similarity index 100% rename from bdb/clib/getopt.c rename to storage/bdb/clib/getopt.c diff --git a/bdb/clib/memcmp.c b/storage/bdb/clib/memcmp.c similarity index 100% rename from bdb/clib/memcmp.c rename to storage/bdb/clib/memcmp.c diff --git a/bdb/clib/memmove.c b/storage/bdb/clib/memmove.c similarity index 100% rename from bdb/clib/memmove.c rename to storage/bdb/clib/memmove.c diff --git a/bdb/clib/raise.c b/storage/bdb/clib/raise.c similarity index 100% rename from bdb/clib/raise.c rename to storage/bdb/clib/raise.c diff --git a/bdb/clib/snprintf.c b/storage/bdb/clib/snprintf.c similarity index 100% rename from bdb/clib/snprintf.c rename to storage/bdb/clib/snprintf.c diff --git a/bdb/clib/strcasecmp.c b/storage/bdb/clib/strcasecmp.c similarity index 100% rename from bdb/clib/strcasecmp.c rename to storage/bdb/clib/strcasecmp.c diff --git a/bdb/clib/strdup.c b/storage/bdb/clib/strdup.c similarity index 100% rename from bdb/clib/strdup.c rename to storage/bdb/clib/strdup.c diff --git a/bdb/clib/strerror.c b/storage/bdb/clib/strerror.c similarity index 100% rename from bdb/clib/strerror.c rename to storage/bdb/clib/strerror.c diff --git a/bdb/clib/vsnprintf.c b/storage/bdb/clib/vsnprintf.c similarity index 100% rename from bdb/clib/vsnprintf.c rename to storage/bdb/clib/vsnprintf.c diff --git a/bdb/common/db_byteorder.c b/storage/bdb/common/db_byteorder.c similarity index 100% rename from bdb/common/db_byteorder.c rename to storage/bdb/common/db_byteorder.c diff --git a/bdb/common/db_err.c b/storage/bdb/common/db_err.c similarity index 100% rename from bdb/common/db_err.c rename to storage/bdb/common/db_err.c diff --git a/bdb/common/db_getlong.c b/storage/bdb/common/db_getlong.c similarity index 100% rename from bdb/common/db_getlong.c rename to storage/bdb/common/db_getlong.c diff --git a/bdb/common/db_idspace.c b/storage/bdb/common/db_idspace.c similarity index 100% rename from bdb/common/db_idspace.c rename to storage/bdb/common/db_idspace.c diff --git a/bdb/common/db_log2.c b/storage/bdb/common/db_log2.c similarity index 100% rename from bdb/common/db_log2.c rename to storage/bdb/common/db_log2.c diff --git a/bdb/common/util_arg.c b/storage/bdb/common/util_arg.c similarity index 100% rename from bdb/common/util_arg.c rename to storage/bdb/common/util_arg.c diff --git a/bdb/common/util_cache.c b/storage/bdb/common/util_cache.c similarity index 100% rename from bdb/common/util_cache.c rename to storage/bdb/common/util_cache.c diff --git a/bdb/common/util_log.c b/storage/bdb/common/util_log.c similarity index 100% rename from bdb/common/util_log.c rename to storage/bdb/common/util_log.c diff --git a/bdb/common/util_sig.c b/storage/bdb/common/util_sig.c similarity index 100% rename from bdb/common/util_sig.c rename to storage/bdb/common/util_sig.c diff --git a/bdb/cxx/cxx_db.cpp b/storage/bdb/cxx/cxx_db.cpp similarity index 100% rename from bdb/cxx/cxx_db.cpp rename to storage/bdb/cxx/cxx_db.cpp diff --git a/bdb/cxx/cxx_dbc.cpp b/storage/bdb/cxx/cxx_dbc.cpp similarity index 100% rename from bdb/cxx/cxx_dbc.cpp rename to storage/bdb/cxx/cxx_dbc.cpp diff --git a/bdb/cxx/cxx_dbt.cpp b/storage/bdb/cxx/cxx_dbt.cpp similarity index 100% rename from bdb/cxx/cxx_dbt.cpp rename to storage/bdb/cxx/cxx_dbt.cpp diff --git a/bdb/cxx/cxx_env.cpp b/storage/bdb/cxx/cxx_env.cpp similarity index 100% rename from bdb/cxx/cxx_env.cpp rename to storage/bdb/cxx/cxx_env.cpp diff --git a/bdb/cxx/cxx_except.cpp b/storage/bdb/cxx/cxx_except.cpp similarity index 100% rename from bdb/cxx/cxx_except.cpp rename to storage/bdb/cxx/cxx_except.cpp diff --git a/bdb/cxx/cxx_lock.cpp b/storage/bdb/cxx/cxx_lock.cpp similarity index 100% rename from bdb/cxx/cxx_lock.cpp rename to storage/bdb/cxx/cxx_lock.cpp diff --git a/bdb/cxx/cxx_logc.cpp b/storage/bdb/cxx/cxx_logc.cpp similarity index 100% rename from bdb/cxx/cxx_logc.cpp rename to storage/bdb/cxx/cxx_logc.cpp diff --git a/bdb/cxx/cxx_mpool.cpp b/storage/bdb/cxx/cxx_mpool.cpp similarity index 100% rename from bdb/cxx/cxx_mpool.cpp rename to storage/bdb/cxx/cxx_mpool.cpp diff --git a/bdb/cxx/cxx_txn.cpp b/storage/bdb/cxx/cxx_txn.cpp similarity index 100% rename from bdb/cxx/cxx_txn.cpp rename to storage/bdb/cxx/cxx_txn.cpp diff --git a/bdb/db/crdel.src b/storage/bdb/db/crdel.src similarity index 100% rename from bdb/db/crdel.src rename to storage/bdb/db/crdel.src diff --git a/bdb/db/crdel_rec.c b/storage/bdb/db/crdel_rec.c similarity index 100% rename from bdb/db/crdel_rec.c rename to storage/bdb/db/crdel_rec.c diff --git a/bdb/db/db.c b/storage/bdb/db/db.c similarity index 100% rename from bdb/db/db.c rename to storage/bdb/db/db.c diff --git a/bdb/db/db.src b/storage/bdb/db/db.src similarity index 100% rename from bdb/db/db.src rename to storage/bdb/db/db.src diff --git a/bdb/db/db_am.c b/storage/bdb/db/db_am.c similarity index 100% rename from bdb/db/db_am.c rename to storage/bdb/db/db_am.c diff --git a/bdb/db/db_cam.c b/storage/bdb/db/db_cam.c similarity index 100% rename from bdb/db/db_cam.c rename to storage/bdb/db/db_cam.c diff --git a/bdb/db/db_conv.c b/storage/bdb/db/db_conv.c similarity index 100% rename from bdb/db/db_conv.c rename to storage/bdb/db/db_conv.c diff --git a/bdb/db/db_dispatch.c b/storage/bdb/db/db_dispatch.c similarity index 100% rename from bdb/db/db_dispatch.c rename to storage/bdb/db/db_dispatch.c diff --git a/bdb/db/db_dup.c b/storage/bdb/db/db_dup.c similarity index 100% rename from bdb/db/db_dup.c rename to storage/bdb/db/db_dup.c diff --git a/bdb/db/db_iface.c b/storage/bdb/db/db_iface.c similarity index 100% rename from bdb/db/db_iface.c rename to storage/bdb/db/db_iface.c diff --git a/bdb/db/db_join.c b/storage/bdb/db/db_join.c similarity index 100% rename from bdb/db/db_join.c rename to storage/bdb/db/db_join.c diff --git a/bdb/db/db_meta.c b/storage/bdb/db/db_meta.c similarity index 100% rename from bdb/db/db_meta.c rename to storage/bdb/db/db_meta.c diff --git a/bdb/db/db_method.c b/storage/bdb/db/db_method.c similarity index 100% rename from bdb/db/db_method.c rename to storage/bdb/db/db_method.c diff --git a/bdb/db/db_open.c b/storage/bdb/db/db_open.c similarity index 100% rename from bdb/db/db_open.c rename to storage/bdb/db/db_open.c diff --git a/bdb/db/db_overflow.c b/storage/bdb/db/db_overflow.c similarity index 100% rename from bdb/db/db_overflow.c rename to storage/bdb/db/db_overflow.c diff --git a/bdb/db/db_pr.c b/storage/bdb/db/db_pr.c similarity index 100% rename from bdb/db/db_pr.c rename to storage/bdb/db/db_pr.c diff --git a/bdb/db/db_rec.c b/storage/bdb/db/db_rec.c similarity index 100% rename from bdb/db/db_rec.c rename to storage/bdb/db/db_rec.c diff --git a/bdb/db/db_reclaim.c b/storage/bdb/db/db_reclaim.c similarity index 100% rename from bdb/db/db_reclaim.c rename to storage/bdb/db/db_reclaim.c diff --git a/bdb/db/db_remove.c b/storage/bdb/db/db_remove.c similarity index 100% rename from bdb/db/db_remove.c rename to storage/bdb/db/db_remove.c diff --git a/bdb/db/db_rename.c b/storage/bdb/db/db_rename.c similarity index 100% rename from bdb/db/db_rename.c rename to storage/bdb/db/db_rename.c diff --git a/bdb/db/db_ret.c b/storage/bdb/db/db_ret.c similarity index 100% rename from bdb/db/db_ret.c rename to storage/bdb/db/db_ret.c diff --git a/bdb/db/db_truncate.c b/storage/bdb/db/db_truncate.c similarity index 100% rename from bdb/db/db_truncate.c rename to storage/bdb/db/db_truncate.c diff --git a/bdb/db/db_upg.c b/storage/bdb/db/db_upg.c similarity index 100% rename from bdb/db/db_upg.c rename to storage/bdb/db/db_upg.c diff --git a/bdb/db/db_upg_opd.c b/storage/bdb/db/db_upg_opd.c similarity index 100% rename from bdb/db/db_upg_opd.c rename to storage/bdb/db/db_upg_opd.c diff --git a/bdb/db/db_vrfy.c b/storage/bdb/db/db_vrfy.c similarity index 100% rename from bdb/db/db_vrfy.c rename to storage/bdb/db/db_vrfy.c diff --git a/bdb/db/db_vrfyutil.c b/storage/bdb/db/db_vrfyutil.c similarity index 100% rename from bdb/db/db_vrfyutil.c rename to storage/bdb/db/db_vrfyutil.c diff --git a/bdb/db185/db185.c b/storage/bdb/db185/db185.c similarity index 100% rename from bdb/db185/db185.c rename to storage/bdb/db185/db185.c diff --git a/bdb/db185/db185_int.in b/storage/bdb/db185/db185_int.in similarity index 100% rename from bdb/db185/db185_int.in rename to storage/bdb/db185/db185_int.in diff --git a/bdb/db_archive/db_archive.c b/storage/bdb/db_archive/db_archive.c similarity index 100% rename from bdb/db_archive/db_archive.c rename to storage/bdb/db_archive/db_archive.c diff --git a/bdb/db_checkpoint/db_checkpoint.c b/storage/bdb/db_checkpoint/db_checkpoint.c similarity index 100% rename from bdb/db_checkpoint/db_checkpoint.c rename to storage/bdb/db_checkpoint/db_checkpoint.c diff --git a/bdb/db_deadlock/db_deadlock.c b/storage/bdb/db_deadlock/db_deadlock.c similarity index 100% rename from bdb/db_deadlock/db_deadlock.c rename to storage/bdb/db_deadlock/db_deadlock.c diff --git a/bdb/db_dump/db_dump.c b/storage/bdb/db_dump/db_dump.c similarity index 100% rename from bdb/db_dump/db_dump.c rename to storage/bdb/db_dump/db_dump.c diff --git a/bdb/db_dump185/db_dump185.c b/storage/bdb/db_dump185/db_dump185.c similarity index 100% rename from bdb/db_dump185/db_dump185.c rename to storage/bdb/db_dump185/db_dump185.c diff --git a/bdb/db_load/db_load.c b/storage/bdb/db_load/db_load.c similarity index 100% rename from bdb/db_load/db_load.c rename to storage/bdb/db_load/db_load.c diff --git a/bdb/db_printlog/README b/storage/bdb/db_printlog/README similarity index 100% rename from bdb/db_printlog/README rename to storage/bdb/db_printlog/README diff --git a/bdb/db_printlog/commit.awk b/storage/bdb/db_printlog/commit.awk similarity index 100% rename from bdb/db_printlog/commit.awk rename to storage/bdb/db_printlog/commit.awk diff --git a/bdb/db_printlog/count.awk b/storage/bdb/db_printlog/count.awk similarity index 100% rename from bdb/db_printlog/count.awk rename to storage/bdb/db_printlog/count.awk diff --git a/bdb/db_printlog/db_printlog.c b/storage/bdb/db_printlog/db_printlog.c similarity index 100% rename from bdb/db_printlog/db_printlog.c rename to storage/bdb/db_printlog/db_printlog.c diff --git a/bdb/db_printlog/dbname.awk b/storage/bdb/db_printlog/dbname.awk similarity index 100% rename from bdb/db_printlog/dbname.awk rename to storage/bdb/db_printlog/dbname.awk diff --git a/bdb/db_printlog/fileid.awk b/storage/bdb/db_printlog/fileid.awk similarity index 100% rename from bdb/db_printlog/fileid.awk rename to storage/bdb/db_printlog/fileid.awk diff --git a/bdb/db_printlog/logstat.awk b/storage/bdb/db_printlog/logstat.awk similarity index 100% rename from bdb/db_printlog/logstat.awk rename to storage/bdb/db_printlog/logstat.awk diff --git a/bdb/db_printlog/pgno.awk b/storage/bdb/db_printlog/pgno.awk similarity index 100% rename from bdb/db_printlog/pgno.awk rename to storage/bdb/db_printlog/pgno.awk diff --git a/bdb/db_printlog/range.awk b/storage/bdb/db_printlog/range.awk similarity index 100% rename from bdb/db_printlog/range.awk rename to storage/bdb/db_printlog/range.awk diff --git a/bdb/db_printlog/rectype.awk b/storage/bdb/db_printlog/rectype.awk similarity index 100% rename from bdb/db_printlog/rectype.awk rename to storage/bdb/db_printlog/rectype.awk diff --git a/bdb/db_printlog/status.awk b/storage/bdb/db_printlog/status.awk similarity index 100% rename from bdb/db_printlog/status.awk rename to storage/bdb/db_printlog/status.awk diff --git a/bdb/db_printlog/txn.awk b/storage/bdb/db_printlog/txn.awk similarity index 100% rename from bdb/db_printlog/txn.awk rename to storage/bdb/db_printlog/txn.awk diff --git a/bdb/db_recover/db_recover.c b/storage/bdb/db_recover/db_recover.c similarity index 100% rename from bdb/db_recover/db_recover.c rename to storage/bdb/db_recover/db_recover.c diff --git a/bdb/db_stat/db_stat.c b/storage/bdb/db_stat/db_stat.c similarity index 100% rename from bdb/db_stat/db_stat.c rename to storage/bdb/db_stat/db_stat.c diff --git a/bdb/db_upgrade/db_upgrade.c b/storage/bdb/db_upgrade/db_upgrade.c similarity index 100% rename from bdb/db_upgrade/db_upgrade.c rename to storage/bdb/db_upgrade/db_upgrade.c diff --git a/bdb/db_verify/db_verify.c b/storage/bdb/db_verify/db_verify.c similarity index 100% rename from bdb/db_verify/db_verify.c rename to storage/bdb/db_verify/db_verify.c diff --git a/bdb/dbinc/btree.h b/storage/bdb/dbinc/btree.h similarity index 100% rename from bdb/dbinc/btree.h rename to storage/bdb/dbinc/btree.h diff --git a/bdb/dbinc/crypto.h b/storage/bdb/dbinc/crypto.h similarity index 100% rename from bdb/dbinc/crypto.h rename to storage/bdb/dbinc/crypto.h diff --git a/bdb/dbinc/cxx_common.h b/storage/bdb/dbinc/cxx_common.h similarity index 100% rename from bdb/dbinc/cxx_common.h rename to storage/bdb/dbinc/cxx_common.h diff --git a/bdb/dbinc/cxx_except.h b/storage/bdb/dbinc/cxx_except.h similarity index 100% rename from bdb/dbinc/cxx_except.h rename to storage/bdb/dbinc/cxx_except.h diff --git a/bdb/dbinc/cxx_int.h b/storage/bdb/dbinc/cxx_int.h similarity index 100% rename from bdb/dbinc/cxx_int.h rename to storage/bdb/dbinc/cxx_int.h diff --git a/bdb/dbinc/db.in b/storage/bdb/dbinc/db.in similarity index 100% rename from bdb/dbinc/db.in rename to storage/bdb/dbinc/db.in diff --git a/bdb/dbinc/db_185.in b/storage/bdb/dbinc/db_185.in similarity index 100% rename from bdb/dbinc/db_185.in rename to storage/bdb/dbinc/db_185.in diff --git a/bdb/dbinc/db_am.h b/storage/bdb/dbinc/db_am.h similarity index 100% rename from bdb/dbinc/db_am.h rename to storage/bdb/dbinc/db_am.h diff --git a/bdb/dbinc/db_cxx.in b/storage/bdb/dbinc/db_cxx.in similarity index 100% rename from bdb/dbinc/db_cxx.in rename to storage/bdb/dbinc/db_cxx.in diff --git a/bdb/dbinc/db_dispatch.h b/storage/bdb/dbinc/db_dispatch.h similarity index 100% rename from bdb/dbinc/db_dispatch.h rename to storage/bdb/dbinc/db_dispatch.h diff --git a/bdb/dbinc/db_int.in b/storage/bdb/dbinc/db_int.in similarity index 100% rename from bdb/dbinc/db_int.in rename to storage/bdb/dbinc/db_int.in diff --git a/bdb/dbinc/db_join.h b/storage/bdb/dbinc/db_join.h similarity index 100% rename from bdb/dbinc/db_join.h rename to storage/bdb/dbinc/db_join.h diff --git a/bdb/dbinc/db_page.h b/storage/bdb/dbinc/db_page.h similarity index 100% rename from bdb/dbinc/db_page.h rename to storage/bdb/dbinc/db_page.h diff --git a/bdb/dbinc/db_server_int.h b/storage/bdb/dbinc/db_server_int.h similarity index 100% rename from bdb/dbinc/db_server_int.h rename to storage/bdb/dbinc/db_server_int.h diff --git a/bdb/dbinc/db_shash.h b/storage/bdb/dbinc/db_shash.h similarity index 100% rename from bdb/dbinc/db_shash.h rename to storage/bdb/dbinc/db_shash.h diff --git a/bdb/dbinc/db_swap.h b/storage/bdb/dbinc/db_swap.h similarity index 100% rename from bdb/dbinc/db_swap.h rename to storage/bdb/dbinc/db_swap.h diff --git a/bdb/dbinc/db_upgrade.h b/storage/bdb/dbinc/db_upgrade.h similarity index 100% rename from bdb/dbinc/db_upgrade.h rename to storage/bdb/dbinc/db_upgrade.h diff --git a/bdb/dbinc/db_verify.h b/storage/bdb/dbinc/db_verify.h similarity index 100% rename from bdb/dbinc/db_verify.h rename to storage/bdb/dbinc/db_verify.h diff --git a/bdb/dbinc/debug.h b/storage/bdb/dbinc/debug.h similarity index 100% rename from bdb/dbinc/debug.h rename to storage/bdb/dbinc/debug.h diff --git a/bdb/dbinc/fop.h b/storage/bdb/dbinc/fop.h similarity index 100% rename from bdb/dbinc/fop.h rename to storage/bdb/dbinc/fop.h diff --git a/bdb/dbinc/globals.h b/storage/bdb/dbinc/globals.h similarity index 100% rename from bdb/dbinc/globals.h rename to storage/bdb/dbinc/globals.h diff --git a/bdb/dbinc/hash.h b/storage/bdb/dbinc/hash.h similarity index 100% rename from bdb/dbinc/hash.h rename to storage/bdb/dbinc/hash.h diff --git a/bdb/dbinc/hmac.h b/storage/bdb/dbinc/hmac.h similarity index 100% rename from bdb/dbinc/hmac.h rename to storage/bdb/dbinc/hmac.h diff --git a/bdb/dbinc/lock.h b/storage/bdb/dbinc/lock.h similarity index 100% rename from bdb/dbinc/lock.h rename to storage/bdb/dbinc/lock.h diff --git a/bdb/dbinc/log.h b/storage/bdb/dbinc/log.h similarity index 100% rename from bdb/dbinc/log.h rename to storage/bdb/dbinc/log.h diff --git a/bdb/dbinc/mp.h b/storage/bdb/dbinc/mp.h similarity index 100% rename from bdb/dbinc/mp.h rename to storage/bdb/dbinc/mp.h diff --git a/bdb/dbinc/mutex.h b/storage/bdb/dbinc/mutex.h similarity index 100% rename from bdb/dbinc/mutex.h rename to storage/bdb/dbinc/mutex.h diff --git a/bdb/dbinc/os.h b/storage/bdb/dbinc/os.h similarity index 100% rename from bdb/dbinc/os.h rename to storage/bdb/dbinc/os.h diff --git a/bdb/dbinc/qam.h b/storage/bdb/dbinc/qam.h similarity index 100% rename from bdb/dbinc/qam.h rename to storage/bdb/dbinc/qam.h diff --git a/bdb/dbinc/queue.h b/storage/bdb/dbinc/queue.h similarity index 100% rename from bdb/dbinc/queue.h rename to storage/bdb/dbinc/queue.h diff --git a/bdb/dbinc/region.h b/storage/bdb/dbinc/region.h similarity index 100% rename from bdb/dbinc/region.h rename to storage/bdb/dbinc/region.h diff --git a/bdb/dbinc/rep.h b/storage/bdb/dbinc/rep.h similarity index 100% rename from bdb/dbinc/rep.h rename to storage/bdb/dbinc/rep.h diff --git a/bdb/dbinc/shqueue.h b/storage/bdb/dbinc/shqueue.h similarity index 100% rename from bdb/dbinc/shqueue.h rename to storage/bdb/dbinc/shqueue.h diff --git a/bdb/dbinc/tcl_db.h b/storage/bdb/dbinc/tcl_db.h similarity index 100% rename from bdb/dbinc/tcl_db.h rename to storage/bdb/dbinc/tcl_db.h diff --git a/bdb/dbinc/txn.h b/storage/bdb/dbinc/txn.h similarity index 100% rename from bdb/dbinc/txn.h rename to storage/bdb/dbinc/txn.h diff --git a/bdb/dbinc/xa.h b/storage/bdb/dbinc/xa.h similarity index 100% rename from bdb/dbinc/xa.h rename to storage/bdb/dbinc/xa.h diff --git a/bdb/dbm/dbm.c b/storage/bdb/dbm/dbm.c similarity index 100% rename from bdb/dbm/dbm.c rename to storage/bdb/dbm/dbm.c diff --git a/bdb/dbreg/dbreg.c b/storage/bdb/dbreg/dbreg.c similarity index 100% rename from bdb/dbreg/dbreg.c rename to storage/bdb/dbreg/dbreg.c diff --git a/bdb/dbreg/dbreg.src b/storage/bdb/dbreg/dbreg.src similarity index 100% rename from bdb/dbreg/dbreg.src rename to storage/bdb/dbreg/dbreg.src diff --git a/bdb/dbreg/dbreg_rec.c b/storage/bdb/dbreg/dbreg_rec.c similarity index 100% rename from bdb/dbreg/dbreg_rec.c rename to storage/bdb/dbreg/dbreg_rec.c diff --git a/bdb/dbreg/dbreg_util.c b/storage/bdb/dbreg/dbreg_util.c similarity index 100% rename from bdb/dbreg/dbreg_util.c rename to storage/bdb/dbreg/dbreg_util.c diff --git a/bdb/dist/Makefile.in b/storage/bdb/dist/Makefile.in similarity index 100% rename from bdb/dist/Makefile.in rename to storage/bdb/dist/Makefile.in diff --git a/bdb/dist/RELEASE b/storage/bdb/dist/RELEASE similarity index 100% rename from bdb/dist/RELEASE rename to storage/bdb/dist/RELEASE diff --git a/bdb/dist/aclocal/config.ac b/storage/bdb/dist/aclocal/config.ac similarity index 100% rename from bdb/dist/aclocal/config.ac rename to storage/bdb/dist/aclocal/config.ac diff --git a/bdb/dist/aclocal/cxx.ac b/storage/bdb/dist/aclocal/cxx.ac similarity index 100% rename from bdb/dist/aclocal/cxx.ac rename to storage/bdb/dist/aclocal/cxx.ac diff --git a/bdb/dist/aclocal/gcc.ac b/storage/bdb/dist/aclocal/gcc.ac similarity index 100% rename from bdb/dist/aclocal/gcc.ac rename to storage/bdb/dist/aclocal/gcc.ac diff --git a/bdb/dist/aclocal/libtool.ac b/storage/bdb/dist/aclocal/libtool.ac similarity index 100% rename from bdb/dist/aclocal/libtool.ac rename to storage/bdb/dist/aclocal/libtool.ac diff --git a/bdb/dist/aclocal/mutex.ac b/storage/bdb/dist/aclocal/mutex.ac similarity index 100% rename from bdb/dist/aclocal/mutex.ac rename to storage/bdb/dist/aclocal/mutex.ac diff --git a/bdb/dist/aclocal/options.ac b/storage/bdb/dist/aclocal/options.ac similarity index 100% rename from bdb/dist/aclocal/options.ac rename to storage/bdb/dist/aclocal/options.ac diff --git a/bdb/dist/aclocal/programs.ac b/storage/bdb/dist/aclocal/programs.ac similarity index 100% rename from bdb/dist/aclocal/programs.ac rename to storage/bdb/dist/aclocal/programs.ac diff --git a/bdb/dist/aclocal/sosuffix.ac b/storage/bdb/dist/aclocal/sosuffix.ac similarity index 100% rename from bdb/dist/aclocal/sosuffix.ac rename to storage/bdb/dist/aclocal/sosuffix.ac diff --git a/bdb/dist/aclocal/tcl.ac b/storage/bdb/dist/aclocal/tcl.ac similarity index 100% rename from bdb/dist/aclocal/tcl.ac rename to storage/bdb/dist/aclocal/tcl.ac diff --git a/bdb/dist/aclocal/types.ac b/storage/bdb/dist/aclocal/types.ac similarity index 100% rename from bdb/dist/aclocal/types.ac rename to storage/bdb/dist/aclocal/types.ac diff --git a/bdb/dist/aclocal_java/ac_check_class.ac b/storage/bdb/dist/aclocal_java/ac_check_class.ac similarity index 100% rename from bdb/dist/aclocal_java/ac_check_class.ac rename to storage/bdb/dist/aclocal_java/ac_check_class.ac diff --git a/bdb/dist/aclocal_java/ac_check_classpath.ac b/storage/bdb/dist/aclocal_java/ac_check_classpath.ac similarity index 100% rename from bdb/dist/aclocal_java/ac_check_classpath.ac rename to storage/bdb/dist/aclocal_java/ac_check_classpath.ac diff --git a/bdb/dist/aclocal_java/ac_check_junit.ac b/storage/bdb/dist/aclocal_java/ac_check_junit.ac similarity index 100% rename from bdb/dist/aclocal_java/ac_check_junit.ac rename to storage/bdb/dist/aclocal_java/ac_check_junit.ac diff --git a/bdb/dist/aclocal_java/ac_check_rqrd_class.ac b/storage/bdb/dist/aclocal_java/ac_check_rqrd_class.ac similarity index 100% rename from bdb/dist/aclocal_java/ac_check_rqrd_class.ac rename to storage/bdb/dist/aclocal_java/ac_check_rqrd_class.ac diff --git a/bdb/dist/aclocal_java/ac_java_options.ac b/storage/bdb/dist/aclocal_java/ac_java_options.ac similarity index 100% rename from bdb/dist/aclocal_java/ac_java_options.ac rename to storage/bdb/dist/aclocal_java/ac_java_options.ac diff --git a/bdb/dist/aclocal_java/ac_jni_include_dirs.ac b/storage/bdb/dist/aclocal_java/ac_jni_include_dirs.ac similarity index 100% rename from bdb/dist/aclocal_java/ac_jni_include_dirs.ac rename to storage/bdb/dist/aclocal_java/ac_jni_include_dirs.ac diff --git a/bdb/dist/aclocal_java/ac_prog_jar.ac b/storage/bdb/dist/aclocal_java/ac_prog_jar.ac similarity index 100% rename from bdb/dist/aclocal_java/ac_prog_jar.ac rename to storage/bdb/dist/aclocal_java/ac_prog_jar.ac diff --git a/bdb/dist/aclocal_java/ac_prog_java.ac b/storage/bdb/dist/aclocal_java/ac_prog_java.ac similarity index 100% rename from bdb/dist/aclocal_java/ac_prog_java.ac rename to storage/bdb/dist/aclocal_java/ac_prog_java.ac diff --git a/bdb/dist/aclocal_java/ac_prog_java_works.ac b/storage/bdb/dist/aclocal_java/ac_prog_java_works.ac similarity index 100% rename from bdb/dist/aclocal_java/ac_prog_java_works.ac rename to storage/bdb/dist/aclocal_java/ac_prog_java_works.ac diff --git a/bdb/dist/aclocal_java/ac_prog_javac.ac b/storage/bdb/dist/aclocal_java/ac_prog_javac.ac similarity index 100% rename from bdb/dist/aclocal_java/ac_prog_javac.ac rename to storage/bdb/dist/aclocal_java/ac_prog_javac.ac diff --git a/bdb/dist/aclocal_java/ac_prog_javac_works.ac b/storage/bdb/dist/aclocal_java/ac_prog_javac_works.ac similarity index 100% rename from bdb/dist/aclocal_java/ac_prog_javac_works.ac rename to storage/bdb/dist/aclocal_java/ac_prog_javac_works.ac diff --git a/bdb/dist/aclocal_java/ac_prog_javadoc.ac b/storage/bdb/dist/aclocal_java/ac_prog_javadoc.ac similarity index 100% rename from bdb/dist/aclocal_java/ac_prog_javadoc.ac rename to storage/bdb/dist/aclocal_java/ac_prog_javadoc.ac diff --git a/bdb/dist/aclocal_java/ac_prog_javah.ac b/storage/bdb/dist/aclocal_java/ac_prog_javah.ac similarity index 100% rename from bdb/dist/aclocal_java/ac_prog_javah.ac rename to storage/bdb/dist/aclocal_java/ac_prog_javah.ac diff --git a/bdb/dist/aclocal_java/ac_try_compile_java.ac b/storage/bdb/dist/aclocal_java/ac_try_compile_java.ac similarity index 100% rename from bdb/dist/aclocal_java/ac_try_compile_java.ac rename to storage/bdb/dist/aclocal_java/ac_try_compile_java.ac diff --git a/bdb/dist/aclocal_java/ac_try_run_javac.ac b/storage/bdb/dist/aclocal_java/ac_try_run_javac.ac similarity index 100% rename from bdb/dist/aclocal_java/ac_try_run_javac.ac rename to storage/bdb/dist/aclocal_java/ac_try_run_javac.ac diff --git a/bdb/dist/buildrel b/storage/bdb/dist/buildrel similarity index 100% rename from bdb/dist/buildrel rename to storage/bdb/dist/buildrel diff --git a/bdb/dist/config.guess b/storage/bdb/dist/config.guess similarity index 100% rename from bdb/dist/config.guess rename to storage/bdb/dist/config.guess diff --git a/bdb/dist/config.sub b/storage/bdb/dist/config.sub similarity index 100% rename from bdb/dist/config.sub rename to storage/bdb/dist/config.sub diff --git a/bdb/dist/configure.ac b/storage/bdb/dist/configure.ac similarity index 100% rename from bdb/dist/configure.ac rename to storage/bdb/dist/configure.ac diff --git a/bdb/dist/db.ecd.in b/storage/bdb/dist/db.ecd.in similarity index 100% rename from bdb/dist/db.ecd.in rename to storage/bdb/dist/db.ecd.in diff --git a/bdb/dist/db.spec.in b/storage/bdb/dist/db.spec.in similarity index 100% rename from bdb/dist/db.spec.in rename to storage/bdb/dist/db.spec.in diff --git a/bdb/dist/gen_inc.awk b/storage/bdb/dist/gen_inc.awk similarity index 100% rename from bdb/dist/gen_inc.awk rename to storage/bdb/dist/gen_inc.awk diff --git a/bdb/dist/gen_rec.awk b/storage/bdb/dist/gen_rec.awk similarity index 100% rename from bdb/dist/gen_rec.awk rename to storage/bdb/dist/gen_rec.awk diff --git a/bdb/dist/gen_rpc.awk b/storage/bdb/dist/gen_rpc.awk similarity index 100% rename from bdb/dist/gen_rpc.awk rename to storage/bdb/dist/gen_rpc.awk diff --git a/bdb/dist/install-sh b/storage/bdb/dist/install-sh similarity index 100% rename from bdb/dist/install-sh rename to storage/bdb/dist/install-sh diff --git a/bdb/dist/ltmain.sh b/storage/bdb/dist/ltmain.sh similarity index 100% rename from bdb/dist/ltmain.sh rename to storage/bdb/dist/ltmain.sh diff --git a/bdb/dist/pubdef.in b/storage/bdb/dist/pubdef.in similarity index 100% rename from bdb/dist/pubdef.in rename to storage/bdb/dist/pubdef.in diff --git a/bdb/dist/s_all b/storage/bdb/dist/s_all similarity index 100% rename from bdb/dist/s_all rename to storage/bdb/dist/s_all diff --git a/bdb/dist/s_config b/storage/bdb/dist/s_config similarity index 100% rename from bdb/dist/s_config rename to storage/bdb/dist/s_config diff --git a/bdb/dist/s_crypto b/storage/bdb/dist/s_crypto similarity index 100% rename from bdb/dist/s_crypto rename to storage/bdb/dist/s_crypto diff --git a/bdb/dist/s_dir b/storage/bdb/dist/s_dir similarity index 100% rename from bdb/dist/s_dir rename to storage/bdb/dist/s_dir diff --git a/bdb/dist/s_include b/storage/bdb/dist/s_include similarity index 100% rename from bdb/dist/s_include rename to storage/bdb/dist/s_include diff --git a/bdb/dist/s_java b/storage/bdb/dist/s_java similarity index 100% rename from bdb/dist/s_java rename to storage/bdb/dist/s_java diff --git a/bdb/dist/s_javah b/storage/bdb/dist/s_javah similarity index 100% rename from bdb/dist/s_javah rename to storage/bdb/dist/s_javah diff --git a/bdb/dist/s_perm b/storage/bdb/dist/s_perm similarity index 100% rename from bdb/dist/s_perm rename to storage/bdb/dist/s_perm diff --git a/bdb/dist/s_readme b/storage/bdb/dist/s_readme similarity index 100% rename from bdb/dist/s_readme rename to storage/bdb/dist/s_readme diff --git a/bdb/dist/s_recover b/storage/bdb/dist/s_recover similarity index 100% rename from bdb/dist/s_recover rename to storage/bdb/dist/s_recover diff --git a/bdb/dist/s_rpc b/storage/bdb/dist/s_rpc similarity index 100% rename from bdb/dist/s_rpc rename to storage/bdb/dist/s_rpc diff --git a/bdb/dist/s_symlink b/storage/bdb/dist/s_symlink similarity index 100% rename from bdb/dist/s_symlink rename to storage/bdb/dist/s_symlink diff --git a/bdb/dist/s_tags b/storage/bdb/dist/s_tags similarity index 100% rename from bdb/dist/s_tags rename to storage/bdb/dist/s_tags diff --git a/bdb/dist/s_test b/storage/bdb/dist/s_test similarity index 100% rename from bdb/dist/s_test rename to storage/bdb/dist/s_test diff --git a/bdb/dist/s_vxworks b/storage/bdb/dist/s_vxworks similarity index 100% rename from bdb/dist/s_vxworks rename to storage/bdb/dist/s_vxworks diff --git a/bdb/dist/s_win32 b/storage/bdb/dist/s_win32 similarity index 100% rename from bdb/dist/s_win32 rename to storage/bdb/dist/s_win32 diff --git a/bdb/dist/s_win32_dsp b/storage/bdb/dist/s_win32_dsp similarity index 100% rename from bdb/dist/s_win32_dsp rename to storage/bdb/dist/s_win32_dsp diff --git a/bdb/dist/srcfiles.in b/storage/bdb/dist/srcfiles.in similarity index 100% rename from bdb/dist/srcfiles.in rename to storage/bdb/dist/srcfiles.in diff --git a/bdb/dist/template/rec_ctemp b/storage/bdb/dist/template/rec_ctemp similarity index 100% rename from bdb/dist/template/rec_ctemp rename to storage/bdb/dist/template/rec_ctemp diff --git a/bdb/dist/vx_2.0/BerkeleyDB.wpj b/storage/bdb/dist/vx_2.0/BerkeleyDB.wpj similarity index 100% rename from bdb/dist/vx_2.0/BerkeleyDB.wpj rename to storage/bdb/dist/vx_2.0/BerkeleyDB.wpj diff --git a/bdb/dist/vx_2.0/wpj.in b/storage/bdb/dist/vx_2.0/wpj.in similarity index 100% rename from bdb/dist/vx_2.0/wpj.in rename to storage/bdb/dist/vx_2.0/wpj.in diff --git a/bdb/dist/vx_3.1/Makefile.custom b/storage/bdb/dist/vx_3.1/Makefile.custom similarity index 100% rename from bdb/dist/vx_3.1/Makefile.custom rename to storage/bdb/dist/vx_3.1/Makefile.custom diff --git a/bdb/dist/vx_3.1/cdf.1 b/storage/bdb/dist/vx_3.1/cdf.1 similarity index 100% rename from bdb/dist/vx_3.1/cdf.1 rename to storage/bdb/dist/vx_3.1/cdf.1 diff --git a/bdb/dist/vx_3.1/cdf.2 b/storage/bdb/dist/vx_3.1/cdf.2 similarity index 100% rename from bdb/dist/vx_3.1/cdf.2 rename to storage/bdb/dist/vx_3.1/cdf.2 diff --git a/bdb/dist/vx_3.1/cdf.3 b/storage/bdb/dist/vx_3.1/cdf.3 similarity index 100% rename from bdb/dist/vx_3.1/cdf.3 rename to storage/bdb/dist/vx_3.1/cdf.3 diff --git a/bdb/dist/vx_3.1/component.cdf b/storage/bdb/dist/vx_3.1/component.cdf similarity index 100% rename from bdb/dist/vx_3.1/component.cdf rename to storage/bdb/dist/vx_3.1/component.cdf diff --git a/bdb/dist/vx_3.1/component.wpj b/storage/bdb/dist/vx_3.1/component.wpj similarity index 100% rename from bdb/dist/vx_3.1/component.wpj rename to storage/bdb/dist/vx_3.1/component.wpj diff --git a/bdb/dist/vx_3.1/wpj.1 b/storage/bdb/dist/vx_3.1/wpj.1 similarity index 100% rename from bdb/dist/vx_3.1/wpj.1 rename to storage/bdb/dist/vx_3.1/wpj.1 diff --git a/bdb/dist/vx_3.1/wpj.2 b/storage/bdb/dist/vx_3.1/wpj.2 similarity index 100% rename from bdb/dist/vx_3.1/wpj.2 rename to storage/bdb/dist/vx_3.1/wpj.2 diff --git a/bdb/dist/vx_3.1/wpj.3 b/storage/bdb/dist/vx_3.1/wpj.3 similarity index 100% rename from bdb/dist/vx_3.1/wpj.3 rename to storage/bdb/dist/vx_3.1/wpj.3 diff --git a/bdb/dist/vx_3.1/wpj.4 b/storage/bdb/dist/vx_3.1/wpj.4 similarity index 100% rename from bdb/dist/vx_3.1/wpj.4 rename to storage/bdb/dist/vx_3.1/wpj.4 diff --git a/bdb/dist/vx_3.1/wpj.5 b/storage/bdb/dist/vx_3.1/wpj.5 similarity index 100% rename from bdb/dist/vx_3.1/wpj.5 rename to storage/bdb/dist/vx_3.1/wpj.5 diff --git a/bdb/dist/vx_buildcd b/storage/bdb/dist/vx_buildcd similarity index 100% rename from bdb/dist/vx_buildcd rename to storage/bdb/dist/vx_buildcd diff --git a/bdb/dist/vx_config.in b/storage/bdb/dist/vx_config.in similarity index 100% rename from bdb/dist/vx_config.in rename to storage/bdb/dist/vx_config.in diff --git a/bdb/dist/vx_setup/CONFIG.in b/storage/bdb/dist/vx_setup/CONFIG.in similarity index 100% rename from bdb/dist/vx_setup/CONFIG.in rename to storage/bdb/dist/vx_setup/CONFIG.in diff --git a/bdb/dist/vx_setup/LICENSE.TXT b/storage/bdb/dist/vx_setup/LICENSE.TXT similarity index 100% rename from bdb/dist/vx_setup/LICENSE.TXT rename to storage/bdb/dist/vx_setup/LICENSE.TXT diff --git a/bdb/dist/vx_setup/MESSAGES.TCL b/storage/bdb/dist/vx_setup/MESSAGES.TCL similarity index 100% rename from bdb/dist/vx_setup/MESSAGES.TCL rename to storage/bdb/dist/vx_setup/MESSAGES.TCL diff --git a/bdb/dist/vx_setup/README.in b/storage/bdb/dist/vx_setup/README.in similarity index 100% rename from bdb/dist/vx_setup/README.in rename to storage/bdb/dist/vx_setup/README.in diff --git a/bdb/dist/vx_setup/SETUP.BMP b/storage/bdb/dist/vx_setup/SETUP.BMP similarity index 100% rename from bdb/dist/vx_setup/SETUP.BMP rename to storage/bdb/dist/vx_setup/SETUP.BMP diff --git a/bdb/dist/vx_setup/vx_allfile.in b/storage/bdb/dist/vx_setup/vx_allfile.in similarity index 100% rename from bdb/dist/vx_setup/vx_allfile.in rename to storage/bdb/dist/vx_setup/vx_allfile.in diff --git a/bdb/dist/vx_setup/vx_demofile.in b/storage/bdb/dist/vx_setup/vx_demofile.in similarity index 100% rename from bdb/dist/vx_setup/vx_demofile.in rename to storage/bdb/dist/vx_setup/vx_demofile.in diff --git a/bdb/dist/vx_setup/vx_setup.in b/storage/bdb/dist/vx_setup/vx_setup.in similarity index 100% rename from bdb/dist/vx_setup/vx_setup.in rename to storage/bdb/dist/vx_setup/vx_setup.in diff --git a/bdb/dist/win_config.in b/storage/bdb/dist/win_config.in similarity index 100% rename from bdb/dist/win_config.in rename to storage/bdb/dist/win_config.in diff --git a/bdb/dist/win_exports.in b/storage/bdb/dist/win_exports.in similarity index 100% rename from bdb/dist/win_exports.in rename to storage/bdb/dist/win_exports.in diff --git a/bdb/env/db_salloc.c b/storage/bdb/env/db_salloc.c similarity index 100% rename from bdb/env/db_salloc.c rename to storage/bdb/env/db_salloc.c diff --git a/bdb/env/db_shash.c b/storage/bdb/env/db_shash.c similarity index 100% rename from bdb/env/db_shash.c rename to storage/bdb/env/db_shash.c diff --git a/bdb/env/env_file.c b/storage/bdb/env/env_file.c similarity index 100% rename from bdb/env/env_file.c rename to storage/bdb/env/env_file.c diff --git a/bdb/env/env_method.c b/storage/bdb/env/env_method.c similarity index 100% rename from bdb/env/env_method.c rename to storage/bdb/env/env_method.c diff --git a/bdb/env/env_method.c.b b/storage/bdb/env/env_method.c.b similarity index 100% rename from bdb/env/env_method.c.b rename to storage/bdb/env/env_method.c.b diff --git a/bdb/env/env_open.c b/storage/bdb/env/env_open.c similarity index 100% rename from bdb/env/env_open.c rename to storage/bdb/env/env_open.c diff --git a/bdb/env/env_recover.c b/storage/bdb/env/env_recover.c similarity index 100% rename from bdb/env/env_recover.c rename to storage/bdb/env/env_recover.c diff --git a/bdb/env/env_region.c b/storage/bdb/env/env_region.c similarity index 100% rename from bdb/env/env_region.c rename to storage/bdb/env/env_region.c diff --git a/bdb/fileops/fileops.src b/storage/bdb/fileops/fileops.src similarity index 100% rename from bdb/fileops/fileops.src rename to storage/bdb/fileops/fileops.src diff --git a/bdb/fileops/fop_basic.c b/storage/bdb/fileops/fop_basic.c similarity index 100% rename from bdb/fileops/fop_basic.c rename to storage/bdb/fileops/fop_basic.c diff --git a/bdb/fileops/fop_rec.c b/storage/bdb/fileops/fop_rec.c similarity index 100% rename from bdb/fileops/fop_rec.c rename to storage/bdb/fileops/fop_rec.c diff --git a/bdb/fileops/fop_util.c b/storage/bdb/fileops/fop_util.c similarity index 100% rename from bdb/fileops/fop_util.c rename to storage/bdb/fileops/fop_util.c diff --git a/bdb/hash/hash.c b/storage/bdb/hash/hash.c similarity index 100% rename from bdb/hash/hash.c rename to storage/bdb/hash/hash.c diff --git a/bdb/hash/hash.src b/storage/bdb/hash/hash.src similarity index 100% rename from bdb/hash/hash.src rename to storage/bdb/hash/hash.src diff --git a/bdb/hash/hash_conv.c b/storage/bdb/hash/hash_conv.c similarity index 100% rename from bdb/hash/hash_conv.c rename to storage/bdb/hash/hash_conv.c diff --git a/bdb/hash/hash_dup.c b/storage/bdb/hash/hash_dup.c similarity index 100% rename from bdb/hash/hash_dup.c rename to storage/bdb/hash/hash_dup.c diff --git a/bdb/hash/hash_func.c b/storage/bdb/hash/hash_func.c similarity index 100% rename from bdb/hash/hash_func.c rename to storage/bdb/hash/hash_func.c diff --git a/bdb/hash/hash_meta.c b/storage/bdb/hash/hash_meta.c similarity index 100% rename from bdb/hash/hash_meta.c rename to storage/bdb/hash/hash_meta.c diff --git a/bdb/hash/hash_method.c b/storage/bdb/hash/hash_method.c similarity index 100% rename from bdb/hash/hash_method.c rename to storage/bdb/hash/hash_method.c diff --git a/bdb/hash/hash_open.c b/storage/bdb/hash/hash_open.c similarity index 100% rename from bdb/hash/hash_open.c rename to storage/bdb/hash/hash_open.c diff --git a/bdb/hash/hash_page.c b/storage/bdb/hash/hash_page.c similarity index 100% rename from bdb/hash/hash_page.c rename to storage/bdb/hash/hash_page.c diff --git a/bdb/hash/hash_rec.c b/storage/bdb/hash/hash_rec.c similarity index 100% rename from bdb/hash/hash_rec.c rename to storage/bdb/hash/hash_rec.c diff --git a/bdb/hash/hash_reclaim.c b/storage/bdb/hash/hash_reclaim.c similarity index 100% rename from bdb/hash/hash_reclaim.c rename to storage/bdb/hash/hash_reclaim.c diff --git a/bdb/hash/hash_stat.c b/storage/bdb/hash/hash_stat.c similarity index 100% rename from bdb/hash/hash_stat.c rename to storage/bdb/hash/hash_stat.c diff --git a/bdb/hash/hash_upgrade.c b/storage/bdb/hash/hash_upgrade.c similarity index 100% rename from bdb/hash/hash_upgrade.c rename to storage/bdb/hash/hash_upgrade.c diff --git a/bdb/hash/hash_verify.c b/storage/bdb/hash/hash_verify.c similarity index 100% rename from bdb/hash/hash_verify.c rename to storage/bdb/hash/hash_verify.c diff --git a/bdb/hmac/hmac.c b/storage/bdb/hmac/hmac.c similarity index 100% rename from bdb/hmac/hmac.c rename to storage/bdb/hmac/hmac.c diff --git a/bdb/hmac/sha1.c b/storage/bdb/hmac/sha1.c similarity index 100% rename from bdb/hmac/sha1.c rename to storage/bdb/hmac/sha1.c diff --git a/bdb/hsearch/hsearch.c b/storage/bdb/hsearch/hsearch.c similarity index 100% rename from bdb/hsearch/hsearch.c rename to storage/bdb/hsearch/hsearch.c diff --git a/bdb/libdb_java/checkapi.prl b/storage/bdb/libdb_java/checkapi.prl similarity index 100% rename from bdb/libdb_java/checkapi.prl rename to storage/bdb/libdb_java/checkapi.prl diff --git a/bdb/libdb_java/com_sleepycat_db_Db.h b/storage/bdb/libdb_java/com_sleepycat_db_Db.h similarity index 100% rename from bdb/libdb_java/com_sleepycat_db_Db.h rename to storage/bdb/libdb_java/com_sleepycat_db_Db.h diff --git a/bdb/libdb_java/com_sleepycat_db_DbEnv.h b/storage/bdb/libdb_java/com_sleepycat_db_DbEnv.h similarity index 100% rename from bdb/libdb_java/com_sleepycat_db_DbEnv.h rename to storage/bdb/libdb_java/com_sleepycat_db_DbEnv.h diff --git a/bdb/libdb_java/com_sleepycat_db_DbLock.h b/storage/bdb/libdb_java/com_sleepycat_db_DbLock.h similarity index 100% rename from bdb/libdb_java/com_sleepycat_db_DbLock.h rename to storage/bdb/libdb_java/com_sleepycat_db_DbLock.h diff --git a/bdb/libdb_java/com_sleepycat_db_DbLogc.h b/storage/bdb/libdb_java/com_sleepycat_db_DbLogc.h similarity index 100% rename from bdb/libdb_java/com_sleepycat_db_DbLogc.h rename to storage/bdb/libdb_java/com_sleepycat_db_DbLogc.h diff --git a/bdb/libdb_java/com_sleepycat_db_DbLsn.h b/storage/bdb/libdb_java/com_sleepycat_db_DbLsn.h similarity index 100% rename from bdb/libdb_java/com_sleepycat_db_DbLsn.h rename to storage/bdb/libdb_java/com_sleepycat_db_DbLsn.h diff --git a/bdb/libdb_java/com_sleepycat_db_DbTxn.h b/storage/bdb/libdb_java/com_sleepycat_db_DbTxn.h similarity index 100% rename from bdb/libdb_java/com_sleepycat_db_DbTxn.h rename to storage/bdb/libdb_java/com_sleepycat_db_DbTxn.h diff --git a/bdb/libdb_java/com_sleepycat_db_DbUtil.h b/storage/bdb/libdb_java/com_sleepycat_db_DbUtil.h similarity index 100% rename from bdb/libdb_java/com_sleepycat_db_DbUtil.h rename to storage/bdb/libdb_java/com_sleepycat_db_DbUtil.h diff --git a/bdb/libdb_java/com_sleepycat_db_Dbc.h b/storage/bdb/libdb_java/com_sleepycat_db_Dbc.h similarity index 100% rename from bdb/libdb_java/com_sleepycat_db_Dbc.h rename to storage/bdb/libdb_java/com_sleepycat_db_Dbc.h diff --git a/bdb/libdb_java/com_sleepycat_db_Dbt.h b/storage/bdb/libdb_java/com_sleepycat_db_Dbt.h similarity index 100% rename from bdb/libdb_java/com_sleepycat_db_Dbt.h rename to storage/bdb/libdb_java/com_sleepycat_db_Dbt.h diff --git a/bdb/libdb_java/com_sleepycat_db_xa_DbXAResource.h b/storage/bdb/libdb_java/com_sleepycat_db_xa_DbXAResource.h similarity index 100% rename from bdb/libdb_java/com_sleepycat_db_xa_DbXAResource.h rename to storage/bdb/libdb_java/com_sleepycat_db_xa_DbXAResource.h diff --git a/bdb/libdb_java/java_Db.c b/storage/bdb/libdb_java/java_Db.c similarity index 100% rename from bdb/libdb_java/java_Db.c rename to storage/bdb/libdb_java/java_Db.c diff --git a/bdb/libdb_java/java_DbEnv.c b/storage/bdb/libdb_java/java_DbEnv.c similarity index 100% rename from bdb/libdb_java/java_DbEnv.c rename to storage/bdb/libdb_java/java_DbEnv.c diff --git a/bdb/libdb_java/java_DbLock.c b/storage/bdb/libdb_java/java_DbLock.c similarity index 100% rename from bdb/libdb_java/java_DbLock.c rename to storage/bdb/libdb_java/java_DbLock.c diff --git a/bdb/libdb_java/java_DbLogc.c b/storage/bdb/libdb_java/java_DbLogc.c similarity index 100% rename from bdb/libdb_java/java_DbLogc.c rename to storage/bdb/libdb_java/java_DbLogc.c diff --git a/bdb/libdb_java/java_DbLsn.c b/storage/bdb/libdb_java/java_DbLsn.c similarity index 100% rename from bdb/libdb_java/java_DbLsn.c rename to storage/bdb/libdb_java/java_DbLsn.c diff --git a/bdb/libdb_java/java_DbTxn.c b/storage/bdb/libdb_java/java_DbTxn.c similarity index 100% rename from bdb/libdb_java/java_DbTxn.c rename to storage/bdb/libdb_java/java_DbTxn.c diff --git a/bdb/libdb_java/java_DbUtil.c b/storage/bdb/libdb_java/java_DbUtil.c similarity index 100% rename from bdb/libdb_java/java_DbUtil.c rename to storage/bdb/libdb_java/java_DbUtil.c diff --git a/bdb/libdb_java/java_DbXAResource.c b/storage/bdb/libdb_java/java_DbXAResource.c similarity index 100% rename from bdb/libdb_java/java_DbXAResource.c rename to storage/bdb/libdb_java/java_DbXAResource.c diff --git a/bdb/libdb_java/java_Dbc.c b/storage/bdb/libdb_java/java_Dbc.c similarity index 100% rename from bdb/libdb_java/java_Dbc.c rename to storage/bdb/libdb_java/java_Dbc.c diff --git a/bdb/libdb_java/java_Dbt.c b/storage/bdb/libdb_java/java_Dbt.c similarity index 100% rename from bdb/libdb_java/java_Dbt.c rename to storage/bdb/libdb_java/java_Dbt.c diff --git a/bdb/libdb_java/java_info.c b/storage/bdb/libdb_java/java_info.c similarity index 100% rename from bdb/libdb_java/java_info.c rename to storage/bdb/libdb_java/java_info.c diff --git a/bdb/libdb_java/java_info.h b/storage/bdb/libdb_java/java_info.h similarity index 100% rename from bdb/libdb_java/java_info.h rename to storage/bdb/libdb_java/java_info.h diff --git a/bdb/libdb_java/java_locked.c b/storage/bdb/libdb_java/java_locked.c similarity index 100% rename from bdb/libdb_java/java_locked.c rename to storage/bdb/libdb_java/java_locked.c diff --git a/bdb/libdb_java/java_locked.h b/storage/bdb/libdb_java/java_locked.h similarity index 100% rename from bdb/libdb_java/java_locked.h rename to storage/bdb/libdb_java/java_locked.h diff --git a/bdb/libdb_java/java_util.c b/storage/bdb/libdb_java/java_util.c similarity index 100% rename from bdb/libdb_java/java_util.c rename to storage/bdb/libdb_java/java_util.c diff --git a/bdb/libdb_java/java_util.h b/storage/bdb/libdb_java/java_util.h similarity index 100% rename from bdb/libdb_java/java_util.h rename to storage/bdb/libdb_java/java_util.h diff --git a/bdb/lock/Design b/storage/bdb/lock/Design similarity index 100% rename from bdb/lock/Design rename to storage/bdb/lock/Design diff --git a/bdb/lock/lock.c b/storage/bdb/lock/lock.c similarity index 100% rename from bdb/lock/lock.c rename to storage/bdb/lock/lock.c diff --git a/bdb/lock/lock_deadlock.c b/storage/bdb/lock/lock_deadlock.c similarity index 100% rename from bdb/lock/lock_deadlock.c rename to storage/bdb/lock/lock_deadlock.c diff --git a/bdb/lock/lock_method.c b/storage/bdb/lock/lock_method.c similarity index 100% rename from bdb/lock/lock_method.c rename to storage/bdb/lock/lock_method.c diff --git a/bdb/lock/lock_region.c b/storage/bdb/lock/lock_region.c similarity index 100% rename from bdb/lock/lock_region.c rename to storage/bdb/lock/lock_region.c diff --git a/bdb/lock/lock_stat.c b/storage/bdb/lock/lock_stat.c similarity index 100% rename from bdb/lock/lock_stat.c rename to storage/bdb/lock/lock_stat.c diff --git a/bdb/lock/lock_util.c b/storage/bdb/lock/lock_util.c similarity index 100% rename from bdb/lock/lock_util.c rename to storage/bdb/lock/lock_util.c diff --git a/bdb/log/log.c b/storage/bdb/log/log.c similarity index 100% rename from bdb/log/log.c rename to storage/bdb/log/log.c diff --git a/bdb/log/log_archive.c b/storage/bdb/log/log_archive.c similarity index 100% rename from bdb/log/log_archive.c rename to storage/bdb/log/log_archive.c diff --git a/bdb/log/log_compare.c b/storage/bdb/log/log_compare.c similarity index 100% rename from bdb/log/log_compare.c rename to storage/bdb/log/log_compare.c diff --git a/bdb/log/log_get.c b/storage/bdb/log/log_get.c similarity index 100% rename from bdb/log/log_get.c rename to storage/bdb/log/log_get.c diff --git a/bdb/log/log_method.c b/storage/bdb/log/log_method.c similarity index 100% rename from bdb/log/log_method.c rename to storage/bdb/log/log_method.c diff --git a/bdb/log/log_put.c b/storage/bdb/log/log_put.c similarity index 100% rename from bdb/log/log_put.c rename to storage/bdb/log/log_put.c diff --git a/bdb/mp/mp_alloc.c b/storage/bdb/mp/mp_alloc.c similarity index 100% rename from bdb/mp/mp_alloc.c rename to storage/bdb/mp/mp_alloc.c diff --git a/bdb/mp/mp_bh.c b/storage/bdb/mp/mp_bh.c similarity index 100% rename from bdb/mp/mp_bh.c rename to storage/bdb/mp/mp_bh.c diff --git a/bdb/mp/mp_fget.c b/storage/bdb/mp/mp_fget.c similarity index 100% rename from bdb/mp/mp_fget.c rename to storage/bdb/mp/mp_fget.c diff --git a/bdb/mp/mp_fopen.c b/storage/bdb/mp/mp_fopen.c similarity index 100% rename from bdb/mp/mp_fopen.c rename to storage/bdb/mp/mp_fopen.c diff --git a/bdb/mp/mp_fput.c b/storage/bdb/mp/mp_fput.c similarity index 100% rename from bdb/mp/mp_fput.c rename to storage/bdb/mp/mp_fput.c diff --git a/bdb/mp/mp_fset.c b/storage/bdb/mp/mp_fset.c similarity index 100% rename from bdb/mp/mp_fset.c rename to storage/bdb/mp/mp_fset.c diff --git a/bdb/mp/mp_method.c b/storage/bdb/mp/mp_method.c similarity index 100% rename from bdb/mp/mp_method.c rename to storage/bdb/mp/mp_method.c diff --git a/bdb/mp/mp_region.c b/storage/bdb/mp/mp_region.c similarity index 100% rename from bdb/mp/mp_region.c rename to storage/bdb/mp/mp_region.c diff --git a/bdb/mp/mp_register.c b/storage/bdb/mp/mp_register.c similarity index 100% rename from bdb/mp/mp_register.c rename to storage/bdb/mp/mp_register.c diff --git a/bdb/mp/mp_stat.c b/storage/bdb/mp/mp_stat.c similarity index 100% rename from bdb/mp/mp_stat.c rename to storage/bdb/mp/mp_stat.c diff --git a/bdb/mp/mp_sync.c b/storage/bdb/mp/mp_sync.c similarity index 100% rename from bdb/mp/mp_sync.c rename to storage/bdb/mp/mp_sync.c diff --git a/bdb/mp/mp_trickle.c b/storage/bdb/mp/mp_trickle.c similarity index 100% rename from bdb/mp/mp_trickle.c rename to storage/bdb/mp/mp_trickle.c diff --git a/bdb/mutex/README b/storage/bdb/mutex/README similarity index 100% rename from bdb/mutex/README rename to storage/bdb/mutex/README diff --git a/bdb/mutex/mut_fcntl.c b/storage/bdb/mutex/mut_fcntl.c similarity index 100% rename from bdb/mutex/mut_fcntl.c rename to storage/bdb/mutex/mut_fcntl.c diff --git a/bdb/mutex/mut_pthread.c b/storage/bdb/mutex/mut_pthread.c similarity index 100% rename from bdb/mutex/mut_pthread.c rename to storage/bdb/mutex/mut_pthread.c diff --git a/bdb/mutex/mut_tas.c b/storage/bdb/mutex/mut_tas.c similarity index 100% rename from bdb/mutex/mut_tas.c rename to storage/bdb/mutex/mut_tas.c diff --git a/bdb/mutex/mut_win32.c b/storage/bdb/mutex/mut_win32.c similarity index 100% rename from bdb/mutex/mut_win32.c rename to storage/bdb/mutex/mut_win32.c diff --git a/bdb/mutex/mutex.c b/storage/bdb/mutex/mutex.c similarity index 100% rename from bdb/mutex/mutex.c rename to storage/bdb/mutex/mutex.c diff --git a/bdb/mutex/tm.c b/storage/bdb/mutex/tm.c similarity index 100% rename from bdb/mutex/tm.c rename to storage/bdb/mutex/tm.c diff --git a/bdb/mutex/uts4_cc.s b/storage/bdb/mutex/uts4_cc.s similarity index 100% rename from bdb/mutex/uts4_cc.s rename to storage/bdb/mutex/uts4_cc.s diff --git a/bdb/os/os_abs.c b/storage/bdb/os/os_abs.c similarity index 100% rename from bdb/os/os_abs.c rename to storage/bdb/os/os_abs.c diff --git a/bdb/os/os_alloc.c b/storage/bdb/os/os_alloc.c similarity index 100% rename from bdb/os/os_alloc.c rename to storage/bdb/os/os_alloc.c diff --git a/bdb/os/os_clock.c b/storage/bdb/os/os_clock.c similarity index 100% rename from bdb/os/os_clock.c rename to storage/bdb/os/os_clock.c diff --git a/bdb/os/os_config.c b/storage/bdb/os/os_config.c similarity index 100% rename from bdb/os/os_config.c rename to storage/bdb/os/os_config.c diff --git a/bdb/os/os_dir.c b/storage/bdb/os/os_dir.c similarity index 100% rename from bdb/os/os_dir.c rename to storage/bdb/os/os_dir.c diff --git a/bdb/os/os_errno.c b/storage/bdb/os/os_errno.c similarity index 100% rename from bdb/os/os_errno.c rename to storage/bdb/os/os_errno.c diff --git a/bdb/os/os_fid.c b/storage/bdb/os/os_fid.c similarity index 100% rename from bdb/os/os_fid.c rename to storage/bdb/os/os_fid.c diff --git a/bdb/os/os_fsync.c b/storage/bdb/os/os_fsync.c similarity index 100% rename from bdb/os/os_fsync.c rename to storage/bdb/os/os_fsync.c diff --git a/bdb/os/os_handle.c b/storage/bdb/os/os_handle.c similarity index 100% rename from bdb/os/os_handle.c rename to storage/bdb/os/os_handle.c diff --git a/bdb/os/os_id.c b/storage/bdb/os/os_id.c similarity index 100% rename from bdb/os/os_id.c rename to storage/bdb/os/os_id.c diff --git a/bdb/os/os_map.c b/storage/bdb/os/os_map.c similarity index 100% rename from bdb/os/os_map.c rename to storage/bdb/os/os_map.c diff --git a/bdb/os/os_method.c b/storage/bdb/os/os_method.c similarity index 100% rename from bdb/os/os_method.c rename to storage/bdb/os/os_method.c diff --git a/bdb/os/os_oflags.c b/storage/bdb/os/os_oflags.c similarity index 100% rename from bdb/os/os_oflags.c rename to storage/bdb/os/os_oflags.c diff --git a/bdb/os/os_open.c b/storage/bdb/os/os_open.c similarity index 100% rename from bdb/os/os_open.c rename to storage/bdb/os/os_open.c diff --git a/bdb/os/os_region.c b/storage/bdb/os/os_region.c similarity index 100% rename from bdb/os/os_region.c rename to storage/bdb/os/os_region.c diff --git a/bdb/os/os_rename.c b/storage/bdb/os/os_rename.c similarity index 100% rename from bdb/os/os_rename.c rename to storage/bdb/os/os_rename.c diff --git a/bdb/os/os_root.c b/storage/bdb/os/os_root.c similarity index 100% rename from bdb/os/os_root.c rename to storage/bdb/os/os_root.c diff --git a/bdb/os/os_rpath.c b/storage/bdb/os/os_rpath.c similarity index 100% rename from bdb/os/os_rpath.c rename to storage/bdb/os/os_rpath.c diff --git a/bdb/os/os_rw.c b/storage/bdb/os/os_rw.c similarity index 100% rename from bdb/os/os_rw.c rename to storage/bdb/os/os_rw.c diff --git a/bdb/os/os_seek.c b/storage/bdb/os/os_seek.c similarity index 100% rename from bdb/os/os_seek.c rename to storage/bdb/os/os_seek.c diff --git a/bdb/os/os_sleep.c b/storage/bdb/os/os_sleep.c similarity index 100% rename from bdb/os/os_sleep.c rename to storage/bdb/os/os_sleep.c diff --git a/bdb/os/os_spin.c b/storage/bdb/os/os_spin.c similarity index 100% rename from bdb/os/os_spin.c rename to storage/bdb/os/os_spin.c diff --git a/bdb/os/os_stat.c b/storage/bdb/os/os_stat.c similarity index 100% rename from bdb/os/os_stat.c rename to storage/bdb/os/os_stat.c diff --git a/bdb/os/os_tmpdir.c b/storage/bdb/os/os_tmpdir.c similarity index 100% rename from bdb/os/os_tmpdir.c rename to storage/bdb/os/os_tmpdir.c diff --git a/bdb/os/os_unlink.c b/storage/bdb/os/os_unlink.c similarity index 100% rename from bdb/os/os_unlink.c rename to storage/bdb/os/os_unlink.c diff --git a/bdb/os_vxworks/os_vx_abs.c b/storage/bdb/os_vxworks/os_vx_abs.c similarity index 100% rename from bdb/os_vxworks/os_vx_abs.c rename to storage/bdb/os_vxworks/os_vx_abs.c diff --git a/bdb/os_vxworks/os_vx_config.c b/storage/bdb/os_vxworks/os_vx_config.c similarity index 100% rename from bdb/os_vxworks/os_vx_config.c rename to storage/bdb/os_vxworks/os_vx_config.c diff --git a/bdb/os_vxworks/os_vx_map.c b/storage/bdb/os_vxworks/os_vx_map.c similarity index 100% rename from bdb/os_vxworks/os_vx_map.c rename to storage/bdb/os_vxworks/os_vx_map.c diff --git a/bdb/os_win32/os_abs.c b/storage/bdb/os_win32/os_abs.c similarity index 100% rename from bdb/os_win32/os_abs.c rename to storage/bdb/os_win32/os_abs.c diff --git a/bdb/os_win32/os_clock.c b/storage/bdb/os_win32/os_clock.c similarity index 100% rename from bdb/os_win32/os_clock.c rename to storage/bdb/os_win32/os_clock.c diff --git a/bdb/os_win32/os_config.c b/storage/bdb/os_win32/os_config.c similarity index 100% rename from bdb/os_win32/os_config.c rename to storage/bdb/os_win32/os_config.c diff --git a/bdb/os_win32/os_dir.c b/storage/bdb/os_win32/os_dir.c similarity index 100% rename from bdb/os_win32/os_dir.c rename to storage/bdb/os_win32/os_dir.c diff --git a/bdb/os_win32/os_errno.c b/storage/bdb/os_win32/os_errno.c similarity index 100% rename from bdb/os_win32/os_errno.c rename to storage/bdb/os_win32/os_errno.c diff --git a/bdb/os_win32/os_fid.c b/storage/bdb/os_win32/os_fid.c similarity index 100% rename from bdb/os_win32/os_fid.c rename to storage/bdb/os_win32/os_fid.c diff --git a/bdb/os_win32/os_fsync.c b/storage/bdb/os_win32/os_fsync.c similarity index 100% rename from bdb/os_win32/os_fsync.c rename to storage/bdb/os_win32/os_fsync.c diff --git a/bdb/os_win32/os_handle.c b/storage/bdb/os_win32/os_handle.c similarity index 100% rename from bdb/os_win32/os_handle.c rename to storage/bdb/os_win32/os_handle.c diff --git a/bdb/os_win32/os_map.c b/storage/bdb/os_win32/os_map.c similarity index 100% rename from bdb/os_win32/os_map.c rename to storage/bdb/os_win32/os_map.c diff --git a/bdb/os_win32/os_open.c b/storage/bdb/os_win32/os_open.c similarity index 100% rename from bdb/os_win32/os_open.c rename to storage/bdb/os_win32/os_open.c diff --git a/bdb/os_win32/os_rename.c b/storage/bdb/os_win32/os_rename.c similarity index 100% rename from bdb/os_win32/os_rename.c rename to storage/bdb/os_win32/os_rename.c diff --git a/bdb/os_win32/os_rw.c b/storage/bdb/os_win32/os_rw.c similarity index 100% rename from bdb/os_win32/os_rw.c rename to storage/bdb/os_win32/os_rw.c diff --git a/bdb/os_win32/os_seek.c b/storage/bdb/os_win32/os_seek.c similarity index 100% rename from bdb/os_win32/os_seek.c rename to storage/bdb/os_win32/os_seek.c diff --git a/bdb/os_win32/os_sleep.c b/storage/bdb/os_win32/os_sleep.c similarity index 100% rename from bdb/os_win32/os_sleep.c rename to storage/bdb/os_win32/os_sleep.c diff --git a/bdb/os_win32/os_spin.c b/storage/bdb/os_win32/os_spin.c similarity index 100% rename from bdb/os_win32/os_spin.c rename to storage/bdb/os_win32/os_spin.c diff --git a/bdb/os_win32/os_stat.c b/storage/bdb/os_win32/os_stat.c similarity index 100% rename from bdb/os_win32/os_stat.c rename to storage/bdb/os_win32/os_stat.c diff --git a/bdb/os_win32/os_type.c b/storage/bdb/os_win32/os_type.c similarity index 100% rename from bdb/os_win32/os_type.c rename to storage/bdb/os_win32/os_type.c diff --git a/bdb/perl/BerkeleyDB/BerkeleyDB.pm b/storage/bdb/perl/BerkeleyDB/BerkeleyDB.pm similarity index 100% rename from bdb/perl/BerkeleyDB/BerkeleyDB.pm rename to storage/bdb/perl/BerkeleyDB/BerkeleyDB.pm diff --git a/bdb/perl/BerkeleyDB/BerkeleyDB.pod b/storage/bdb/perl/BerkeleyDB/BerkeleyDB.pod similarity index 100% rename from bdb/perl/BerkeleyDB/BerkeleyDB.pod rename to storage/bdb/perl/BerkeleyDB/BerkeleyDB.pod diff --git a/bdb/perl/BerkeleyDB/BerkeleyDB.pod.P b/storage/bdb/perl/BerkeleyDB/BerkeleyDB.pod.P similarity index 100% rename from bdb/perl/BerkeleyDB/BerkeleyDB.pod.P rename to storage/bdb/perl/BerkeleyDB/BerkeleyDB.pod.P diff --git a/bdb/perl/BerkeleyDB/BerkeleyDB.xs b/storage/bdb/perl/BerkeleyDB/BerkeleyDB.xs similarity index 100% rename from bdb/perl/BerkeleyDB/BerkeleyDB.xs rename to storage/bdb/perl/BerkeleyDB/BerkeleyDB.xs diff --git a/bdb/perl/BerkeleyDB/BerkeleyDB/Btree.pm b/storage/bdb/perl/BerkeleyDB/BerkeleyDB/Btree.pm similarity index 100% rename from bdb/perl/BerkeleyDB/BerkeleyDB/Btree.pm rename to storage/bdb/perl/BerkeleyDB/BerkeleyDB/Btree.pm diff --git a/bdb/perl/BerkeleyDB/BerkeleyDB/Hash.pm b/storage/bdb/perl/BerkeleyDB/BerkeleyDB/Hash.pm similarity index 100% rename from bdb/perl/BerkeleyDB/BerkeleyDB/Hash.pm rename to storage/bdb/perl/BerkeleyDB/BerkeleyDB/Hash.pm diff --git a/bdb/perl/BerkeleyDB/Changes b/storage/bdb/perl/BerkeleyDB/Changes similarity index 100% rename from bdb/perl/BerkeleyDB/Changes rename to storage/bdb/perl/BerkeleyDB/Changes diff --git a/bdb/perl/BerkeleyDB/MANIFEST b/storage/bdb/perl/BerkeleyDB/MANIFEST similarity index 100% rename from bdb/perl/BerkeleyDB/MANIFEST rename to storage/bdb/perl/BerkeleyDB/MANIFEST diff --git a/bdb/perl/BerkeleyDB/Makefile.PL b/storage/bdb/perl/BerkeleyDB/Makefile.PL similarity index 100% rename from bdb/perl/BerkeleyDB/Makefile.PL rename to storage/bdb/perl/BerkeleyDB/Makefile.PL diff --git a/bdb/perl/BerkeleyDB/README b/storage/bdb/perl/BerkeleyDB/README similarity index 100% rename from bdb/perl/BerkeleyDB/README rename to storage/bdb/perl/BerkeleyDB/README diff --git a/bdb/perl/BerkeleyDB/Todo b/storage/bdb/perl/BerkeleyDB/Todo similarity index 100% rename from bdb/perl/BerkeleyDB/Todo rename to storage/bdb/perl/BerkeleyDB/Todo diff --git a/bdb/perl/BerkeleyDB/config.in b/storage/bdb/perl/BerkeleyDB/config.in similarity index 100% rename from bdb/perl/BerkeleyDB/config.in rename to storage/bdb/perl/BerkeleyDB/config.in diff --git a/bdb/perl/BerkeleyDB/constants.h b/storage/bdb/perl/BerkeleyDB/constants.h similarity index 100% rename from bdb/perl/BerkeleyDB/constants.h rename to storage/bdb/perl/BerkeleyDB/constants.h diff --git a/bdb/perl/BerkeleyDB/constants.xs b/storage/bdb/perl/BerkeleyDB/constants.xs similarity index 100% rename from bdb/perl/BerkeleyDB/constants.xs rename to storage/bdb/perl/BerkeleyDB/constants.xs diff --git a/bdb/perl/BerkeleyDB/dbinfo b/storage/bdb/perl/BerkeleyDB/dbinfo similarity index 100% rename from bdb/perl/BerkeleyDB/dbinfo rename to storage/bdb/perl/BerkeleyDB/dbinfo diff --git a/bdb/perl/BerkeleyDB/hints/dec_osf.pl b/storage/bdb/perl/BerkeleyDB/hints/dec_osf.pl similarity index 100% rename from bdb/perl/BerkeleyDB/hints/dec_osf.pl rename to storage/bdb/perl/BerkeleyDB/hints/dec_osf.pl diff --git a/bdb/perl/BerkeleyDB/hints/irix_6_5.pl b/storage/bdb/perl/BerkeleyDB/hints/irix_6_5.pl similarity index 100% rename from bdb/perl/BerkeleyDB/hints/irix_6_5.pl rename to storage/bdb/perl/BerkeleyDB/hints/irix_6_5.pl diff --git a/bdb/perl/BerkeleyDB/hints/solaris.pl b/storage/bdb/perl/BerkeleyDB/hints/solaris.pl similarity index 100% rename from bdb/perl/BerkeleyDB/hints/solaris.pl rename to storage/bdb/perl/BerkeleyDB/hints/solaris.pl diff --git a/bdb/perl/BerkeleyDB/mkconsts b/storage/bdb/perl/BerkeleyDB/mkconsts similarity index 100% rename from bdb/perl/BerkeleyDB/mkconsts rename to storage/bdb/perl/BerkeleyDB/mkconsts diff --git a/bdb/perl/BerkeleyDB/mkpod b/storage/bdb/perl/BerkeleyDB/mkpod similarity index 100% rename from bdb/perl/BerkeleyDB/mkpod rename to storage/bdb/perl/BerkeleyDB/mkpod diff --git a/bdb/perl/BerkeleyDB/patches/5.004 b/storage/bdb/perl/BerkeleyDB/patches/5.004 similarity index 100% rename from bdb/perl/BerkeleyDB/patches/5.004 rename to storage/bdb/perl/BerkeleyDB/patches/5.004 diff --git a/bdb/perl/BerkeleyDB/patches/5.004_01 b/storage/bdb/perl/BerkeleyDB/patches/5.004_01 similarity index 100% rename from bdb/perl/BerkeleyDB/patches/5.004_01 rename to storage/bdb/perl/BerkeleyDB/patches/5.004_01 diff --git a/bdb/perl/BerkeleyDB/patches/5.004_02 b/storage/bdb/perl/BerkeleyDB/patches/5.004_02 similarity index 100% rename from bdb/perl/BerkeleyDB/patches/5.004_02 rename to storage/bdb/perl/BerkeleyDB/patches/5.004_02 diff --git a/bdb/perl/BerkeleyDB/patches/5.004_03 b/storage/bdb/perl/BerkeleyDB/patches/5.004_03 similarity index 100% rename from bdb/perl/BerkeleyDB/patches/5.004_03 rename to storage/bdb/perl/BerkeleyDB/patches/5.004_03 diff --git a/bdb/perl/BerkeleyDB/patches/5.004_04 b/storage/bdb/perl/BerkeleyDB/patches/5.004_04 similarity index 100% rename from bdb/perl/BerkeleyDB/patches/5.004_04 rename to storage/bdb/perl/BerkeleyDB/patches/5.004_04 diff --git a/bdb/perl/BerkeleyDB/patches/5.004_05 b/storage/bdb/perl/BerkeleyDB/patches/5.004_05 similarity index 100% rename from bdb/perl/BerkeleyDB/patches/5.004_05 rename to storage/bdb/perl/BerkeleyDB/patches/5.004_05 diff --git a/bdb/perl/BerkeleyDB/patches/5.005 b/storage/bdb/perl/BerkeleyDB/patches/5.005 similarity index 100% rename from bdb/perl/BerkeleyDB/patches/5.005 rename to storage/bdb/perl/BerkeleyDB/patches/5.005 diff --git a/bdb/perl/BerkeleyDB/patches/5.005_01 b/storage/bdb/perl/BerkeleyDB/patches/5.005_01 similarity index 100% rename from bdb/perl/BerkeleyDB/patches/5.005_01 rename to storage/bdb/perl/BerkeleyDB/patches/5.005_01 diff --git a/bdb/perl/BerkeleyDB/patches/5.005_02 b/storage/bdb/perl/BerkeleyDB/patches/5.005_02 similarity index 100% rename from bdb/perl/BerkeleyDB/patches/5.005_02 rename to storage/bdb/perl/BerkeleyDB/patches/5.005_02 diff --git a/bdb/perl/BerkeleyDB/patches/5.005_03 b/storage/bdb/perl/BerkeleyDB/patches/5.005_03 similarity index 100% rename from bdb/perl/BerkeleyDB/patches/5.005_03 rename to storage/bdb/perl/BerkeleyDB/patches/5.005_03 diff --git a/bdb/perl/BerkeleyDB/patches/5.6.0 b/storage/bdb/perl/BerkeleyDB/patches/5.6.0 similarity index 100% rename from bdb/perl/BerkeleyDB/patches/5.6.0 rename to storage/bdb/perl/BerkeleyDB/patches/5.6.0 diff --git a/bdb/perl/BerkeleyDB/ppport.h b/storage/bdb/perl/BerkeleyDB/ppport.h similarity index 100% rename from bdb/perl/BerkeleyDB/ppport.h rename to storage/bdb/perl/BerkeleyDB/ppport.h diff --git a/bdb/perl/BerkeleyDB/scan b/storage/bdb/perl/BerkeleyDB/scan similarity index 100% rename from bdb/perl/BerkeleyDB/scan rename to storage/bdb/perl/BerkeleyDB/scan diff --git a/bdb/perl/BerkeleyDB/t/btree.t b/storage/bdb/perl/BerkeleyDB/t/btree.t similarity index 100% rename from bdb/perl/BerkeleyDB/t/btree.t rename to storage/bdb/perl/BerkeleyDB/t/btree.t diff --git a/bdb/perl/BerkeleyDB/t/destroy.t b/storage/bdb/perl/BerkeleyDB/t/destroy.t similarity index 100% rename from bdb/perl/BerkeleyDB/t/destroy.t rename to storage/bdb/perl/BerkeleyDB/t/destroy.t diff --git a/bdb/perl/BerkeleyDB/t/env.t b/storage/bdb/perl/BerkeleyDB/t/env.t similarity index 100% rename from bdb/perl/BerkeleyDB/t/env.t rename to storage/bdb/perl/BerkeleyDB/t/env.t diff --git a/bdb/perl/BerkeleyDB/t/examples.t b/storage/bdb/perl/BerkeleyDB/t/examples.t similarity index 100% rename from bdb/perl/BerkeleyDB/t/examples.t rename to storage/bdb/perl/BerkeleyDB/t/examples.t diff --git a/bdb/perl/BerkeleyDB/t/examples.t.T b/storage/bdb/perl/BerkeleyDB/t/examples.t.T similarity index 100% rename from bdb/perl/BerkeleyDB/t/examples.t.T rename to storage/bdb/perl/BerkeleyDB/t/examples.t.T diff --git a/bdb/perl/BerkeleyDB/t/examples3.t b/storage/bdb/perl/BerkeleyDB/t/examples3.t similarity index 100% rename from bdb/perl/BerkeleyDB/t/examples3.t rename to storage/bdb/perl/BerkeleyDB/t/examples3.t diff --git a/bdb/perl/BerkeleyDB/t/examples3.t.T b/storage/bdb/perl/BerkeleyDB/t/examples3.t.T similarity index 100% rename from bdb/perl/BerkeleyDB/t/examples3.t.T rename to storage/bdb/perl/BerkeleyDB/t/examples3.t.T diff --git a/bdb/perl/BerkeleyDB/t/filter.t b/storage/bdb/perl/BerkeleyDB/t/filter.t similarity index 100% rename from bdb/perl/BerkeleyDB/t/filter.t rename to storage/bdb/perl/BerkeleyDB/t/filter.t diff --git a/bdb/perl/BerkeleyDB/t/hash.t b/storage/bdb/perl/BerkeleyDB/t/hash.t similarity index 100% rename from bdb/perl/BerkeleyDB/t/hash.t rename to storage/bdb/perl/BerkeleyDB/t/hash.t diff --git a/bdb/perl/BerkeleyDB/t/join.t b/storage/bdb/perl/BerkeleyDB/t/join.t similarity index 100% rename from bdb/perl/BerkeleyDB/t/join.t rename to storage/bdb/perl/BerkeleyDB/t/join.t diff --git a/bdb/perl/BerkeleyDB/t/mldbm.t b/storage/bdb/perl/BerkeleyDB/t/mldbm.t similarity index 100% rename from bdb/perl/BerkeleyDB/t/mldbm.t rename to storage/bdb/perl/BerkeleyDB/t/mldbm.t diff --git a/bdb/perl/BerkeleyDB/t/queue.t b/storage/bdb/perl/BerkeleyDB/t/queue.t similarity index 100% rename from bdb/perl/BerkeleyDB/t/queue.t rename to storage/bdb/perl/BerkeleyDB/t/queue.t diff --git a/bdb/perl/BerkeleyDB/t/recno.t b/storage/bdb/perl/BerkeleyDB/t/recno.t similarity index 100% rename from bdb/perl/BerkeleyDB/t/recno.t rename to storage/bdb/perl/BerkeleyDB/t/recno.t diff --git a/bdb/perl/BerkeleyDB/t/strict.t b/storage/bdb/perl/BerkeleyDB/t/strict.t similarity index 100% rename from bdb/perl/BerkeleyDB/t/strict.t rename to storage/bdb/perl/BerkeleyDB/t/strict.t diff --git a/bdb/perl/BerkeleyDB/t/subdb.t b/storage/bdb/perl/BerkeleyDB/t/subdb.t similarity index 100% rename from bdb/perl/BerkeleyDB/t/subdb.t rename to storage/bdb/perl/BerkeleyDB/t/subdb.t diff --git a/bdb/perl/BerkeleyDB/t/txn.t b/storage/bdb/perl/BerkeleyDB/t/txn.t similarity index 100% rename from bdb/perl/BerkeleyDB/t/txn.t rename to storage/bdb/perl/BerkeleyDB/t/txn.t diff --git a/bdb/perl/BerkeleyDB/t/unknown.t b/storage/bdb/perl/BerkeleyDB/t/unknown.t similarity index 100% rename from bdb/perl/BerkeleyDB/t/unknown.t rename to storage/bdb/perl/BerkeleyDB/t/unknown.t diff --git a/bdb/perl/BerkeleyDB/t/util.pm b/storage/bdb/perl/BerkeleyDB/t/util.pm similarity index 100% rename from bdb/perl/BerkeleyDB/t/util.pm rename to storage/bdb/perl/BerkeleyDB/t/util.pm diff --git a/bdb/perl/BerkeleyDB/typemap b/storage/bdb/perl/BerkeleyDB/typemap similarity index 100% rename from bdb/perl/BerkeleyDB/typemap rename to storage/bdb/perl/BerkeleyDB/typemap diff --git a/bdb/perl/DB_File/Changes b/storage/bdb/perl/DB_File/Changes similarity index 100% rename from bdb/perl/DB_File/Changes rename to storage/bdb/perl/DB_File/Changes diff --git a/bdb/perl/DB_File/DB_File.pm b/storage/bdb/perl/DB_File/DB_File.pm similarity index 100% rename from bdb/perl/DB_File/DB_File.pm rename to storage/bdb/perl/DB_File/DB_File.pm diff --git a/bdb/perl/DB_File/DB_File.xs b/storage/bdb/perl/DB_File/DB_File.xs similarity index 100% rename from bdb/perl/DB_File/DB_File.xs rename to storage/bdb/perl/DB_File/DB_File.xs diff --git a/bdb/perl/DB_File/DB_File_BS b/storage/bdb/perl/DB_File/DB_File_BS similarity index 100% rename from bdb/perl/DB_File/DB_File_BS rename to storage/bdb/perl/DB_File/DB_File_BS diff --git a/bdb/perl/DB_File/MANIFEST b/storage/bdb/perl/DB_File/MANIFEST similarity index 100% rename from bdb/perl/DB_File/MANIFEST rename to storage/bdb/perl/DB_File/MANIFEST diff --git a/bdb/perl/DB_File/Makefile.PL b/storage/bdb/perl/DB_File/Makefile.PL similarity index 100% rename from bdb/perl/DB_File/Makefile.PL rename to storage/bdb/perl/DB_File/Makefile.PL diff --git a/bdb/perl/DB_File/README b/storage/bdb/perl/DB_File/README similarity index 100% rename from bdb/perl/DB_File/README rename to storage/bdb/perl/DB_File/README diff --git a/bdb/perl/DB_File/config.in b/storage/bdb/perl/DB_File/config.in similarity index 100% rename from bdb/perl/DB_File/config.in rename to storage/bdb/perl/DB_File/config.in diff --git a/bdb/perl/DB_File/dbinfo b/storage/bdb/perl/DB_File/dbinfo similarity index 100% rename from bdb/perl/DB_File/dbinfo rename to storage/bdb/perl/DB_File/dbinfo diff --git a/bdb/perl/DB_File/fallback.h b/storage/bdb/perl/DB_File/fallback.h similarity index 100% rename from bdb/perl/DB_File/fallback.h rename to storage/bdb/perl/DB_File/fallback.h diff --git a/bdb/perl/DB_File/fallback.xs b/storage/bdb/perl/DB_File/fallback.xs similarity index 100% rename from bdb/perl/DB_File/fallback.xs rename to storage/bdb/perl/DB_File/fallback.xs diff --git a/bdb/perl/DB_File/hints/dynixptx.pl b/storage/bdb/perl/DB_File/hints/dynixptx.pl similarity index 100% rename from bdb/perl/DB_File/hints/dynixptx.pl rename to storage/bdb/perl/DB_File/hints/dynixptx.pl diff --git a/bdb/perl/DB_File/hints/sco.pl b/storage/bdb/perl/DB_File/hints/sco.pl similarity index 100% rename from bdb/perl/DB_File/hints/sco.pl rename to storage/bdb/perl/DB_File/hints/sco.pl diff --git a/bdb/perl/DB_File/patches/5.004 b/storage/bdb/perl/DB_File/patches/5.004 similarity index 100% rename from bdb/perl/DB_File/patches/5.004 rename to storage/bdb/perl/DB_File/patches/5.004 diff --git a/bdb/perl/DB_File/patches/5.004_01 b/storage/bdb/perl/DB_File/patches/5.004_01 similarity index 100% rename from bdb/perl/DB_File/patches/5.004_01 rename to storage/bdb/perl/DB_File/patches/5.004_01 diff --git a/bdb/perl/DB_File/patches/5.004_02 b/storage/bdb/perl/DB_File/patches/5.004_02 similarity index 100% rename from bdb/perl/DB_File/patches/5.004_02 rename to storage/bdb/perl/DB_File/patches/5.004_02 diff --git a/bdb/perl/DB_File/patches/5.004_03 b/storage/bdb/perl/DB_File/patches/5.004_03 similarity index 100% rename from bdb/perl/DB_File/patches/5.004_03 rename to storage/bdb/perl/DB_File/patches/5.004_03 diff --git a/bdb/perl/DB_File/patches/5.004_04 b/storage/bdb/perl/DB_File/patches/5.004_04 similarity index 100% rename from bdb/perl/DB_File/patches/5.004_04 rename to storage/bdb/perl/DB_File/patches/5.004_04 diff --git a/bdb/perl/DB_File/patches/5.004_05 b/storage/bdb/perl/DB_File/patches/5.004_05 similarity index 100% rename from bdb/perl/DB_File/patches/5.004_05 rename to storage/bdb/perl/DB_File/patches/5.004_05 diff --git a/bdb/perl/DB_File/patches/5.005 b/storage/bdb/perl/DB_File/patches/5.005 similarity index 100% rename from bdb/perl/DB_File/patches/5.005 rename to storage/bdb/perl/DB_File/patches/5.005 diff --git a/bdb/perl/DB_File/patches/5.005_01 b/storage/bdb/perl/DB_File/patches/5.005_01 similarity index 100% rename from bdb/perl/DB_File/patches/5.005_01 rename to storage/bdb/perl/DB_File/patches/5.005_01 diff --git a/bdb/perl/DB_File/patches/5.005_02 b/storage/bdb/perl/DB_File/patches/5.005_02 similarity index 100% rename from bdb/perl/DB_File/patches/5.005_02 rename to storage/bdb/perl/DB_File/patches/5.005_02 diff --git a/bdb/perl/DB_File/patches/5.005_03 b/storage/bdb/perl/DB_File/patches/5.005_03 similarity index 100% rename from bdb/perl/DB_File/patches/5.005_03 rename to storage/bdb/perl/DB_File/patches/5.005_03 diff --git a/bdb/perl/DB_File/patches/5.6.0 b/storage/bdb/perl/DB_File/patches/5.6.0 similarity index 100% rename from bdb/perl/DB_File/patches/5.6.0 rename to storage/bdb/perl/DB_File/patches/5.6.0 diff --git a/bdb/perl/DB_File/ppport.h b/storage/bdb/perl/DB_File/ppport.h similarity index 100% rename from bdb/perl/DB_File/ppport.h rename to storage/bdb/perl/DB_File/ppport.h diff --git a/bdb/perl/DB_File/t/db-btree.t b/storage/bdb/perl/DB_File/t/db-btree.t similarity index 100% rename from bdb/perl/DB_File/t/db-btree.t rename to storage/bdb/perl/DB_File/t/db-btree.t diff --git a/bdb/perl/DB_File/t/db-hash.t b/storage/bdb/perl/DB_File/t/db-hash.t similarity index 100% rename from bdb/perl/DB_File/t/db-hash.t rename to storage/bdb/perl/DB_File/t/db-hash.t diff --git a/bdb/perl/DB_File/t/db-recno.t b/storage/bdb/perl/DB_File/t/db-recno.t similarity index 100% rename from bdb/perl/DB_File/t/db-recno.t rename to storage/bdb/perl/DB_File/t/db-recno.t diff --git a/bdb/perl/DB_File/typemap b/storage/bdb/perl/DB_File/typemap similarity index 100% rename from bdb/perl/DB_File/typemap rename to storage/bdb/perl/DB_File/typemap diff --git a/bdb/perl/DB_File/version.c b/storage/bdb/perl/DB_File/version.c similarity index 100% rename from bdb/perl/DB_File/version.c rename to storage/bdb/perl/DB_File/version.c diff --git a/bdb/qam/qam.c b/storage/bdb/qam/qam.c similarity index 100% rename from bdb/qam/qam.c rename to storage/bdb/qam/qam.c diff --git a/bdb/qam/qam.src b/storage/bdb/qam/qam.src similarity index 100% rename from bdb/qam/qam.src rename to storage/bdb/qam/qam.src diff --git a/bdb/qam/qam_conv.c b/storage/bdb/qam/qam_conv.c similarity index 100% rename from bdb/qam/qam_conv.c rename to storage/bdb/qam/qam_conv.c diff --git a/bdb/qam/qam_files.c b/storage/bdb/qam/qam_files.c similarity index 100% rename from bdb/qam/qam_files.c rename to storage/bdb/qam/qam_files.c diff --git a/bdb/qam/qam_method.c b/storage/bdb/qam/qam_method.c similarity index 100% rename from bdb/qam/qam_method.c rename to storage/bdb/qam/qam_method.c diff --git a/bdb/qam/qam_open.c b/storage/bdb/qam/qam_open.c similarity index 100% rename from bdb/qam/qam_open.c rename to storage/bdb/qam/qam_open.c diff --git a/bdb/qam/qam_rec.c b/storage/bdb/qam/qam_rec.c similarity index 100% rename from bdb/qam/qam_rec.c rename to storage/bdb/qam/qam_rec.c diff --git a/bdb/qam/qam_stat.c b/storage/bdb/qam/qam_stat.c similarity index 100% rename from bdb/qam/qam_stat.c rename to storage/bdb/qam/qam_stat.c diff --git a/bdb/qam/qam_upgrade.c b/storage/bdb/qam/qam_upgrade.c similarity index 100% rename from bdb/qam/qam_upgrade.c rename to storage/bdb/qam/qam_upgrade.c diff --git a/bdb/qam/qam_verify.c b/storage/bdb/qam/qam_verify.c similarity index 100% rename from bdb/qam/qam_verify.c rename to storage/bdb/qam/qam_verify.c diff --git a/bdb/rep/rep_method.c b/storage/bdb/rep/rep_method.c similarity index 100% rename from bdb/rep/rep_method.c rename to storage/bdb/rep/rep_method.c diff --git a/bdb/rep/rep_record.c b/storage/bdb/rep/rep_record.c similarity index 100% rename from bdb/rep/rep_record.c rename to storage/bdb/rep/rep_record.c diff --git a/bdb/rep/rep_region.c b/storage/bdb/rep/rep_region.c similarity index 100% rename from bdb/rep/rep_region.c rename to storage/bdb/rep/rep_region.c diff --git a/bdb/rep/rep_util.c b/storage/bdb/rep/rep_util.c similarity index 100% rename from bdb/rep/rep_util.c rename to storage/bdb/rep/rep_util.c diff --git a/bdb/rpc_client/client.c b/storage/bdb/rpc_client/client.c similarity index 100% rename from bdb/rpc_client/client.c rename to storage/bdb/rpc_client/client.c diff --git a/bdb/rpc_client/gen_client_ret.c b/storage/bdb/rpc_client/gen_client_ret.c similarity index 100% rename from bdb/rpc_client/gen_client_ret.c rename to storage/bdb/rpc_client/gen_client_ret.c diff --git a/bdb/rpc_server/c/db_server_proc.c.in b/storage/bdb/rpc_server/c/db_server_proc.c.in similarity index 100% rename from bdb/rpc_server/c/db_server_proc.c.in rename to storage/bdb/rpc_server/c/db_server_proc.c.in diff --git a/bdb/rpc_server/c/db_server_util.c b/storage/bdb/rpc_server/c/db_server_util.c similarity index 100% rename from bdb/rpc_server/c/db_server_util.c rename to storage/bdb/rpc_server/c/db_server_util.c diff --git a/bdb/rpc_server/clsrv.html b/storage/bdb/rpc_server/clsrv.html similarity index 100% rename from bdb/rpc_server/clsrv.html rename to storage/bdb/rpc_server/clsrv.html diff --git a/bdb/rpc_server/cxx/db_server_cxxproc.cpp b/storage/bdb/rpc_server/cxx/db_server_cxxproc.cpp similarity index 100% rename from bdb/rpc_server/cxx/db_server_cxxproc.cpp rename to storage/bdb/rpc_server/cxx/db_server_cxxproc.cpp diff --git a/bdb/rpc_server/cxx/db_server_cxxutil.cpp b/storage/bdb/rpc_server/cxx/db_server_cxxutil.cpp similarity index 100% rename from bdb/rpc_server/cxx/db_server_cxxutil.cpp rename to storage/bdb/rpc_server/cxx/db_server_cxxutil.cpp diff --git a/bdb/rpc_server/java/DbDispatcher.java b/storage/bdb/rpc_server/java/DbDispatcher.java similarity index 100% rename from bdb/rpc_server/java/DbDispatcher.java rename to storage/bdb/rpc_server/java/DbDispatcher.java diff --git a/bdb/rpc_server/java/DbServer.java b/storage/bdb/rpc_server/java/DbServer.java similarity index 100% rename from bdb/rpc_server/java/DbServer.java rename to storage/bdb/rpc_server/java/DbServer.java diff --git a/bdb/rpc_server/java/FreeList.java b/storage/bdb/rpc_server/java/FreeList.java similarity index 100% rename from bdb/rpc_server/java/FreeList.java rename to storage/bdb/rpc_server/java/FreeList.java diff --git a/bdb/rpc_server/java/LocalIterator.java b/storage/bdb/rpc_server/java/LocalIterator.java similarity index 100% rename from bdb/rpc_server/java/LocalIterator.java rename to storage/bdb/rpc_server/java/LocalIterator.java diff --git a/bdb/rpc_server/java/README b/storage/bdb/rpc_server/java/README similarity index 100% rename from bdb/rpc_server/java/README rename to storage/bdb/rpc_server/java/README diff --git a/bdb/rpc_server/java/RpcDb.java b/storage/bdb/rpc_server/java/RpcDb.java similarity index 100% rename from bdb/rpc_server/java/RpcDb.java rename to storage/bdb/rpc_server/java/RpcDb.java diff --git a/bdb/rpc_server/java/RpcDbEnv.java b/storage/bdb/rpc_server/java/RpcDbEnv.java similarity index 100% rename from bdb/rpc_server/java/RpcDbEnv.java rename to storage/bdb/rpc_server/java/RpcDbEnv.java diff --git a/bdb/rpc_server/java/RpcDbTxn.java b/storage/bdb/rpc_server/java/RpcDbTxn.java similarity index 100% rename from bdb/rpc_server/java/RpcDbTxn.java rename to storage/bdb/rpc_server/java/RpcDbTxn.java diff --git a/bdb/rpc_server/java/RpcDbc.java b/storage/bdb/rpc_server/java/RpcDbc.java similarity index 100% rename from bdb/rpc_server/java/RpcDbc.java rename to storage/bdb/rpc_server/java/RpcDbc.java diff --git a/bdb/rpc_server/java/Timer.java b/storage/bdb/rpc_server/java/Timer.java similarity index 100% rename from bdb/rpc_server/java/Timer.java rename to storage/bdb/rpc_server/java/Timer.java diff --git a/bdb/rpc_server/java/gen/DbServerStub.java b/storage/bdb/rpc_server/java/gen/DbServerStub.java similarity index 100% rename from bdb/rpc_server/java/gen/DbServerStub.java rename to storage/bdb/rpc_server/java/gen/DbServerStub.java diff --git a/bdb/rpc_server/java/gen/__db_associate_msg.java b/storage/bdb/rpc_server/java/gen/__db_associate_msg.java similarity index 100% rename from bdb/rpc_server/java/gen/__db_associate_msg.java rename to storage/bdb/rpc_server/java/gen/__db_associate_msg.java diff --git a/bdb/rpc_server/java/gen/__db_associate_reply.java b/storage/bdb/rpc_server/java/gen/__db_associate_reply.java similarity index 100% rename from bdb/rpc_server/java/gen/__db_associate_reply.java rename to storage/bdb/rpc_server/java/gen/__db_associate_reply.java diff --git a/bdb/rpc_server/java/gen/__db_bt_maxkey_msg.java b/storage/bdb/rpc_server/java/gen/__db_bt_maxkey_msg.java similarity index 100% rename from bdb/rpc_server/java/gen/__db_bt_maxkey_msg.java rename to storage/bdb/rpc_server/java/gen/__db_bt_maxkey_msg.java diff --git a/bdb/rpc_server/java/gen/__db_bt_maxkey_reply.java b/storage/bdb/rpc_server/java/gen/__db_bt_maxkey_reply.java similarity index 100% rename from bdb/rpc_server/java/gen/__db_bt_maxkey_reply.java rename to storage/bdb/rpc_server/java/gen/__db_bt_maxkey_reply.java diff --git a/bdb/rpc_server/java/gen/__db_bt_minkey_msg.java b/storage/bdb/rpc_server/java/gen/__db_bt_minkey_msg.java similarity index 100% rename from bdb/rpc_server/java/gen/__db_bt_minkey_msg.java rename to storage/bdb/rpc_server/java/gen/__db_bt_minkey_msg.java diff --git a/bdb/rpc_server/java/gen/__db_bt_minkey_reply.java b/storage/bdb/rpc_server/java/gen/__db_bt_minkey_reply.java similarity index 100% rename from bdb/rpc_server/java/gen/__db_bt_minkey_reply.java rename to storage/bdb/rpc_server/java/gen/__db_bt_minkey_reply.java diff --git a/bdb/rpc_server/java/gen/__db_close_msg.java b/storage/bdb/rpc_server/java/gen/__db_close_msg.java similarity index 100% rename from bdb/rpc_server/java/gen/__db_close_msg.java rename to storage/bdb/rpc_server/java/gen/__db_close_msg.java diff --git a/bdb/rpc_server/java/gen/__db_close_reply.java b/storage/bdb/rpc_server/java/gen/__db_close_reply.java similarity index 100% rename from bdb/rpc_server/java/gen/__db_close_reply.java rename to storage/bdb/rpc_server/java/gen/__db_close_reply.java diff --git a/bdb/rpc_server/java/gen/__db_create_msg.java b/storage/bdb/rpc_server/java/gen/__db_create_msg.java similarity index 100% rename from bdb/rpc_server/java/gen/__db_create_msg.java rename to storage/bdb/rpc_server/java/gen/__db_create_msg.java diff --git a/bdb/rpc_server/java/gen/__db_create_reply.java b/storage/bdb/rpc_server/java/gen/__db_create_reply.java similarity index 100% rename from bdb/rpc_server/java/gen/__db_create_reply.java rename to storage/bdb/rpc_server/java/gen/__db_create_reply.java diff --git a/bdb/rpc_server/java/gen/__db_cursor_msg.java b/storage/bdb/rpc_server/java/gen/__db_cursor_msg.java similarity index 100% rename from bdb/rpc_server/java/gen/__db_cursor_msg.java rename to storage/bdb/rpc_server/java/gen/__db_cursor_msg.java diff --git a/bdb/rpc_server/java/gen/__db_cursor_reply.java b/storage/bdb/rpc_server/java/gen/__db_cursor_reply.java similarity index 100% rename from bdb/rpc_server/java/gen/__db_cursor_reply.java rename to storage/bdb/rpc_server/java/gen/__db_cursor_reply.java diff --git a/bdb/rpc_server/java/gen/__db_del_msg.java b/storage/bdb/rpc_server/java/gen/__db_del_msg.java similarity index 100% rename from bdb/rpc_server/java/gen/__db_del_msg.java rename to storage/bdb/rpc_server/java/gen/__db_del_msg.java diff --git a/bdb/rpc_server/java/gen/__db_del_reply.java b/storage/bdb/rpc_server/java/gen/__db_del_reply.java similarity index 100% rename from bdb/rpc_server/java/gen/__db_del_reply.java rename to storage/bdb/rpc_server/java/gen/__db_del_reply.java diff --git a/bdb/rpc_server/java/gen/__db_encrypt_msg.java b/storage/bdb/rpc_server/java/gen/__db_encrypt_msg.java similarity index 100% rename from bdb/rpc_server/java/gen/__db_encrypt_msg.java rename to storage/bdb/rpc_server/java/gen/__db_encrypt_msg.java diff --git a/bdb/rpc_server/java/gen/__db_encrypt_reply.java b/storage/bdb/rpc_server/java/gen/__db_encrypt_reply.java similarity index 100% rename from bdb/rpc_server/java/gen/__db_encrypt_reply.java rename to storage/bdb/rpc_server/java/gen/__db_encrypt_reply.java diff --git a/bdb/rpc_server/java/gen/__db_extentsize_msg.java b/storage/bdb/rpc_server/java/gen/__db_extentsize_msg.java similarity index 100% rename from bdb/rpc_server/java/gen/__db_extentsize_msg.java rename to storage/bdb/rpc_server/java/gen/__db_extentsize_msg.java diff --git a/bdb/rpc_server/java/gen/__db_extentsize_reply.java b/storage/bdb/rpc_server/java/gen/__db_extentsize_reply.java similarity index 100% rename from bdb/rpc_server/java/gen/__db_extentsize_reply.java rename to storage/bdb/rpc_server/java/gen/__db_extentsize_reply.java diff --git a/bdb/rpc_server/java/gen/__db_flags_msg.java b/storage/bdb/rpc_server/java/gen/__db_flags_msg.java similarity index 100% rename from bdb/rpc_server/java/gen/__db_flags_msg.java rename to storage/bdb/rpc_server/java/gen/__db_flags_msg.java diff --git a/bdb/rpc_server/java/gen/__db_flags_reply.java b/storage/bdb/rpc_server/java/gen/__db_flags_reply.java similarity index 100% rename from bdb/rpc_server/java/gen/__db_flags_reply.java rename to storage/bdb/rpc_server/java/gen/__db_flags_reply.java diff --git a/bdb/rpc_server/java/gen/__db_get_msg.java b/storage/bdb/rpc_server/java/gen/__db_get_msg.java similarity index 100% rename from bdb/rpc_server/java/gen/__db_get_msg.java rename to storage/bdb/rpc_server/java/gen/__db_get_msg.java diff --git a/bdb/rpc_server/java/gen/__db_get_reply.java b/storage/bdb/rpc_server/java/gen/__db_get_reply.java similarity index 100% rename from bdb/rpc_server/java/gen/__db_get_reply.java rename to storage/bdb/rpc_server/java/gen/__db_get_reply.java diff --git a/bdb/rpc_server/java/gen/__db_h_ffactor_msg.java b/storage/bdb/rpc_server/java/gen/__db_h_ffactor_msg.java similarity index 100% rename from bdb/rpc_server/java/gen/__db_h_ffactor_msg.java rename to storage/bdb/rpc_server/java/gen/__db_h_ffactor_msg.java diff --git a/bdb/rpc_server/java/gen/__db_h_ffactor_reply.java b/storage/bdb/rpc_server/java/gen/__db_h_ffactor_reply.java similarity index 100% rename from bdb/rpc_server/java/gen/__db_h_ffactor_reply.java rename to storage/bdb/rpc_server/java/gen/__db_h_ffactor_reply.java diff --git a/bdb/rpc_server/java/gen/__db_h_nelem_msg.java b/storage/bdb/rpc_server/java/gen/__db_h_nelem_msg.java similarity index 100% rename from bdb/rpc_server/java/gen/__db_h_nelem_msg.java rename to storage/bdb/rpc_server/java/gen/__db_h_nelem_msg.java diff --git a/bdb/rpc_server/java/gen/__db_h_nelem_reply.java b/storage/bdb/rpc_server/java/gen/__db_h_nelem_reply.java similarity index 100% rename from bdb/rpc_server/java/gen/__db_h_nelem_reply.java rename to storage/bdb/rpc_server/java/gen/__db_h_nelem_reply.java diff --git a/bdb/rpc_server/java/gen/__db_join_msg.java b/storage/bdb/rpc_server/java/gen/__db_join_msg.java similarity index 100% rename from bdb/rpc_server/java/gen/__db_join_msg.java rename to storage/bdb/rpc_server/java/gen/__db_join_msg.java diff --git a/bdb/rpc_server/java/gen/__db_join_reply.java b/storage/bdb/rpc_server/java/gen/__db_join_reply.java similarity index 100% rename from bdb/rpc_server/java/gen/__db_join_reply.java rename to storage/bdb/rpc_server/java/gen/__db_join_reply.java diff --git a/bdb/rpc_server/java/gen/__db_key_range_msg.java b/storage/bdb/rpc_server/java/gen/__db_key_range_msg.java similarity index 100% rename from bdb/rpc_server/java/gen/__db_key_range_msg.java rename to storage/bdb/rpc_server/java/gen/__db_key_range_msg.java diff --git a/bdb/rpc_server/java/gen/__db_key_range_reply.java b/storage/bdb/rpc_server/java/gen/__db_key_range_reply.java similarity index 100% rename from bdb/rpc_server/java/gen/__db_key_range_reply.java rename to storage/bdb/rpc_server/java/gen/__db_key_range_reply.java diff --git a/bdb/rpc_server/java/gen/__db_lorder_msg.java b/storage/bdb/rpc_server/java/gen/__db_lorder_msg.java similarity index 100% rename from bdb/rpc_server/java/gen/__db_lorder_msg.java rename to storage/bdb/rpc_server/java/gen/__db_lorder_msg.java diff --git a/bdb/rpc_server/java/gen/__db_lorder_reply.java b/storage/bdb/rpc_server/java/gen/__db_lorder_reply.java similarity index 100% rename from bdb/rpc_server/java/gen/__db_lorder_reply.java rename to storage/bdb/rpc_server/java/gen/__db_lorder_reply.java diff --git a/bdb/rpc_server/java/gen/__db_open_msg.java b/storage/bdb/rpc_server/java/gen/__db_open_msg.java similarity index 100% rename from bdb/rpc_server/java/gen/__db_open_msg.java rename to storage/bdb/rpc_server/java/gen/__db_open_msg.java diff --git a/bdb/rpc_server/java/gen/__db_open_reply.java b/storage/bdb/rpc_server/java/gen/__db_open_reply.java similarity index 100% rename from bdb/rpc_server/java/gen/__db_open_reply.java rename to storage/bdb/rpc_server/java/gen/__db_open_reply.java diff --git a/bdb/rpc_server/java/gen/__db_pagesize_msg.java b/storage/bdb/rpc_server/java/gen/__db_pagesize_msg.java similarity index 100% rename from bdb/rpc_server/java/gen/__db_pagesize_msg.java rename to storage/bdb/rpc_server/java/gen/__db_pagesize_msg.java diff --git a/bdb/rpc_server/java/gen/__db_pagesize_reply.java b/storage/bdb/rpc_server/java/gen/__db_pagesize_reply.java similarity index 100% rename from bdb/rpc_server/java/gen/__db_pagesize_reply.java rename to storage/bdb/rpc_server/java/gen/__db_pagesize_reply.java diff --git a/bdb/rpc_server/java/gen/__db_pget_msg.java b/storage/bdb/rpc_server/java/gen/__db_pget_msg.java similarity index 100% rename from bdb/rpc_server/java/gen/__db_pget_msg.java rename to storage/bdb/rpc_server/java/gen/__db_pget_msg.java diff --git a/bdb/rpc_server/java/gen/__db_pget_reply.java b/storage/bdb/rpc_server/java/gen/__db_pget_reply.java similarity index 100% rename from bdb/rpc_server/java/gen/__db_pget_reply.java rename to storage/bdb/rpc_server/java/gen/__db_pget_reply.java diff --git a/bdb/rpc_server/java/gen/__db_put_msg.java b/storage/bdb/rpc_server/java/gen/__db_put_msg.java similarity index 100% rename from bdb/rpc_server/java/gen/__db_put_msg.java rename to storage/bdb/rpc_server/java/gen/__db_put_msg.java diff --git a/bdb/rpc_server/java/gen/__db_put_reply.java b/storage/bdb/rpc_server/java/gen/__db_put_reply.java similarity index 100% rename from bdb/rpc_server/java/gen/__db_put_reply.java rename to storage/bdb/rpc_server/java/gen/__db_put_reply.java diff --git a/bdb/rpc_server/java/gen/__db_re_delim_msg.java b/storage/bdb/rpc_server/java/gen/__db_re_delim_msg.java similarity index 100% rename from bdb/rpc_server/java/gen/__db_re_delim_msg.java rename to storage/bdb/rpc_server/java/gen/__db_re_delim_msg.java diff --git a/bdb/rpc_server/java/gen/__db_re_delim_reply.java b/storage/bdb/rpc_server/java/gen/__db_re_delim_reply.java similarity index 100% rename from bdb/rpc_server/java/gen/__db_re_delim_reply.java rename to storage/bdb/rpc_server/java/gen/__db_re_delim_reply.java diff --git a/bdb/rpc_server/java/gen/__db_re_len_msg.java b/storage/bdb/rpc_server/java/gen/__db_re_len_msg.java similarity index 100% rename from bdb/rpc_server/java/gen/__db_re_len_msg.java rename to storage/bdb/rpc_server/java/gen/__db_re_len_msg.java diff --git a/bdb/rpc_server/java/gen/__db_re_len_reply.java b/storage/bdb/rpc_server/java/gen/__db_re_len_reply.java similarity index 100% rename from bdb/rpc_server/java/gen/__db_re_len_reply.java rename to storage/bdb/rpc_server/java/gen/__db_re_len_reply.java diff --git a/bdb/rpc_server/java/gen/__db_re_pad_msg.java b/storage/bdb/rpc_server/java/gen/__db_re_pad_msg.java similarity index 100% rename from bdb/rpc_server/java/gen/__db_re_pad_msg.java rename to storage/bdb/rpc_server/java/gen/__db_re_pad_msg.java diff --git a/bdb/rpc_server/java/gen/__db_re_pad_reply.java b/storage/bdb/rpc_server/java/gen/__db_re_pad_reply.java similarity index 100% rename from bdb/rpc_server/java/gen/__db_re_pad_reply.java rename to storage/bdb/rpc_server/java/gen/__db_re_pad_reply.java diff --git a/bdb/rpc_server/java/gen/__db_remove_msg.java b/storage/bdb/rpc_server/java/gen/__db_remove_msg.java similarity index 100% rename from bdb/rpc_server/java/gen/__db_remove_msg.java rename to storage/bdb/rpc_server/java/gen/__db_remove_msg.java diff --git a/bdb/rpc_server/java/gen/__db_remove_reply.java b/storage/bdb/rpc_server/java/gen/__db_remove_reply.java similarity index 100% rename from bdb/rpc_server/java/gen/__db_remove_reply.java rename to storage/bdb/rpc_server/java/gen/__db_remove_reply.java diff --git a/bdb/rpc_server/java/gen/__db_rename_msg.java b/storage/bdb/rpc_server/java/gen/__db_rename_msg.java similarity index 100% rename from bdb/rpc_server/java/gen/__db_rename_msg.java rename to storage/bdb/rpc_server/java/gen/__db_rename_msg.java diff --git a/bdb/rpc_server/java/gen/__db_rename_reply.java b/storage/bdb/rpc_server/java/gen/__db_rename_reply.java similarity index 100% rename from bdb/rpc_server/java/gen/__db_rename_reply.java rename to storage/bdb/rpc_server/java/gen/__db_rename_reply.java diff --git a/bdb/rpc_server/java/gen/__db_stat_msg.java b/storage/bdb/rpc_server/java/gen/__db_stat_msg.java similarity index 100% rename from bdb/rpc_server/java/gen/__db_stat_msg.java rename to storage/bdb/rpc_server/java/gen/__db_stat_msg.java diff --git a/bdb/rpc_server/java/gen/__db_stat_reply.java b/storage/bdb/rpc_server/java/gen/__db_stat_reply.java similarity index 100% rename from bdb/rpc_server/java/gen/__db_stat_reply.java rename to storage/bdb/rpc_server/java/gen/__db_stat_reply.java diff --git a/bdb/rpc_server/java/gen/__db_sync_msg.java b/storage/bdb/rpc_server/java/gen/__db_sync_msg.java similarity index 100% rename from bdb/rpc_server/java/gen/__db_sync_msg.java rename to storage/bdb/rpc_server/java/gen/__db_sync_msg.java diff --git a/bdb/rpc_server/java/gen/__db_sync_reply.java b/storage/bdb/rpc_server/java/gen/__db_sync_reply.java similarity index 100% rename from bdb/rpc_server/java/gen/__db_sync_reply.java rename to storage/bdb/rpc_server/java/gen/__db_sync_reply.java diff --git a/bdb/rpc_server/java/gen/__db_truncate_msg.java b/storage/bdb/rpc_server/java/gen/__db_truncate_msg.java similarity index 100% rename from bdb/rpc_server/java/gen/__db_truncate_msg.java rename to storage/bdb/rpc_server/java/gen/__db_truncate_msg.java diff --git a/bdb/rpc_server/java/gen/__db_truncate_reply.java b/storage/bdb/rpc_server/java/gen/__db_truncate_reply.java similarity index 100% rename from bdb/rpc_server/java/gen/__db_truncate_reply.java rename to storage/bdb/rpc_server/java/gen/__db_truncate_reply.java diff --git a/bdb/rpc_server/java/gen/__dbc_close_msg.java b/storage/bdb/rpc_server/java/gen/__dbc_close_msg.java similarity index 100% rename from bdb/rpc_server/java/gen/__dbc_close_msg.java rename to storage/bdb/rpc_server/java/gen/__dbc_close_msg.java diff --git a/bdb/rpc_server/java/gen/__dbc_close_reply.java b/storage/bdb/rpc_server/java/gen/__dbc_close_reply.java similarity index 100% rename from bdb/rpc_server/java/gen/__dbc_close_reply.java rename to storage/bdb/rpc_server/java/gen/__dbc_close_reply.java diff --git a/bdb/rpc_server/java/gen/__dbc_count_msg.java b/storage/bdb/rpc_server/java/gen/__dbc_count_msg.java similarity index 100% rename from bdb/rpc_server/java/gen/__dbc_count_msg.java rename to storage/bdb/rpc_server/java/gen/__dbc_count_msg.java diff --git a/bdb/rpc_server/java/gen/__dbc_count_reply.java b/storage/bdb/rpc_server/java/gen/__dbc_count_reply.java similarity index 100% rename from bdb/rpc_server/java/gen/__dbc_count_reply.java rename to storage/bdb/rpc_server/java/gen/__dbc_count_reply.java diff --git a/bdb/rpc_server/java/gen/__dbc_del_msg.java b/storage/bdb/rpc_server/java/gen/__dbc_del_msg.java similarity index 100% rename from bdb/rpc_server/java/gen/__dbc_del_msg.java rename to storage/bdb/rpc_server/java/gen/__dbc_del_msg.java diff --git a/bdb/rpc_server/java/gen/__dbc_del_reply.java b/storage/bdb/rpc_server/java/gen/__dbc_del_reply.java similarity index 100% rename from bdb/rpc_server/java/gen/__dbc_del_reply.java rename to storage/bdb/rpc_server/java/gen/__dbc_del_reply.java diff --git a/bdb/rpc_server/java/gen/__dbc_dup_msg.java b/storage/bdb/rpc_server/java/gen/__dbc_dup_msg.java similarity index 100% rename from bdb/rpc_server/java/gen/__dbc_dup_msg.java rename to storage/bdb/rpc_server/java/gen/__dbc_dup_msg.java diff --git a/bdb/rpc_server/java/gen/__dbc_dup_reply.java b/storage/bdb/rpc_server/java/gen/__dbc_dup_reply.java similarity index 100% rename from bdb/rpc_server/java/gen/__dbc_dup_reply.java rename to storage/bdb/rpc_server/java/gen/__dbc_dup_reply.java diff --git a/bdb/rpc_server/java/gen/__dbc_get_msg.java b/storage/bdb/rpc_server/java/gen/__dbc_get_msg.java similarity index 100% rename from bdb/rpc_server/java/gen/__dbc_get_msg.java rename to storage/bdb/rpc_server/java/gen/__dbc_get_msg.java diff --git a/bdb/rpc_server/java/gen/__dbc_get_reply.java b/storage/bdb/rpc_server/java/gen/__dbc_get_reply.java similarity index 100% rename from bdb/rpc_server/java/gen/__dbc_get_reply.java rename to storage/bdb/rpc_server/java/gen/__dbc_get_reply.java diff --git a/bdb/rpc_server/java/gen/__dbc_pget_msg.java b/storage/bdb/rpc_server/java/gen/__dbc_pget_msg.java similarity index 100% rename from bdb/rpc_server/java/gen/__dbc_pget_msg.java rename to storage/bdb/rpc_server/java/gen/__dbc_pget_msg.java diff --git a/bdb/rpc_server/java/gen/__dbc_pget_reply.java b/storage/bdb/rpc_server/java/gen/__dbc_pget_reply.java similarity index 100% rename from bdb/rpc_server/java/gen/__dbc_pget_reply.java rename to storage/bdb/rpc_server/java/gen/__dbc_pget_reply.java diff --git a/bdb/rpc_server/java/gen/__dbc_put_msg.java b/storage/bdb/rpc_server/java/gen/__dbc_put_msg.java similarity index 100% rename from bdb/rpc_server/java/gen/__dbc_put_msg.java rename to storage/bdb/rpc_server/java/gen/__dbc_put_msg.java diff --git a/bdb/rpc_server/java/gen/__dbc_put_reply.java b/storage/bdb/rpc_server/java/gen/__dbc_put_reply.java similarity index 100% rename from bdb/rpc_server/java/gen/__dbc_put_reply.java rename to storage/bdb/rpc_server/java/gen/__dbc_put_reply.java diff --git a/bdb/rpc_server/java/gen/__env_cachesize_msg.java b/storage/bdb/rpc_server/java/gen/__env_cachesize_msg.java similarity index 100% rename from bdb/rpc_server/java/gen/__env_cachesize_msg.java rename to storage/bdb/rpc_server/java/gen/__env_cachesize_msg.java diff --git a/bdb/rpc_server/java/gen/__env_cachesize_reply.java b/storage/bdb/rpc_server/java/gen/__env_cachesize_reply.java similarity index 100% rename from bdb/rpc_server/java/gen/__env_cachesize_reply.java rename to storage/bdb/rpc_server/java/gen/__env_cachesize_reply.java diff --git a/bdb/rpc_server/java/gen/__env_close_msg.java b/storage/bdb/rpc_server/java/gen/__env_close_msg.java similarity index 100% rename from bdb/rpc_server/java/gen/__env_close_msg.java rename to storage/bdb/rpc_server/java/gen/__env_close_msg.java diff --git a/bdb/rpc_server/java/gen/__env_close_reply.java b/storage/bdb/rpc_server/java/gen/__env_close_reply.java similarity index 100% rename from bdb/rpc_server/java/gen/__env_close_reply.java rename to storage/bdb/rpc_server/java/gen/__env_close_reply.java diff --git a/bdb/rpc_server/java/gen/__env_create_msg.java b/storage/bdb/rpc_server/java/gen/__env_create_msg.java similarity index 100% rename from bdb/rpc_server/java/gen/__env_create_msg.java rename to storage/bdb/rpc_server/java/gen/__env_create_msg.java diff --git a/bdb/rpc_server/java/gen/__env_create_reply.java b/storage/bdb/rpc_server/java/gen/__env_create_reply.java similarity index 100% rename from bdb/rpc_server/java/gen/__env_create_reply.java rename to storage/bdb/rpc_server/java/gen/__env_create_reply.java diff --git a/bdb/rpc_server/java/gen/__env_dbremove_msg.java b/storage/bdb/rpc_server/java/gen/__env_dbremove_msg.java similarity index 100% rename from bdb/rpc_server/java/gen/__env_dbremove_msg.java rename to storage/bdb/rpc_server/java/gen/__env_dbremove_msg.java diff --git a/bdb/rpc_server/java/gen/__env_dbremove_reply.java b/storage/bdb/rpc_server/java/gen/__env_dbremove_reply.java similarity index 100% rename from bdb/rpc_server/java/gen/__env_dbremove_reply.java rename to storage/bdb/rpc_server/java/gen/__env_dbremove_reply.java diff --git a/bdb/rpc_server/java/gen/__env_dbrename_msg.java b/storage/bdb/rpc_server/java/gen/__env_dbrename_msg.java similarity index 100% rename from bdb/rpc_server/java/gen/__env_dbrename_msg.java rename to storage/bdb/rpc_server/java/gen/__env_dbrename_msg.java diff --git a/bdb/rpc_server/java/gen/__env_dbrename_reply.java b/storage/bdb/rpc_server/java/gen/__env_dbrename_reply.java similarity index 100% rename from bdb/rpc_server/java/gen/__env_dbrename_reply.java rename to storage/bdb/rpc_server/java/gen/__env_dbrename_reply.java diff --git a/bdb/rpc_server/java/gen/__env_encrypt_msg.java b/storage/bdb/rpc_server/java/gen/__env_encrypt_msg.java similarity index 100% rename from bdb/rpc_server/java/gen/__env_encrypt_msg.java rename to storage/bdb/rpc_server/java/gen/__env_encrypt_msg.java diff --git a/bdb/rpc_server/java/gen/__env_encrypt_reply.java b/storage/bdb/rpc_server/java/gen/__env_encrypt_reply.java similarity index 100% rename from bdb/rpc_server/java/gen/__env_encrypt_reply.java rename to storage/bdb/rpc_server/java/gen/__env_encrypt_reply.java diff --git a/bdb/rpc_server/java/gen/__env_flags_msg.java b/storage/bdb/rpc_server/java/gen/__env_flags_msg.java similarity index 100% rename from bdb/rpc_server/java/gen/__env_flags_msg.java rename to storage/bdb/rpc_server/java/gen/__env_flags_msg.java diff --git a/bdb/rpc_server/java/gen/__env_flags_reply.java b/storage/bdb/rpc_server/java/gen/__env_flags_reply.java similarity index 100% rename from bdb/rpc_server/java/gen/__env_flags_reply.java rename to storage/bdb/rpc_server/java/gen/__env_flags_reply.java diff --git a/bdb/rpc_server/java/gen/__env_open_msg.java b/storage/bdb/rpc_server/java/gen/__env_open_msg.java similarity index 100% rename from bdb/rpc_server/java/gen/__env_open_msg.java rename to storage/bdb/rpc_server/java/gen/__env_open_msg.java diff --git a/bdb/rpc_server/java/gen/__env_open_reply.java b/storage/bdb/rpc_server/java/gen/__env_open_reply.java similarity index 100% rename from bdb/rpc_server/java/gen/__env_open_reply.java rename to storage/bdb/rpc_server/java/gen/__env_open_reply.java diff --git a/bdb/rpc_server/java/gen/__env_remove_msg.java b/storage/bdb/rpc_server/java/gen/__env_remove_msg.java similarity index 100% rename from bdb/rpc_server/java/gen/__env_remove_msg.java rename to storage/bdb/rpc_server/java/gen/__env_remove_msg.java diff --git a/bdb/rpc_server/java/gen/__env_remove_reply.java b/storage/bdb/rpc_server/java/gen/__env_remove_reply.java similarity index 100% rename from bdb/rpc_server/java/gen/__env_remove_reply.java rename to storage/bdb/rpc_server/java/gen/__env_remove_reply.java diff --git a/bdb/rpc_server/java/gen/__txn_abort_msg.java b/storage/bdb/rpc_server/java/gen/__txn_abort_msg.java similarity index 100% rename from bdb/rpc_server/java/gen/__txn_abort_msg.java rename to storage/bdb/rpc_server/java/gen/__txn_abort_msg.java diff --git a/bdb/rpc_server/java/gen/__txn_abort_reply.java b/storage/bdb/rpc_server/java/gen/__txn_abort_reply.java similarity index 100% rename from bdb/rpc_server/java/gen/__txn_abort_reply.java rename to storage/bdb/rpc_server/java/gen/__txn_abort_reply.java diff --git a/bdb/rpc_server/java/gen/__txn_begin_msg.java b/storage/bdb/rpc_server/java/gen/__txn_begin_msg.java similarity index 100% rename from bdb/rpc_server/java/gen/__txn_begin_msg.java rename to storage/bdb/rpc_server/java/gen/__txn_begin_msg.java diff --git a/bdb/rpc_server/java/gen/__txn_begin_reply.java b/storage/bdb/rpc_server/java/gen/__txn_begin_reply.java similarity index 100% rename from bdb/rpc_server/java/gen/__txn_begin_reply.java rename to storage/bdb/rpc_server/java/gen/__txn_begin_reply.java diff --git a/bdb/rpc_server/java/gen/__txn_commit_msg.java b/storage/bdb/rpc_server/java/gen/__txn_commit_msg.java similarity index 100% rename from bdb/rpc_server/java/gen/__txn_commit_msg.java rename to storage/bdb/rpc_server/java/gen/__txn_commit_msg.java diff --git a/bdb/rpc_server/java/gen/__txn_commit_reply.java b/storage/bdb/rpc_server/java/gen/__txn_commit_reply.java similarity index 100% rename from bdb/rpc_server/java/gen/__txn_commit_reply.java rename to storage/bdb/rpc_server/java/gen/__txn_commit_reply.java diff --git a/bdb/rpc_server/java/gen/__txn_discard_msg.java b/storage/bdb/rpc_server/java/gen/__txn_discard_msg.java similarity index 100% rename from bdb/rpc_server/java/gen/__txn_discard_msg.java rename to storage/bdb/rpc_server/java/gen/__txn_discard_msg.java diff --git a/bdb/rpc_server/java/gen/__txn_discard_reply.java b/storage/bdb/rpc_server/java/gen/__txn_discard_reply.java similarity index 100% rename from bdb/rpc_server/java/gen/__txn_discard_reply.java rename to storage/bdb/rpc_server/java/gen/__txn_discard_reply.java diff --git a/bdb/rpc_server/java/gen/__txn_prepare_msg.java b/storage/bdb/rpc_server/java/gen/__txn_prepare_msg.java similarity index 100% rename from bdb/rpc_server/java/gen/__txn_prepare_msg.java rename to storage/bdb/rpc_server/java/gen/__txn_prepare_msg.java diff --git a/bdb/rpc_server/java/gen/__txn_prepare_reply.java b/storage/bdb/rpc_server/java/gen/__txn_prepare_reply.java similarity index 100% rename from bdb/rpc_server/java/gen/__txn_prepare_reply.java rename to storage/bdb/rpc_server/java/gen/__txn_prepare_reply.java diff --git a/bdb/rpc_server/java/gen/__txn_recover_msg.java b/storage/bdb/rpc_server/java/gen/__txn_recover_msg.java similarity index 100% rename from bdb/rpc_server/java/gen/__txn_recover_msg.java rename to storage/bdb/rpc_server/java/gen/__txn_recover_msg.java diff --git a/bdb/rpc_server/java/gen/__txn_recover_reply.java b/storage/bdb/rpc_server/java/gen/__txn_recover_reply.java similarity index 100% rename from bdb/rpc_server/java/gen/__txn_recover_reply.java rename to storage/bdb/rpc_server/java/gen/__txn_recover_reply.java diff --git a/bdb/rpc_server/java/gen/db_server.java b/storage/bdb/rpc_server/java/gen/db_server.java similarity index 100% rename from bdb/rpc_server/java/gen/db_server.java rename to storage/bdb/rpc_server/java/gen/db_server.java diff --git a/bdb/rpc_server/java/jrpcgen.jar b/storage/bdb/rpc_server/java/jrpcgen.jar similarity index 100% rename from bdb/rpc_server/java/jrpcgen.jar rename to storage/bdb/rpc_server/java/jrpcgen.jar diff --git a/bdb/rpc_server/java/oncrpc.jar b/storage/bdb/rpc_server/java/oncrpc.jar similarity index 100% rename from bdb/rpc_server/java/oncrpc.jar rename to storage/bdb/rpc_server/java/oncrpc.jar diff --git a/bdb/rpc_server/java/s_jrpcgen b/storage/bdb/rpc_server/java/s_jrpcgen similarity index 100% rename from bdb/rpc_server/java/s_jrpcgen rename to storage/bdb/rpc_server/java/s_jrpcgen diff --git a/bdb/rpc_server/rpc.src b/storage/bdb/rpc_server/rpc.src similarity index 100% rename from bdb/rpc_server/rpc.src rename to storage/bdb/rpc_server/rpc.src diff --git a/bdb/tcl/docs/db.html b/storage/bdb/tcl/docs/db.html similarity index 100% rename from bdb/tcl/docs/db.html rename to storage/bdb/tcl/docs/db.html diff --git a/bdb/tcl/docs/env.html b/storage/bdb/tcl/docs/env.html similarity index 100% rename from bdb/tcl/docs/env.html rename to storage/bdb/tcl/docs/env.html diff --git a/bdb/tcl/docs/historic.html b/storage/bdb/tcl/docs/historic.html similarity index 100% rename from bdb/tcl/docs/historic.html rename to storage/bdb/tcl/docs/historic.html diff --git a/bdb/tcl/docs/index.html b/storage/bdb/tcl/docs/index.html similarity index 100% rename from bdb/tcl/docs/index.html rename to storage/bdb/tcl/docs/index.html diff --git a/bdb/tcl/docs/library.html b/storage/bdb/tcl/docs/library.html similarity index 100% rename from bdb/tcl/docs/library.html rename to storage/bdb/tcl/docs/library.html diff --git a/bdb/tcl/docs/lock.html b/storage/bdb/tcl/docs/lock.html similarity index 100% rename from bdb/tcl/docs/lock.html rename to storage/bdb/tcl/docs/lock.html diff --git a/bdb/tcl/docs/log.html b/storage/bdb/tcl/docs/log.html similarity index 100% rename from bdb/tcl/docs/log.html rename to storage/bdb/tcl/docs/log.html diff --git a/bdb/tcl/docs/mpool.html b/storage/bdb/tcl/docs/mpool.html similarity index 100% rename from bdb/tcl/docs/mpool.html rename to storage/bdb/tcl/docs/mpool.html diff --git a/bdb/tcl/docs/rep.html b/storage/bdb/tcl/docs/rep.html similarity index 100% rename from bdb/tcl/docs/rep.html rename to storage/bdb/tcl/docs/rep.html diff --git a/bdb/tcl/docs/test.html b/storage/bdb/tcl/docs/test.html similarity index 100% rename from bdb/tcl/docs/test.html rename to storage/bdb/tcl/docs/test.html diff --git a/bdb/tcl/docs/txn.html b/storage/bdb/tcl/docs/txn.html similarity index 100% rename from bdb/tcl/docs/txn.html rename to storage/bdb/tcl/docs/txn.html diff --git a/bdb/tcl/tcl_compat.c b/storage/bdb/tcl/tcl_compat.c similarity index 100% rename from bdb/tcl/tcl_compat.c rename to storage/bdb/tcl/tcl_compat.c diff --git a/bdb/tcl/tcl_db.c b/storage/bdb/tcl/tcl_db.c similarity index 100% rename from bdb/tcl/tcl_db.c rename to storage/bdb/tcl/tcl_db.c diff --git a/bdb/tcl/tcl_db_pkg.c b/storage/bdb/tcl/tcl_db_pkg.c similarity index 100% rename from bdb/tcl/tcl_db_pkg.c rename to storage/bdb/tcl/tcl_db_pkg.c diff --git a/bdb/tcl/tcl_dbcursor.c b/storage/bdb/tcl/tcl_dbcursor.c similarity index 100% rename from bdb/tcl/tcl_dbcursor.c rename to storage/bdb/tcl/tcl_dbcursor.c diff --git a/bdb/tcl/tcl_env.c b/storage/bdb/tcl/tcl_env.c similarity index 100% rename from bdb/tcl/tcl_env.c rename to storage/bdb/tcl/tcl_env.c diff --git a/bdb/tcl/tcl_internal.c b/storage/bdb/tcl/tcl_internal.c similarity index 100% rename from bdb/tcl/tcl_internal.c rename to storage/bdb/tcl/tcl_internal.c diff --git a/bdb/tcl/tcl_lock.c b/storage/bdb/tcl/tcl_lock.c similarity index 100% rename from bdb/tcl/tcl_lock.c rename to storage/bdb/tcl/tcl_lock.c diff --git a/bdb/tcl/tcl_log.c b/storage/bdb/tcl/tcl_log.c similarity index 100% rename from bdb/tcl/tcl_log.c rename to storage/bdb/tcl/tcl_log.c diff --git a/bdb/tcl/tcl_mp.c b/storage/bdb/tcl/tcl_mp.c similarity index 100% rename from bdb/tcl/tcl_mp.c rename to storage/bdb/tcl/tcl_mp.c diff --git a/bdb/tcl/tcl_rep.c b/storage/bdb/tcl/tcl_rep.c similarity index 100% rename from bdb/tcl/tcl_rep.c rename to storage/bdb/tcl/tcl_rep.c diff --git a/bdb/tcl/tcl_txn.c b/storage/bdb/tcl/tcl_txn.c similarity index 100% rename from bdb/tcl/tcl_txn.c rename to storage/bdb/tcl/tcl_txn.c diff --git a/bdb/tcl/tcl_util.c b/storage/bdb/tcl/tcl_util.c similarity index 100% rename from bdb/tcl/tcl_util.c rename to storage/bdb/tcl/tcl_util.c diff --git a/bdb/test/archive.tcl b/storage/bdb/test/archive.tcl similarity index 100% rename from bdb/test/archive.tcl rename to storage/bdb/test/archive.tcl diff --git a/bdb/test/bigfile001.tcl b/storage/bdb/test/bigfile001.tcl similarity index 100% rename from bdb/test/bigfile001.tcl rename to storage/bdb/test/bigfile001.tcl diff --git a/bdb/test/bigfile002.tcl b/storage/bdb/test/bigfile002.tcl similarity index 100% rename from bdb/test/bigfile002.tcl rename to storage/bdb/test/bigfile002.tcl diff --git a/bdb/test/byteorder.tcl b/storage/bdb/test/byteorder.tcl similarity index 100% rename from bdb/test/byteorder.tcl rename to storage/bdb/test/byteorder.tcl diff --git a/bdb/test/conscript.tcl b/storage/bdb/test/conscript.tcl similarity index 100% rename from bdb/test/conscript.tcl rename to storage/bdb/test/conscript.tcl diff --git a/bdb/test/dbm.tcl b/storage/bdb/test/dbm.tcl similarity index 100% rename from bdb/test/dbm.tcl rename to storage/bdb/test/dbm.tcl diff --git a/bdb/test/dbscript.tcl b/storage/bdb/test/dbscript.tcl similarity index 100% rename from bdb/test/dbscript.tcl rename to storage/bdb/test/dbscript.tcl diff --git a/bdb/test/ddoyscript.tcl b/storage/bdb/test/ddoyscript.tcl similarity index 100% rename from bdb/test/ddoyscript.tcl rename to storage/bdb/test/ddoyscript.tcl diff --git a/bdb/test/ddscript.tcl b/storage/bdb/test/ddscript.tcl similarity index 100% rename from bdb/test/ddscript.tcl rename to storage/bdb/test/ddscript.tcl diff --git a/bdb/test/dead001.tcl b/storage/bdb/test/dead001.tcl similarity index 100% rename from bdb/test/dead001.tcl rename to storage/bdb/test/dead001.tcl diff --git a/bdb/test/dead002.tcl b/storage/bdb/test/dead002.tcl similarity index 100% rename from bdb/test/dead002.tcl rename to storage/bdb/test/dead002.tcl diff --git a/bdb/test/dead003.tcl b/storage/bdb/test/dead003.tcl similarity index 100% rename from bdb/test/dead003.tcl rename to storage/bdb/test/dead003.tcl diff --git a/bdb/test/dead004.tcl b/storage/bdb/test/dead004.tcl similarity index 100% rename from bdb/test/dead004.tcl rename to storage/bdb/test/dead004.tcl diff --git a/bdb/test/dead005.tcl b/storage/bdb/test/dead005.tcl similarity index 100% rename from bdb/test/dead005.tcl rename to storage/bdb/test/dead005.tcl diff --git a/bdb/test/dead006.tcl b/storage/bdb/test/dead006.tcl similarity index 100% rename from bdb/test/dead006.tcl rename to storage/bdb/test/dead006.tcl diff --git a/bdb/test/dead007.tcl b/storage/bdb/test/dead007.tcl similarity index 100% rename from bdb/test/dead007.tcl rename to storage/bdb/test/dead007.tcl diff --git a/bdb/test/env001.tcl b/storage/bdb/test/env001.tcl similarity index 100% rename from bdb/test/env001.tcl rename to storage/bdb/test/env001.tcl diff --git a/bdb/test/env002.tcl b/storage/bdb/test/env002.tcl similarity index 100% rename from bdb/test/env002.tcl rename to storage/bdb/test/env002.tcl diff --git a/bdb/test/env003.tcl b/storage/bdb/test/env003.tcl similarity index 100% rename from bdb/test/env003.tcl rename to storage/bdb/test/env003.tcl diff --git a/bdb/test/env004.tcl b/storage/bdb/test/env004.tcl similarity index 100% rename from bdb/test/env004.tcl rename to storage/bdb/test/env004.tcl diff --git a/bdb/test/env005.tcl b/storage/bdb/test/env005.tcl similarity index 100% rename from bdb/test/env005.tcl rename to storage/bdb/test/env005.tcl diff --git a/bdb/test/env006.tcl b/storage/bdb/test/env006.tcl similarity index 100% rename from bdb/test/env006.tcl rename to storage/bdb/test/env006.tcl diff --git a/bdb/test/env007.tcl b/storage/bdb/test/env007.tcl similarity index 100% rename from bdb/test/env007.tcl rename to storage/bdb/test/env007.tcl diff --git a/bdb/test/env008.tcl b/storage/bdb/test/env008.tcl similarity index 100% rename from bdb/test/env008.tcl rename to storage/bdb/test/env008.tcl diff --git a/bdb/test/env009.tcl b/storage/bdb/test/env009.tcl similarity index 100% rename from bdb/test/env009.tcl rename to storage/bdb/test/env009.tcl diff --git a/bdb/test/env010.tcl b/storage/bdb/test/env010.tcl similarity index 100% rename from bdb/test/env010.tcl rename to storage/bdb/test/env010.tcl diff --git a/bdb/test/env011.tcl b/storage/bdb/test/env011.tcl similarity index 100% rename from bdb/test/env011.tcl rename to storage/bdb/test/env011.tcl diff --git a/bdb/test/hsearch.tcl b/storage/bdb/test/hsearch.tcl similarity index 100% rename from bdb/test/hsearch.tcl rename to storage/bdb/test/hsearch.tcl diff --git a/bdb/test/join.tcl b/storage/bdb/test/join.tcl similarity index 100% rename from bdb/test/join.tcl rename to storage/bdb/test/join.tcl diff --git a/bdb/test/lock001.tcl b/storage/bdb/test/lock001.tcl similarity index 100% rename from bdb/test/lock001.tcl rename to storage/bdb/test/lock001.tcl diff --git a/bdb/test/lock002.tcl b/storage/bdb/test/lock002.tcl similarity index 100% rename from bdb/test/lock002.tcl rename to storage/bdb/test/lock002.tcl diff --git a/bdb/test/lock003.tcl b/storage/bdb/test/lock003.tcl similarity index 100% rename from bdb/test/lock003.tcl rename to storage/bdb/test/lock003.tcl diff --git a/bdb/test/lock004.tcl b/storage/bdb/test/lock004.tcl similarity index 100% rename from bdb/test/lock004.tcl rename to storage/bdb/test/lock004.tcl diff --git a/bdb/test/lock005.tcl b/storage/bdb/test/lock005.tcl similarity index 100% rename from bdb/test/lock005.tcl rename to storage/bdb/test/lock005.tcl diff --git a/bdb/test/lockscript.tcl b/storage/bdb/test/lockscript.tcl similarity index 100% rename from bdb/test/lockscript.tcl rename to storage/bdb/test/lockscript.tcl diff --git a/bdb/test/log001.tcl b/storage/bdb/test/log001.tcl similarity index 100% rename from bdb/test/log001.tcl rename to storage/bdb/test/log001.tcl diff --git a/bdb/test/log002.tcl b/storage/bdb/test/log002.tcl similarity index 100% rename from bdb/test/log002.tcl rename to storage/bdb/test/log002.tcl diff --git a/bdb/test/log003.tcl b/storage/bdb/test/log003.tcl similarity index 100% rename from bdb/test/log003.tcl rename to storage/bdb/test/log003.tcl diff --git a/bdb/test/log004.tcl b/storage/bdb/test/log004.tcl similarity index 100% rename from bdb/test/log004.tcl rename to storage/bdb/test/log004.tcl diff --git a/bdb/test/log005.tcl b/storage/bdb/test/log005.tcl similarity index 100% rename from bdb/test/log005.tcl rename to storage/bdb/test/log005.tcl diff --git a/bdb/test/logtrack.tcl b/storage/bdb/test/logtrack.tcl similarity index 100% rename from bdb/test/logtrack.tcl rename to storage/bdb/test/logtrack.tcl diff --git a/bdb/test/mdbscript.tcl b/storage/bdb/test/mdbscript.tcl similarity index 100% rename from bdb/test/mdbscript.tcl rename to storage/bdb/test/mdbscript.tcl diff --git a/bdb/test/memp001.tcl b/storage/bdb/test/memp001.tcl similarity index 100% rename from bdb/test/memp001.tcl rename to storage/bdb/test/memp001.tcl diff --git a/bdb/test/memp002.tcl b/storage/bdb/test/memp002.tcl similarity index 100% rename from bdb/test/memp002.tcl rename to storage/bdb/test/memp002.tcl diff --git a/bdb/test/memp003.tcl b/storage/bdb/test/memp003.tcl similarity index 100% rename from bdb/test/memp003.tcl rename to storage/bdb/test/memp003.tcl diff --git a/bdb/test/mpoolscript.tcl b/storage/bdb/test/mpoolscript.tcl similarity index 100% rename from bdb/test/mpoolscript.tcl rename to storage/bdb/test/mpoolscript.tcl diff --git a/bdb/test/mutex001.tcl b/storage/bdb/test/mutex001.tcl similarity index 100% rename from bdb/test/mutex001.tcl rename to storage/bdb/test/mutex001.tcl diff --git a/bdb/test/mutex002.tcl b/storage/bdb/test/mutex002.tcl similarity index 100% rename from bdb/test/mutex002.tcl rename to storage/bdb/test/mutex002.tcl diff --git a/bdb/test/mutex003.tcl b/storage/bdb/test/mutex003.tcl similarity index 100% rename from bdb/test/mutex003.tcl rename to storage/bdb/test/mutex003.tcl diff --git a/bdb/test/mutexscript.tcl b/storage/bdb/test/mutexscript.tcl similarity index 100% rename from bdb/test/mutexscript.tcl rename to storage/bdb/test/mutexscript.tcl diff --git a/bdb/test/ndbm.tcl b/storage/bdb/test/ndbm.tcl similarity index 100% rename from bdb/test/ndbm.tcl rename to storage/bdb/test/ndbm.tcl diff --git a/bdb/test/parallel.tcl b/storage/bdb/test/parallel.tcl similarity index 100% rename from bdb/test/parallel.tcl rename to storage/bdb/test/parallel.tcl diff --git a/bdb/test/recd001.tcl b/storage/bdb/test/recd001.tcl similarity index 100% rename from bdb/test/recd001.tcl rename to storage/bdb/test/recd001.tcl diff --git a/bdb/test/recd002.tcl b/storage/bdb/test/recd002.tcl similarity index 100% rename from bdb/test/recd002.tcl rename to storage/bdb/test/recd002.tcl diff --git a/bdb/test/recd003.tcl b/storage/bdb/test/recd003.tcl similarity index 100% rename from bdb/test/recd003.tcl rename to storage/bdb/test/recd003.tcl diff --git a/bdb/test/recd004.tcl b/storage/bdb/test/recd004.tcl similarity index 100% rename from bdb/test/recd004.tcl rename to storage/bdb/test/recd004.tcl diff --git a/bdb/test/recd005.tcl b/storage/bdb/test/recd005.tcl similarity index 100% rename from bdb/test/recd005.tcl rename to storage/bdb/test/recd005.tcl diff --git a/bdb/test/recd006.tcl b/storage/bdb/test/recd006.tcl similarity index 100% rename from bdb/test/recd006.tcl rename to storage/bdb/test/recd006.tcl diff --git a/bdb/test/recd007.tcl b/storage/bdb/test/recd007.tcl similarity index 100% rename from bdb/test/recd007.tcl rename to storage/bdb/test/recd007.tcl diff --git a/bdb/test/recd008.tcl b/storage/bdb/test/recd008.tcl similarity index 100% rename from bdb/test/recd008.tcl rename to storage/bdb/test/recd008.tcl diff --git a/bdb/test/recd009.tcl b/storage/bdb/test/recd009.tcl similarity index 100% rename from bdb/test/recd009.tcl rename to storage/bdb/test/recd009.tcl diff --git a/bdb/test/recd010.tcl b/storage/bdb/test/recd010.tcl similarity index 100% rename from bdb/test/recd010.tcl rename to storage/bdb/test/recd010.tcl diff --git a/bdb/test/recd011.tcl b/storage/bdb/test/recd011.tcl similarity index 100% rename from bdb/test/recd011.tcl rename to storage/bdb/test/recd011.tcl diff --git a/bdb/test/recd012.tcl b/storage/bdb/test/recd012.tcl similarity index 100% rename from bdb/test/recd012.tcl rename to storage/bdb/test/recd012.tcl diff --git a/bdb/test/recd013.tcl b/storage/bdb/test/recd013.tcl similarity index 100% rename from bdb/test/recd013.tcl rename to storage/bdb/test/recd013.tcl diff --git a/bdb/test/recd014.tcl b/storage/bdb/test/recd014.tcl similarity index 100% rename from bdb/test/recd014.tcl rename to storage/bdb/test/recd014.tcl diff --git a/bdb/test/recd015.tcl b/storage/bdb/test/recd015.tcl similarity index 100% rename from bdb/test/recd015.tcl rename to storage/bdb/test/recd015.tcl diff --git a/bdb/test/recd016.tcl b/storage/bdb/test/recd016.tcl similarity index 100% rename from bdb/test/recd016.tcl rename to storage/bdb/test/recd016.tcl diff --git a/bdb/test/recd017.tcl b/storage/bdb/test/recd017.tcl similarity index 100% rename from bdb/test/recd017.tcl rename to storage/bdb/test/recd017.tcl diff --git a/bdb/test/recd018.tcl b/storage/bdb/test/recd018.tcl similarity index 100% rename from bdb/test/recd018.tcl rename to storage/bdb/test/recd018.tcl diff --git a/bdb/test/recd019.tcl b/storage/bdb/test/recd019.tcl similarity index 100% rename from bdb/test/recd019.tcl rename to storage/bdb/test/recd019.tcl diff --git a/bdb/test/recd020.tcl b/storage/bdb/test/recd020.tcl similarity index 100% rename from bdb/test/recd020.tcl rename to storage/bdb/test/recd020.tcl diff --git a/bdb/test/recd15scr.tcl b/storage/bdb/test/recd15scr.tcl similarity index 100% rename from bdb/test/recd15scr.tcl rename to storage/bdb/test/recd15scr.tcl diff --git a/bdb/test/recdscript.tcl b/storage/bdb/test/recdscript.tcl similarity index 100% rename from bdb/test/recdscript.tcl rename to storage/bdb/test/recdscript.tcl diff --git a/bdb/test/rep001.tcl b/storage/bdb/test/rep001.tcl similarity index 100% rename from bdb/test/rep001.tcl rename to storage/bdb/test/rep001.tcl diff --git a/bdb/test/rep002.tcl b/storage/bdb/test/rep002.tcl similarity index 100% rename from bdb/test/rep002.tcl rename to storage/bdb/test/rep002.tcl diff --git a/bdb/test/rep003.tcl b/storage/bdb/test/rep003.tcl similarity index 100% rename from bdb/test/rep003.tcl rename to storage/bdb/test/rep003.tcl diff --git a/bdb/test/rep004.tcl b/storage/bdb/test/rep004.tcl similarity index 100% rename from bdb/test/rep004.tcl rename to storage/bdb/test/rep004.tcl diff --git a/bdb/test/rep005.tcl b/storage/bdb/test/rep005.tcl similarity index 100% rename from bdb/test/rep005.tcl rename to storage/bdb/test/rep005.tcl diff --git a/bdb/test/reputils.tcl b/storage/bdb/test/reputils.tcl similarity index 100% rename from bdb/test/reputils.tcl rename to storage/bdb/test/reputils.tcl diff --git a/bdb/test/rpc001.tcl b/storage/bdb/test/rpc001.tcl similarity index 100% rename from bdb/test/rpc001.tcl rename to storage/bdb/test/rpc001.tcl diff --git a/bdb/test/rpc002.tcl b/storage/bdb/test/rpc002.tcl similarity index 100% rename from bdb/test/rpc002.tcl rename to storage/bdb/test/rpc002.tcl diff --git a/bdb/test/rpc003.tcl b/storage/bdb/test/rpc003.tcl similarity index 100% rename from bdb/test/rpc003.tcl rename to storage/bdb/test/rpc003.tcl diff --git a/bdb/test/rpc004.tcl b/storage/bdb/test/rpc004.tcl similarity index 100% rename from bdb/test/rpc004.tcl rename to storage/bdb/test/rpc004.tcl diff --git a/bdb/test/rpc005.tcl b/storage/bdb/test/rpc005.tcl similarity index 100% rename from bdb/test/rpc005.tcl rename to storage/bdb/test/rpc005.tcl diff --git a/bdb/test/rsrc001.tcl b/storage/bdb/test/rsrc001.tcl similarity index 100% rename from bdb/test/rsrc001.tcl rename to storage/bdb/test/rsrc001.tcl diff --git a/bdb/test/rsrc002.tcl b/storage/bdb/test/rsrc002.tcl similarity index 100% rename from bdb/test/rsrc002.tcl rename to storage/bdb/test/rsrc002.tcl diff --git a/bdb/test/rsrc003.tcl b/storage/bdb/test/rsrc003.tcl similarity index 100% rename from bdb/test/rsrc003.tcl rename to storage/bdb/test/rsrc003.tcl diff --git a/bdb/test/rsrc004.tcl b/storage/bdb/test/rsrc004.tcl similarity index 100% rename from bdb/test/rsrc004.tcl rename to storage/bdb/test/rsrc004.tcl diff --git a/bdb/test/scr001/chk.code b/storage/bdb/test/scr001/chk.code similarity index 100% rename from bdb/test/scr001/chk.code rename to storage/bdb/test/scr001/chk.code diff --git a/bdb/test/scr002/chk.def b/storage/bdb/test/scr002/chk.def similarity index 100% rename from bdb/test/scr002/chk.def rename to storage/bdb/test/scr002/chk.def diff --git a/bdb/test/scr003/chk.define b/storage/bdb/test/scr003/chk.define similarity index 100% rename from bdb/test/scr003/chk.define rename to storage/bdb/test/scr003/chk.define diff --git a/bdb/test/scr004/chk.javafiles b/storage/bdb/test/scr004/chk.javafiles similarity index 100% rename from bdb/test/scr004/chk.javafiles rename to storage/bdb/test/scr004/chk.javafiles diff --git a/bdb/test/scr005/chk.nl b/storage/bdb/test/scr005/chk.nl similarity index 100% rename from bdb/test/scr005/chk.nl rename to storage/bdb/test/scr005/chk.nl diff --git a/bdb/test/scr006/chk.offt b/storage/bdb/test/scr006/chk.offt similarity index 100% rename from bdb/test/scr006/chk.offt rename to storage/bdb/test/scr006/chk.offt diff --git a/bdb/test/scr007/chk.proto b/storage/bdb/test/scr007/chk.proto similarity index 100% rename from bdb/test/scr007/chk.proto rename to storage/bdb/test/scr007/chk.proto diff --git a/bdb/test/scr008/chk.pubdef b/storage/bdb/test/scr008/chk.pubdef similarity index 100% rename from bdb/test/scr008/chk.pubdef rename to storage/bdb/test/scr008/chk.pubdef diff --git a/bdb/test/scr009/chk.srcfiles b/storage/bdb/test/scr009/chk.srcfiles similarity index 100% rename from bdb/test/scr009/chk.srcfiles rename to storage/bdb/test/scr009/chk.srcfiles diff --git a/bdb/test/scr010/chk.str b/storage/bdb/test/scr010/chk.str similarity index 100% rename from bdb/test/scr010/chk.str rename to storage/bdb/test/scr010/chk.str diff --git a/bdb/test/scr010/spell.ok b/storage/bdb/test/scr010/spell.ok similarity index 100% rename from bdb/test/scr010/spell.ok rename to storage/bdb/test/scr010/spell.ok diff --git a/bdb/test/scr011/chk.tags b/storage/bdb/test/scr011/chk.tags similarity index 100% rename from bdb/test/scr011/chk.tags rename to storage/bdb/test/scr011/chk.tags diff --git a/bdb/test/scr012/chk.vx_code b/storage/bdb/test/scr012/chk.vx_code similarity index 100% rename from bdb/test/scr012/chk.vx_code rename to storage/bdb/test/scr012/chk.vx_code diff --git a/bdb/test/scr013/chk.stats b/storage/bdb/test/scr013/chk.stats similarity index 100% rename from bdb/test/scr013/chk.stats rename to storage/bdb/test/scr013/chk.stats diff --git a/bdb/test/scr014/chk.err b/storage/bdb/test/scr014/chk.err similarity index 100% rename from bdb/test/scr014/chk.err rename to storage/bdb/test/scr014/chk.err diff --git a/bdb/test/scr015/README b/storage/bdb/test/scr015/README similarity index 100% rename from bdb/test/scr015/README rename to storage/bdb/test/scr015/README diff --git a/bdb/test/scr015/TestConstruct01.cpp b/storage/bdb/test/scr015/TestConstruct01.cpp similarity index 100% rename from bdb/test/scr015/TestConstruct01.cpp rename to storage/bdb/test/scr015/TestConstruct01.cpp diff --git a/bdb/test/scr015/TestConstruct01.testerr b/storage/bdb/test/scr015/TestConstruct01.testerr similarity index 100% rename from bdb/test/scr015/TestConstruct01.testerr rename to storage/bdb/test/scr015/TestConstruct01.testerr diff --git a/bdb/test/scr015/TestConstruct01.testout b/storage/bdb/test/scr015/TestConstruct01.testout similarity index 100% rename from bdb/test/scr015/TestConstruct01.testout rename to storage/bdb/test/scr015/TestConstruct01.testout diff --git a/bdb/test/scr015/TestExceptInclude.cpp b/storage/bdb/test/scr015/TestExceptInclude.cpp similarity index 100% rename from bdb/test/scr015/TestExceptInclude.cpp rename to storage/bdb/test/scr015/TestExceptInclude.cpp diff --git a/bdb/test/scr015/TestGetSetMethods.cpp b/storage/bdb/test/scr015/TestGetSetMethods.cpp similarity index 100% rename from bdb/test/scr015/TestGetSetMethods.cpp rename to storage/bdb/test/scr015/TestGetSetMethods.cpp diff --git a/bdb/test/scr015/TestKeyRange.cpp b/storage/bdb/test/scr015/TestKeyRange.cpp similarity index 100% rename from bdb/test/scr015/TestKeyRange.cpp rename to storage/bdb/test/scr015/TestKeyRange.cpp diff --git a/bdb/test/scr015/TestKeyRange.testin b/storage/bdb/test/scr015/TestKeyRange.testin similarity index 100% rename from bdb/test/scr015/TestKeyRange.testin rename to storage/bdb/test/scr015/TestKeyRange.testin diff --git a/bdb/test/scr015/TestKeyRange.testout b/storage/bdb/test/scr015/TestKeyRange.testout similarity index 100% rename from bdb/test/scr015/TestKeyRange.testout rename to storage/bdb/test/scr015/TestKeyRange.testout diff --git a/bdb/test/scr015/TestLogc.cpp b/storage/bdb/test/scr015/TestLogc.cpp similarity index 100% rename from bdb/test/scr015/TestLogc.cpp rename to storage/bdb/test/scr015/TestLogc.cpp diff --git a/bdb/test/scr015/TestLogc.testout b/storage/bdb/test/scr015/TestLogc.testout similarity index 100% rename from bdb/test/scr015/TestLogc.testout rename to storage/bdb/test/scr015/TestLogc.testout diff --git a/bdb/test/scr015/TestSimpleAccess.cpp b/storage/bdb/test/scr015/TestSimpleAccess.cpp similarity index 100% rename from bdb/test/scr015/TestSimpleAccess.cpp rename to storage/bdb/test/scr015/TestSimpleAccess.cpp diff --git a/bdb/test/scr015/TestSimpleAccess.testout b/storage/bdb/test/scr015/TestSimpleAccess.testout similarity index 100% rename from bdb/test/scr015/TestSimpleAccess.testout rename to storage/bdb/test/scr015/TestSimpleAccess.testout diff --git a/bdb/test/scr015/TestTruncate.cpp b/storage/bdb/test/scr015/TestTruncate.cpp similarity index 100% rename from bdb/test/scr015/TestTruncate.cpp rename to storage/bdb/test/scr015/TestTruncate.cpp diff --git a/bdb/test/scr015/TestTruncate.testout b/storage/bdb/test/scr015/TestTruncate.testout similarity index 100% rename from bdb/test/scr015/TestTruncate.testout rename to storage/bdb/test/scr015/TestTruncate.testout diff --git a/bdb/test/scr015/chk.cxxtests b/storage/bdb/test/scr015/chk.cxxtests similarity index 100% rename from bdb/test/scr015/chk.cxxtests rename to storage/bdb/test/scr015/chk.cxxtests diff --git a/bdb/test/scr015/ignore b/storage/bdb/test/scr015/ignore similarity index 100% rename from bdb/test/scr015/ignore rename to storage/bdb/test/scr015/ignore diff --git a/bdb/test/scr015/testall b/storage/bdb/test/scr015/testall similarity index 100% rename from bdb/test/scr015/testall rename to storage/bdb/test/scr015/testall diff --git a/bdb/test/scr015/testone b/storage/bdb/test/scr015/testone similarity index 100% rename from bdb/test/scr015/testone rename to storage/bdb/test/scr015/testone diff --git a/bdb/test/scr016/CallbackTest.java b/storage/bdb/test/scr016/CallbackTest.java similarity index 100% rename from bdb/test/scr016/CallbackTest.java rename to storage/bdb/test/scr016/CallbackTest.java diff --git a/bdb/test/scr016/CallbackTest.testout b/storage/bdb/test/scr016/CallbackTest.testout similarity index 100% rename from bdb/test/scr016/CallbackTest.testout rename to storage/bdb/test/scr016/CallbackTest.testout diff --git a/bdb/test/scr016/README b/storage/bdb/test/scr016/README similarity index 100% rename from bdb/test/scr016/README rename to storage/bdb/test/scr016/README diff --git a/bdb/test/scr016/TestAppendRecno.java b/storage/bdb/test/scr016/TestAppendRecno.java similarity index 100% rename from bdb/test/scr016/TestAppendRecno.java rename to storage/bdb/test/scr016/TestAppendRecno.java diff --git a/bdb/test/scr016/TestAppendRecno.testout b/storage/bdb/test/scr016/TestAppendRecno.testout similarity index 100% rename from bdb/test/scr016/TestAppendRecno.testout rename to storage/bdb/test/scr016/TestAppendRecno.testout diff --git a/bdb/test/scr016/TestAssociate.java b/storage/bdb/test/scr016/TestAssociate.java similarity index 100% rename from bdb/test/scr016/TestAssociate.java rename to storage/bdb/test/scr016/TestAssociate.java diff --git a/bdb/test/scr016/TestAssociate.testout b/storage/bdb/test/scr016/TestAssociate.testout similarity index 100% rename from bdb/test/scr016/TestAssociate.testout rename to storage/bdb/test/scr016/TestAssociate.testout diff --git a/bdb/test/scr016/TestClosedDb.java b/storage/bdb/test/scr016/TestClosedDb.java similarity index 100% rename from bdb/test/scr016/TestClosedDb.java rename to storage/bdb/test/scr016/TestClosedDb.java diff --git a/bdb/test/scr016/TestClosedDb.testout b/storage/bdb/test/scr016/TestClosedDb.testout similarity index 100% rename from bdb/test/scr016/TestClosedDb.testout rename to storage/bdb/test/scr016/TestClosedDb.testout diff --git a/bdb/test/scr016/TestConstruct01.java b/storage/bdb/test/scr016/TestConstruct01.java similarity index 100% rename from bdb/test/scr016/TestConstruct01.java rename to storage/bdb/test/scr016/TestConstruct01.java diff --git a/bdb/test/scr016/TestConstruct01.testerr b/storage/bdb/test/scr016/TestConstruct01.testerr similarity index 100% rename from bdb/test/scr016/TestConstruct01.testerr rename to storage/bdb/test/scr016/TestConstruct01.testerr diff --git a/bdb/test/scr016/TestConstruct01.testout b/storage/bdb/test/scr016/TestConstruct01.testout similarity index 100% rename from bdb/test/scr016/TestConstruct01.testout rename to storage/bdb/test/scr016/TestConstruct01.testout diff --git a/bdb/test/scr016/TestConstruct02.java b/storage/bdb/test/scr016/TestConstruct02.java similarity index 100% rename from bdb/test/scr016/TestConstruct02.java rename to storage/bdb/test/scr016/TestConstruct02.java diff --git a/bdb/test/scr016/TestConstruct02.testout b/storage/bdb/test/scr016/TestConstruct02.testout similarity index 100% rename from bdb/test/scr016/TestConstruct02.testout rename to storage/bdb/test/scr016/TestConstruct02.testout diff --git a/bdb/test/scr016/TestDbtFlags.java b/storage/bdb/test/scr016/TestDbtFlags.java similarity index 100% rename from bdb/test/scr016/TestDbtFlags.java rename to storage/bdb/test/scr016/TestDbtFlags.java diff --git a/bdb/test/scr016/TestDbtFlags.testerr b/storage/bdb/test/scr016/TestDbtFlags.testerr similarity index 100% rename from bdb/test/scr016/TestDbtFlags.testerr rename to storage/bdb/test/scr016/TestDbtFlags.testerr diff --git a/bdb/test/scr016/TestDbtFlags.testout b/storage/bdb/test/scr016/TestDbtFlags.testout similarity index 100% rename from bdb/test/scr016/TestDbtFlags.testout rename to storage/bdb/test/scr016/TestDbtFlags.testout diff --git a/bdb/test/scr016/TestGetSetMethods.java b/storage/bdb/test/scr016/TestGetSetMethods.java similarity index 100% rename from bdb/test/scr016/TestGetSetMethods.java rename to storage/bdb/test/scr016/TestGetSetMethods.java diff --git a/bdb/test/scr016/TestKeyRange.java b/storage/bdb/test/scr016/TestKeyRange.java similarity index 100% rename from bdb/test/scr016/TestKeyRange.java rename to storage/bdb/test/scr016/TestKeyRange.java diff --git a/bdb/test/scr016/TestKeyRange.testout b/storage/bdb/test/scr016/TestKeyRange.testout similarity index 100% rename from bdb/test/scr016/TestKeyRange.testout rename to storage/bdb/test/scr016/TestKeyRange.testout diff --git a/bdb/test/scr016/TestLockVec.java b/storage/bdb/test/scr016/TestLockVec.java similarity index 100% rename from bdb/test/scr016/TestLockVec.java rename to storage/bdb/test/scr016/TestLockVec.java diff --git a/bdb/test/scr016/TestLockVec.testout b/storage/bdb/test/scr016/TestLockVec.testout similarity index 100% rename from bdb/test/scr016/TestLockVec.testout rename to storage/bdb/test/scr016/TestLockVec.testout diff --git a/bdb/test/scr016/TestLogc.java b/storage/bdb/test/scr016/TestLogc.java similarity index 100% rename from bdb/test/scr016/TestLogc.java rename to storage/bdb/test/scr016/TestLogc.java diff --git a/bdb/test/scr016/TestLogc.testout b/storage/bdb/test/scr016/TestLogc.testout similarity index 100% rename from bdb/test/scr016/TestLogc.testout rename to storage/bdb/test/scr016/TestLogc.testout diff --git a/bdb/test/scr016/TestOpenEmpty.java b/storage/bdb/test/scr016/TestOpenEmpty.java similarity index 100% rename from bdb/test/scr016/TestOpenEmpty.java rename to storage/bdb/test/scr016/TestOpenEmpty.java diff --git a/bdb/test/scr016/TestOpenEmpty.testerr b/storage/bdb/test/scr016/TestOpenEmpty.testerr similarity index 100% rename from bdb/test/scr016/TestOpenEmpty.testerr rename to storage/bdb/test/scr016/TestOpenEmpty.testerr diff --git a/bdb/test/scr016/TestReplication.java b/storage/bdb/test/scr016/TestReplication.java similarity index 100% rename from bdb/test/scr016/TestReplication.java rename to storage/bdb/test/scr016/TestReplication.java diff --git a/bdb/test/scr016/TestRpcServer.java b/storage/bdb/test/scr016/TestRpcServer.java similarity index 100% rename from bdb/test/scr016/TestRpcServer.java rename to storage/bdb/test/scr016/TestRpcServer.java diff --git a/bdb/test/scr016/TestSameDbt.java b/storage/bdb/test/scr016/TestSameDbt.java similarity index 100% rename from bdb/test/scr016/TestSameDbt.java rename to storage/bdb/test/scr016/TestSameDbt.java diff --git a/bdb/test/scr016/TestSameDbt.testout b/storage/bdb/test/scr016/TestSameDbt.testout similarity index 100% rename from bdb/test/scr016/TestSameDbt.testout rename to storage/bdb/test/scr016/TestSameDbt.testout diff --git a/bdb/test/scr016/TestSimpleAccess.java b/storage/bdb/test/scr016/TestSimpleAccess.java similarity index 100% rename from bdb/test/scr016/TestSimpleAccess.java rename to storage/bdb/test/scr016/TestSimpleAccess.java diff --git a/bdb/test/scr016/TestSimpleAccess.testout b/storage/bdb/test/scr016/TestSimpleAccess.testout similarity index 100% rename from bdb/test/scr016/TestSimpleAccess.testout rename to storage/bdb/test/scr016/TestSimpleAccess.testout diff --git a/bdb/test/scr016/TestStat.java b/storage/bdb/test/scr016/TestStat.java similarity index 100% rename from bdb/test/scr016/TestStat.java rename to storage/bdb/test/scr016/TestStat.java diff --git a/bdb/test/scr016/TestStat.testout b/storage/bdb/test/scr016/TestStat.testout similarity index 100% rename from bdb/test/scr016/TestStat.testout rename to storage/bdb/test/scr016/TestStat.testout diff --git a/bdb/test/scr016/TestTruncate.java b/storage/bdb/test/scr016/TestTruncate.java similarity index 100% rename from bdb/test/scr016/TestTruncate.java rename to storage/bdb/test/scr016/TestTruncate.java diff --git a/bdb/test/scr016/TestTruncate.testout b/storage/bdb/test/scr016/TestTruncate.testout similarity index 100% rename from bdb/test/scr016/TestTruncate.testout rename to storage/bdb/test/scr016/TestTruncate.testout diff --git a/bdb/test/scr016/TestUtil.java b/storage/bdb/test/scr016/TestUtil.java similarity index 100% rename from bdb/test/scr016/TestUtil.java rename to storage/bdb/test/scr016/TestUtil.java diff --git a/bdb/test/scr016/TestXAServlet.java b/storage/bdb/test/scr016/TestXAServlet.java similarity index 100% rename from bdb/test/scr016/TestXAServlet.java rename to storage/bdb/test/scr016/TestXAServlet.java diff --git a/bdb/test/scr016/chk.javatests b/storage/bdb/test/scr016/chk.javatests similarity index 100% rename from bdb/test/scr016/chk.javatests rename to storage/bdb/test/scr016/chk.javatests diff --git a/bdb/test/scr016/ignore b/storage/bdb/test/scr016/ignore similarity index 100% rename from bdb/test/scr016/ignore rename to storage/bdb/test/scr016/ignore diff --git a/bdb/test/scr016/testall b/storage/bdb/test/scr016/testall similarity index 100% rename from bdb/test/scr016/testall rename to storage/bdb/test/scr016/testall diff --git a/bdb/test/scr016/testone b/storage/bdb/test/scr016/testone similarity index 100% rename from bdb/test/scr016/testone rename to storage/bdb/test/scr016/testone diff --git a/bdb/test/scr017/O.BH b/storage/bdb/test/scr017/O.BH similarity index 100% rename from bdb/test/scr017/O.BH rename to storage/bdb/test/scr017/O.BH diff --git a/bdb/test/scr017/O.R b/storage/bdb/test/scr017/O.R similarity index 100% rename from bdb/test/scr017/O.R rename to storage/bdb/test/scr017/O.R diff --git a/bdb/test/scr017/chk.db185 b/storage/bdb/test/scr017/chk.db185 similarity index 100% rename from bdb/test/scr017/chk.db185 rename to storage/bdb/test/scr017/chk.db185 diff --git a/bdb/test/scr017/t.c b/storage/bdb/test/scr017/t.c similarity index 100% rename from bdb/test/scr017/t.c rename to storage/bdb/test/scr017/t.c diff --git a/bdb/test/scr018/chk.comma b/storage/bdb/test/scr018/chk.comma similarity index 100% rename from bdb/test/scr018/chk.comma rename to storage/bdb/test/scr018/chk.comma diff --git a/bdb/test/scr018/t.c b/storage/bdb/test/scr018/t.c similarity index 100% rename from bdb/test/scr018/t.c rename to storage/bdb/test/scr018/t.c diff --git a/bdb/test/scr019/chk.include b/storage/bdb/test/scr019/chk.include similarity index 100% rename from bdb/test/scr019/chk.include rename to storage/bdb/test/scr019/chk.include diff --git a/bdb/test/scr020/chk.inc b/storage/bdb/test/scr020/chk.inc similarity index 100% rename from bdb/test/scr020/chk.inc rename to storage/bdb/test/scr020/chk.inc diff --git a/bdb/test/scr021/chk.flags b/storage/bdb/test/scr021/chk.flags similarity index 100% rename from bdb/test/scr021/chk.flags rename to storage/bdb/test/scr021/chk.flags diff --git a/bdb/test/scr022/chk.rr b/storage/bdb/test/scr022/chk.rr similarity index 100% rename from bdb/test/scr022/chk.rr rename to storage/bdb/test/scr022/chk.rr diff --git a/bdb/test/sdb001.tcl b/storage/bdb/test/sdb001.tcl similarity index 100% rename from bdb/test/sdb001.tcl rename to storage/bdb/test/sdb001.tcl diff --git a/bdb/test/sdb002.tcl b/storage/bdb/test/sdb002.tcl similarity index 100% rename from bdb/test/sdb002.tcl rename to storage/bdb/test/sdb002.tcl diff --git a/bdb/test/sdb003.tcl b/storage/bdb/test/sdb003.tcl similarity index 100% rename from bdb/test/sdb003.tcl rename to storage/bdb/test/sdb003.tcl diff --git a/bdb/test/sdb004.tcl b/storage/bdb/test/sdb004.tcl similarity index 100% rename from bdb/test/sdb004.tcl rename to storage/bdb/test/sdb004.tcl diff --git a/bdb/test/sdb005.tcl b/storage/bdb/test/sdb005.tcl similarity index 100% rename from bdb/test/sdb005.tcl rename to storage/bdb/test/sdb005.tcl diff --git a/bdb/test/sdb006.tcl b/storage/bdb/test/sdb006.tcl similarity index 100% rename from bdb/test/sdb006.tcl rename to storage/bdb/test/sdb006.tcl diff --git a/bdb/test/sdb007.tcl b/storage/bdb/test/sdb007.tcl similarity index 100% rename from bdb/test/sdb007.tcl rename to storage/bdb/test/sdb007.tcl diff --git a/bdb/test/sdb008.tcl b/storage/bdb/test/sdb008.tcl similarity index 100% rename from bdb/test/sdb008.tcl rename to storage/bdb/test/sdb008.tcl diff --git a/bdb/test/sdb009.tcl b/storage/bdb/test/sdb009.tcl similarity index 100% rename from bdb/test/sdb009.tcl rename to storage/bdb/test/sdb009.tcl diff --git a/bdb/test/sdb010.tcl b/storage/bdb/test/sdb010.tcl similarity index 100% rename from bdb/test/sdb010.tcl rename to storage/bdb/test/sdb010.tcl diff --git a/bdb/test/sdb011.tcl b/storage/bdb/test/sdb011.tcl similarity index 100% rename from bdb/test/sdb011.tcl rename to storage/bdb/test/sdb011.tcl diff --git a/bdb/test/sdb012.tcl b/storage/bdb/test/sdb012.tcl similarity index 100% rename from bdb/test/sdb012.tcl rename to storage/bdb/test/sdb012.tcl diff --git a/bdb/test/sdbscript.tcl b/storage/bdb/test/sdbscript.tcl similarity index 100% rename from bdb/test/sdbscript.tcl rename to storage/bdb/test/sdbscript.tcl diff --git a/bdb/test/sdbtest001.tcl b/storage/bdb/test/sdbtest001.tcl similarity index 100% rename from bdb/test/sdbtest001.tcl rename to storage/bdb/test/sdbtest001.tcl diff --git a/bdb/test/sdbtest002.tcl b/storage/bdb/test/sdbtest002.tcl similarity index 100% rename from bdb/test/sdbtest002.tcl rename to storage/bdb/test/sdbtest002.tcl diff --git a/bdb/test/sdbutils.tcl b/storage/bdb/test/sdbutils.tcl similarity index 100% rename from bdb/test/sdbutils.tcl rename to storage/bdb/test/sdbutils.tcl diff --git a/bdb/test/sec001.tcl b/storage/bdb/test/sec001.tcl similarity index 100% rename from bdb/test/sec001.tcl rename to storage/bdb/test/sec001.tcl diff --git a/bdb/test/sec002.tcl b/storage/bdb/test/sec002.tcl similarity index 100% rename from bdb/test/sec002.tcl rename to storage/bdb/test/sec002.tcl diff --git a/bdb/test/shelltest.tcl b/storage/bdb/test/shelltest.tcl similarity index 100% rename from bdb/test/shelltest.tcl rename to storage/bdb/test/shelltest.tcl diff --git a/bdb/test/si001.tcl b/storage/bdb/test/si001.tcl similarity index 100% rename from bdb/test/si001.tcl rename to storage/bdb/test/si001.tcl diff --git a/bdb/test/si002.tcl b/storage/bdb/test/si002.tcl similarity index 100% rename from bdb/test/si002.tcl rename to storage/bdb/test/si002.tcl diff --git a/bdb/test/si003.tcl b/storage/bdb/test/si003.tcl similarity index 100% rename from bdb/test/si003.tcl rename to storage/bdb/test/si003.tcl diff --git a/bdb/test/si004.tcl b/storage/bdb/test/si004.tcl similarity index 100% rename from bdb/test/si004.tcl rename to storage/bdb/test/si004.tcl diff --git a/bdb/test/si005.tcl b/storage/bdb/test/si005.tcl similarity index 100% rename from bdb/test/si005.tcl rename to storage/bdb/test/si005.tcl diff --git a/bdb/test/si006.tcl b/storage/bdb/test/si006.tcl similarity index 100% rename from bdb/test/si006.tcl rename to storage/bdb/test/si006.tcl diff --git a/bdb/test/sindex.tcl b/storage/bdb/test/sindex.tcl similarity index 100% rename from bdb/test/sindex.tcl rename to storage/bdb/test/sindex.tcl diff --git a/bdb/test/sysscript.tcl b/storage/bdb/test/sysscript.tcl similarity index 100% rename from bdb/test/sysscript.tcl rename to storage/bdb/test/sysscript.tcl diff --git a/bdb/test/test.tcl b/storage/bdb/test/test.tcl similarity index 100% rename from bdb/test/test.tcl rename to storage/bdb/test/test.tcl diff --git a/bdb/test/test001.tcl b/storage/bdb/test/test001.tcl similarity index 100% rename from bdb/test/test001.tcl rename to storage/bdb/test/test001.tcl diff --git a/bdb/test/test002.tcl b/storage/bdb/test/test002.tcl similarity index 100% rename from bdb/test/test002.tcl rename to storage/bdb/test/test002.tcl diff --git a/bdb/test/test003.tcl b/storage/bdb/test/test003.tcl similarity index 100% rename from bdb/test/test003.tcl rename to storage/bdb/test/test003.tcl diff --git a/bdb/test/test004.tcl b/storage/bdb/test/test004.tcl similarity index 100% rename from bdb/test/test004.tcl rename to storage/bdb/test/test004.tcl diff --git a/bdb/test/test005.tcl b/storage/bdb/test/test005.tcl similarity index 100% rename from bdb/test/test005.tcl rename to storage/bdb/test/test005.tcl diff --git a/bdb/test/test006.tcl b/storage/bdb/test/test006.tcl similarity index 100% rename from bdb/test/test006.tcl rename to storage/bdb/test/test006.tcl diff --git a/bdb/test/test007.tcl b/storage/bdb/test/test007.tcl similarity index 100% rename from bdb/test/test007.tcl rename to storage/bdb/test/test007.tcl diff --git a/bdb/test/test008.tcl b/storage/bdb/test/test008.tcl similarity index 100% rename from bdb/test/test008.tcl rename to storage/bdb/test/test008.tcl diff --git a/bdb/test/test009.tcl b/storage/bdb/test/test009.tcl similarity index 100% rename from bdb/test/test009.tcl rename to storage/bdb/test/test009.tcl diff --git a/bdb/test/test010.tcl b/storage/bdb/test/test010.tcl similarity index 100% rename from bdb/test/test010.tcl rename to storage/bdb/test/test010.tcl diff --git a/bdb/test/test011.tcl b/storage/bdb/test/test011.tcl similarity index 100% rename from bdb/test/test011.tcl rename to storage/bdb/test/test011.tcl diff --git a/bdb/test/test012.tcl b/storage/bdb/test/test012.tcl similarity index 100% rename from bdb/test/test012.tcl rename to storage/bdb/test/test012.tcl diff --git a/bdb/test/test013.tcl b/storage/bdb/test/test013.tcl similarity index 100% rename from bdb/test/test013.tcl rename to storage/bdb/test/test013.tcl diff --git a/bdb/test/test014.tcl b/storage/bdb/test/test014.tcl similarity index 100% rename from bdb/test/test014.tcl rename to storage/bdb/test/test014.tcl diff --git a/bdb/test/test015.tcl b/storage/bdb/test/test015.tcl similarity index 100% rename from bdb/test/test015.tcl rename to storage/bdb/test/test015.tcl diff --git a/bdb/test/test016.tcl b/storage/bdb/test/test016.tcl similarity index 100% rename from bdb/test/test016.tcl rename to storage/bdb/test/test016.tcl diff --git a/bdb/test/test017.tcl b/storage/bdb/test/test017.tcl similarity index 100% rename from bdb/test/test017.tcl rename to storage/bdb/test/test017.tcl diff --git a/bdb/test/test018.tcl b/storage/bdb/test/test018.tcl similarity index 100% rename from bdb/test/test018.tcl rename to storage/bdb/test/test018.tcl diff --git a/bdb/test/test019.tcl b/storage/bdb/test/test019.tcl similarity index 100% rename from bdb/test/test019.tcl rename to storage/bdb/test/test019.tcl diff --git a/bdb/test/test020.tcl b/storage/bdb/test/test020.tcl similarity index 100% rename from bdb/test/test020.tcl rename to storage/bdb/test/test020.tcl diff --git a/bdb/test/test021.tcl b/storage/bdb/test/test021.tcl similarity index 100% rename from bdb/test/test021.tcl rename to storage/bdb/test/test021.tcl diff --git a/bdb/test/test022.tcl b/storage/bdb/test/test022.tcl similarity index 100% rename from bdb/test/test022.tcl rename to storage/bdb/test/test022.tcl diff --git a/bdb/test/test023.tcl b/storage/bdb/test/test023.tcl similarity index 100% rename from bdb/test/test023.tcl rename to storage/bdb/test/test023.tcl diff --git a/bdb/test/test024.tcl b/storage/bdb/test/test024.tcl similarity index 100% rename from bdb/test/test024.tcl rename to storage/bdb/test/test024.tcl diff --git a/bdb/test/test025.tcl b/storage/bdb/test/test025.tcl similarity index 100% rename from bdb/test/test025.tcl rename to storage/bdb/test/test025.tcl diff --git a/bdb/test/test026.tcl b/storage/bdb/test/test026.tcl similarity index 100% rename from bdb/test/test026.tcl rename to storage/bdb/test/test026.tcl diff --git a/bdb/test/test027.tcl b/storage/bdb/test/test027.tcl similarity index 100% rename from bdb/test/test027.tcl rename to storage/bdb/test/test027.tcl diff --git a/bdb/test/test028.tcl b/storage/bdb/test/test028.tcl similarity index 100% rename from bdb/test/test028.tcl rename to storage/bdb/test/test028.tcl diff --git a/bdb/test/test029.tcl b/storage/bdb/test/test029.tcl similarity index 100% rename from bdb/test/test029.tcl rename to storage/bdb/test/test029.tcl diff --git a/bdb/test/test030.tcl b/storage/bdb/test/test030.tcl similarity index 100% rename from bdb/test/test030.tcl rename to storage/bdb/test/test030.tcl diff --git a/bdb/test/test031.tcl b/storage/bdb/test/test031.tcl similarity index 100% rename from bdb/test/test031.tcl rename to storage/bdb/test/test031.tcl diff --git a/bdb/test/test032.tcl b/storage/bdb/test/test032.tcl similarity index 100% rename from bdb/test/test032.tcl rename to storage/bdb/test/test032.tcl diff --git a/bdb/test/test033.tcl b/storage/bdb/test/test033.tcl similarity index 100% rename from bdb/test/test033.tcl rename to storage/bdb/test/test033.tcl diff --git a/bdb/test/test034.tcl b/storage/bdb/test/test034.tcl similarity index 100% rename from bdb/test/test034.tcl rename to storage/bdb/test/test034.tcl diff --git a/bdb/test/test035.tcl b/storage/bdb/test/test035.tcl similarity index 100% rename from bdb/test/test035.tcl rename to storage/bdb/test/test035.tcl diff --git a/bdb/test/test036.tcl b/storage/bdb/test/test036.tcl similarity index 100% rename from bdb/test/test036.tcl rename to storage/bdb/test/test036.tcl diff --git a/bdb/test/test037.tcl b/storage/bdb/test/test037.tcl similarity index 100% rename from bdb/test/test037.tcl rename to storage/bdb/test/test037.tcl diff --git a/bdb/test/test038.tcl b/storage/bdb/test/test038.tcl similarity index 100% rename from bdb/test/test038.tcl rename to storage/bdb/test/test038.tcl diff --git a/bdb/test/test039.tcl b/storage/bdb/test/test039.tcl similarity index 100% rename from bdb/test/test039.tcl rename to storage/bdb/test/test039.tcl diff --git a/bdb/test/test040.tcl b/storage/bdb/test/test040.tcl similarity index 100% rename from bdb/test/test040.tcl rename to storage/bdb/test/test040.tcl diff --git a/bdb/test/test041.tcl b/storage/bdb/test/test041.tcl similarity index 100% rename from bdb/test/test041.tcl rename to storage/bdb/test/test041.tcl diff --git a/bdb/test/test042.tcl b/storage/bdb/test/test042.tcl similarity index 100% rename from bdb/test/test042.tcl rename to storage/bdb/test/test042.tcl diff --git a/bdb/test/test043.tcl b/storage/bdb/test/test043.tcl similarity index 100% rename from bdb/test/test043.tcl rename to storage/bdb/test/test043.tcl diff --git a/bdb/test/test044.tcl b/storage/bdb/test/test044.tcl similarity index 100% rename from bdb/test/test044.tcl rename to storage/bdb/test/test044.tcl diff --git a/bdb/test/test045.tcl b/storage/bdb/test/test045.tcl similarity index 100% rename from bdb/test/test045.tcl rename to storage/bdb/test/test045.tcl diff --git a/bdb/test/test046.tcl b/storage/bdb/test/test046.tcl similarity index 100% rename from bdb/test/test046.tcl rename to storage/bdb/test/test046.tcl diff --git a/bdb/test/test047.tcl b/storage/bdb/test/test047.tcl similarity index 100% rename from bdb/test/test047.tcl rename to storage/bdb/test/test047.tcl diff --git a/bdb/test/test048.tcl b/storage/bdb/test/test048.tcl similarity index 100% rename from bdb/test/test048.tcl rename to storage/bdb/test/test048.tcl diff --git a/bdb/test/test049.tcl b/storage/bdb/test/test049.tcl similarity index 100% rename from bdb/test/test049.tcl rename to storage/bdb/test/test049.tcl diff --git a/bdb/test/test050.tcl b/storage/bdb/test/test050.tcl similarity index 100% rename from bdb/test/test050.tcl rename to storage/bdb/test/test050.tcl diff --git a/bdb/test/test051.tcl b/storage/bdb/test/test051.tcl similarity index 100% rename from bdb/test/test051.tcl rename to storage/bdb/test/test051.tcl diff --git a/bdb/test/test052.tcl b/storage/bdb/test/test052.tcl similarity index 100% rename from bdb/test/test052.tcl rename to storage/bdb/test/test052.tcl diff --git a/bdb/test/test053.tcl b/storage/bdb/test/test053.tcl similarity index 100% rename from bdb/test/test053.tcl rename to storage/bdb/test/test053.tcl diff --git a/bdb/test/test054.tcl b/storage/bdb/test/test054.tcl similarity index 100% rename from bdb/test/test054.tcl rename to storage/bdb/test/test054.tcl diff --git a/bdb/test/test055.tcl b/storage/bdb/test/test055.tcl similarity index 100% rename from bdb/test/test055.tcl rename to storage/bdb/test/test055.tcl diff --git a/bdb/test/test056.tcl b/storage/bdb/test/test056.tcl similarity index 100% rename from bdb/test/test056.tcl rename to storage/bdb/test/test056.tcl diff --git a/bdb/test/test057.tcl b/storage/bdb/test/test057.tcl similarity index 100% rename from bdb/test/test057.tcl rename to storage/bdb/test/test057.tcl diff --git a/bdb/test/test058.tcl b/storage/bdb/test/test058.tcl similarity index 100% rename from bdb/test/test058.tcl rename to storage/bdb/test/test058.tcl diff --git a/bdb/test/test059.tcl b/storage/bdb/test/test059.tcl similarity index 100% rename from bdb/test/test059.tcl rename to storage/bdb/test/test059.tcl diff --git a/bdb/test/test060.tcl b/storage/bdb/test/test060.tcl similarity index 100% rename from bdb/test/test060.tcl rename to storage/bdb/test/test060.tcl diff --git a/bdb/test/test061.tcl b/storage/bdb/test/test061.tcl similarity index 100% rename from bdb/test/test061.tcl rename to storage/bdb/test/test061.tcl diff --git a/bdb/test/test062.tcl b/storage/bdb/test/test062.tcl similarity index 100% rename from bdb/test/test062.tcl rename to storage/bdb/test/test062.tcl diff --git a/bdb/test/test063.tcl b/storage/bdb/test/test063.tcl similarity index 100% rename from bdb/test/test063.tcl rename to storage/bdb/test/test063.tcl diff --git a/bdb/test/test064.tcl b/storage/bdb/test/test064.tcl similarity index 100% rename from bdb/test/test064.tcl rename to storage/bdb/test/test064.tcl diff --git a/bdb/test/test065.tcl b/storage/bdb/test/test065.tcl similarity index 100% rename from bdb/test/test065.tcl rename to storage/bdb/test/test065.tcl diff --git a/bdb/test/test066.tcl b/storage/bdb/test/test066.tcl similarity index 100% rename from bdb/test/test066.tcl rename to storage/bdb/test/test066.tcl diff --git a/bdb/test/test067.tcl b/storage/bdb/test/test067.tcl similarity index 100% rename from bdb/test/test067.tcl rename to storage/bdb/test/test067.tcl diff --git a/bdb/test/test068.tcl b/storage/bdb/test/test068.tcl similarity index 100% rename from bdb/test/test068.tcl rename to storage/bdb/test/test068.tcl diff --git a/bdb/test/test069.tcl b/storage/bdb/test/test069.tcl similarity index 100% rename from bdb/test/test069.tcl rename to storage/bdb/test/test069.tcl diff --git a/bdb/test/test070.tcl b/storage/bdb/test/test070.tcl similarity index 100% rename from bdb/test/test070.tcl rename to storage/bdb/test/test070.tcl diff --git a/bdb/test/test071.tcl b/storage/bdb/test/test071.tcl similarity index 100% rename from bdb/test/test071.tcl rename to storage/bdb/test/test071.tcl diff --git a/bdb/test/test072.tcl b/storage/bdb/test/test072.tcl similarity index 100% rename from bdb/test/test072.tcl rename to storage/bdb/test/test072.tcl diff --git a/bdb/test/test073.tcl b/storage/bdb/test/test073.tcl similarity index 100% rename from bdb/test/test073.tcl rename to storage/bdb/test/test073.tcl diff --git a/bdb/test/test074.tcl b/storage/bdb/test/test074.tcl similarity index 100% rename from bdb/test/test074.tcl rename to storage/bdb/test/test074.tcl diff --git a/bdb/test/test075.tcl b/storage/bdb/test/test075.tcl similarity index 100% rename from bdb/test/test075.tcl rename to storage/bdb/test/test075.tcl diff --git a/bdb/test/test076.tcl b/storage/bdb/test/test076.tcl similarity index 100% rename from bdb/test/test076.tcl rename to storage/bdb/test/test076.tcl diff --git a/bdb/test/test077.tcl b/storage/bdb/test/test077.tcl similarity index 100% rename from bdb/test/test077.tcl rename to storage/bdb/test/test077.tcl diff --git a/bdb/test/test078.tcl b/storage/bdb/test/test078.tcl similarity index 100% rename from bdb/test/test078.tcl rename to storage/bdb/test/test078.tcl diff --git a/bdb/test/test079.tcl b/storage/bdb/test/test079.tcl similarity index 100% rename from bdb/test/test079.tcl rename to storage/bdb/test/test079.tcl diff --git a/bdb/test/test080.tcl b/storage/bdb/test/test080.tcl similarity index 100% rename from bdb/test/test080.tcl rename to storage/bdb/test/test080.tcl diff --git a/bdb/test/test081.tcl b/storage/bdb/test/test081.tcl similarity index 100% rename from bdb/test/test081.tcl rename to storage/bdb/test/test081.tcl diff --git a/bdb/test/test082.tcl b/storage/bdb/test/test082.tcl similarity index 100% rename from bdb/test/test082.tcl rename to storage/bdb/test/test082.tcl diff --git a/bdb/test/test083.tcl b/storage/bdb/test/test083.tcl similarity index 100% rename from bdb/test/test083.tcl rename to storage/bdb/test/test083.tcl diff --git a/bdb/test/test084.tcl b/storage/bdb/test/test084.tcl similarity index 100% rename from bdb/test/test084.tcl rename to storage/bdb/test/test084.tcl diff --git a/bdb/test/test085.tcl b/storage/bdb/test/test085.tcl similarity index 100% rename from bdb/test/test085.tcl rename to storage/bdb/test/test085.tcl diff --git a/bdb/test/test086.tcl b/storage/bdb/test/test086.tcl similarity index 100% rename from bdb/test/test086.tcl rename to storage/bdb/test/test086.tcl diff --git a/bdb/test/test087.tcl b/storage/bdb/test/test087.tcl similarity index 100% rename from bdb/test/test087.tcl rename to storage/bdb/test/test087.tcl diff --git a/bdb/test/test088.tcl b/storage/bdb/test/test088.tcl similarity index 100% rename from bdb/test/test088.tcl rename to storage/bdb/test/test088.tcl diff --git a/bdb/test/test089.tcl b/storage/bdb/test/test089.tcl similarity index 100% rename from bdb/test/test089.tcl rename to storage/bdb/test/test089.tcl diff --git a/bdb/test/test090.tcl b/storage/bdb/test/test090.tcl similarity index 100% rename from bdb/test/test090.tcl rename to storage/bdb/test/test090.tcl diff --git a/bdb/test/test091.tcl b/storage/bdb/test/test091.tcl similarity index 100% rename from bdb/test/test091.tcl rename to storage/bdb/test/test091.tcl diff --git a/bdb/test/test092.tcl b/storage/bdb/test/test092.tcl similarity index 100% rename from bdb/test/test092.tcl rename to storage/bdb/test/test092.tcl diff --git a/bdb/test/test093.tcl b/storage/bdb/test/test093.tcl similarity index 100% rename from bdb/test/test093.tcl rename to storage/bdb/test/test093.tcl diff --git a/bdb/test/test094.tcl b/storage/bdb/test/test094.tcl similarity index 100% rename from bdb/test/test094.tcl rename to storage/bdb/test/test094.tcl diff --git a/bdb/test/test095.tcl b/storage/bdb/test/test095.tcl similarity index 100% rename from bdb/test/test095.tcl rename to storage/bdb/test/test095.tcl diff --git a/bdb/test/test096.tcl b/storage/bdb/test/test096.tcl similarity index 100% rename from bdb/test/test096.tcl rename to storage/bdb/test/test096.tcl diff --git a/bdb/test/test097.tcl b/storage/bdb/test/test097.tcl similarity index 100% rename from bdb/test/test097.tcl rename to storage/bdb/test/test097.tcl diff --git a/bdb/test/test098.tcl b/storage/bdb/test/test098.tcl similarity index 100% rename from bdb/test/test098.tcl rename to storage/bdb/test/test098.tcl diff --git a/bdb/test/test099.tcl b/storage/bdb/test/test099.tcl similarity index 100% rename from bdb/test/test099.tcl rename to storage/bdb/test/test099.tcl diff --git a/bdb/test/test100.tcl b/storage/bdb/test/test100.tcl similarity index 100% rename from bdb/test/test100.tcl rename to storage/bdb/test/test100.tcl diff --git a/bdb/test/test101.tcl b/storage/bdb/test/test101.tcl similarity index 100% rename from bdb/test/test101.tcl rename to storage/bdb/test/test101.tcl diff --git a/bdb/test/testparams.tcl b/storage/bdb/test/testparams.tcl similarity index 100% rename from bdb/test/testparams.tcl rename to storage/bdb/test/testparams.tcl diff --git a/bdb/test/testutils.tcl b/storage/bdb/test/testutils.tcl similarity index 100% rename from bdb/test/testutils.tcl rename to storage/bdb/test/testutils.tcl diff --git a/bdb/test/txn001.tcl b/storage/bdb/test/txn001.tcl similarity index 100% rename from bdb/test/txn001.tcl rename to storage/bdb/test/txn001.tcl diff --git a/bdb/test/txn002.tcl b/storage/bdb/test/txn002.tcl similarity index 100% rename from bdb/test/txn002.tcl rename to storage/bdb/test/txn002.tcl diff --git a/bdb/test/txn003.tcl b/storage/bdb/test/txn003.tcl similarity index 100% rename from bdb/test/txn003.tcl rename to storage/bdb/test/txn003.tcl diff --git a/bdb/test/txn004.tcl b/storage/bdb/test/txn004.tcl similarity index 100% rename from bdb/test/txn004.tcl rename to storage/bdb/test/txn004.tcl diff --git a/bdb/test/txn005.tcl b/storage/bdb/test/txn005.tcl similarity index 100% rename from bdb/test/txn005.tcl rename to storage/bdb/test/txn005.tcl diff --git a/bdb/test/txn006.tcl b/storage/bdb/test/txn006.tcl similarity index 100% rename from bdb/test/txn006.tcl rename to storage/bdb/test/txn006.tcl diff --git a/bdb/test/txn007.tcl b/storage/bdb/test/txn007.tcl similarity index 100% rename from bdb/test/txn007.tcl rename to storage/bdb/test/txn007.tcl diff --git a/bdb/test/txn008.tcl b/storage/bdb/test/txn008.tcl similarity index 100% rename from bdb/test/txn008.tcl rename to storage/bdb/test/txn008.tcl diff --git a/bdb/test/txn009.tcl b/storage/bdb/test/txn009.tcl similarity index 100% rename from bdb/test/txn009.tcl rename to storage/bdb/test/txn009.tcl diff --git a/bdb/test/txnscript.tcl b/storage/bdb/test/txnscript.tcl similarity index 100% rename from bdb/test/txnscript.tcl rename to storage/bdb/test/txnscript.tcl diff --git a/bdb/test/update.tcl b/storage/bdb/test/update.tcl similarity index 100% rename from bdb/test/update.tcl rename to storage/bdb/test/update.tcl diff --git a/bdb/test/upgrade.tcl b/storage/bdb/test/upgrade.tcl similarity index 100% rename from bdb/test/upgrade.tcl rename to storage/bdb/test/upgrade.tcl diff --git a/bdb/test/wordlist b/storage/bdb/test/wordlist similarity index 100% rename from bdb/test/wordlist rename to storage/bdb/test/wordlist diff --git a/bdb/test/wrap.tcl b/storage/bdb/test/wrap.tcl similarity index 100% rename from bdb/test/wrap.tcl rename to storage/bdb/test/wrap.tcl diff --git a/bdb/txn/txn.c b/storage/bdb/txn/txn.c similarity index 100% rename from bdb/txn/txn.c rename to storage/bdb/txn/txn.c diff --git a/bdb/txn/txn.src b/storage/bdb/txn/txn.src similarity index 100% rename from bdb/txn/txn.src rename to storage/bdb/txn/txn.src diff --git a/bdb/txn/txn_method.c b/storage/bdb/txn/txn_method.c similarity index 100% rename from bdb/txn/txn_method.c rename to storage/bdb/txn/txn_method.c diff --git a/bdb/txn/txn_rec.c b/storage/bdb/txn/txn_rec.c similarity index 100% rename from bdb/txn/txn_rec.c rename to storage/bdb/txn/txn_rec.c diff --git a/bdb/txn/txn_recover.c b/storage/bdb/txn/txn_recover.c similarity index 100% rename from bdb/txn/txn_recover.c rename to storage/bdb/txn/txn_recover.c diff --git a/bdb/txn/txn_region.c b/storage/bdb/txn/txn_region.c similarity index 100% rename from bdb/txn/txn_region.c rename to storage/bdb/txn/txn_region.c diff --git a/bdb/txn/txn_stat.c b/storage/bdb/txn/txn_stat.c similarity index 100% rename from bdb/txn/txn_stat.c rename to storage/bdb/txn/txn_stat.c diff --git a/bdb/txn/txn_util.c b/storage/bdb/txn/txn_util.c similarity index 100% rename from bdb/txn/txn_util.c rename to storage/bdb/txn/txn_util.c diff --git a/bdb/xa/xa.c b/storage/bdb/xa/xa.c similarity index 100% rename from bdb/xa/xa.c rename to storage/bdb/xa/xa.c diff --git a/bdb/xa/xa_db.c b/storage/bdb/xa/xa_db.c similarity index 100% rename from bdb/xa/xa_db.c rename to storage/bdb/xa/xa_db.c diff --git a/bdb/xa/xa_map.c b/storage/bdb/xa/xa_map.c similarity index 100% rename from bdb/xa/xa_map.c rename to storage/bdb/xa/xa_map.c diff --git a/heap/.cvsignore b/storage/heap/.cvsignore similarity index 100% rename from heap/.cvsignore rename to storage/heap/.cvsignore diff --git a/heap/ChangeLog b/storage/heap/ChangeLog similarity index 100% rename from heap/ChangeLog rename to storage/heap/ChangeLog diff --git a/heap/Makefile.am b/storage/heap/Makefile.am similarity index 91% rename from heap/Makefile.am rename to storage/heap/Makefile.am index 2262fa3d5b1..f9f0ba775ff 100644 --- a/heap/Makefile.am +++ b/storage/heap/Makefile.am @@ -15,8 +15,9 @@ # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA INCLUDES = -I$(top_srcdir)/include -LDADD = libheap.a ../mysys/libmysys.a ../dbug/libdbug.a \ - ../strings/libmystrings.a +LDADD = libheap.a $(top_srcdir)/mysys/libmysys.a \ + $(top_srcdir)/dbug/libdbug.a \ + $(top_srcdir)/strings/libmystrings.a pkglib_LIBRARIES = libheap.a noinst_PROGRAMS = hp_test1 hp_test2 hp_test1_LDFLAGS = @NOINST_LDFLAGS@ diff --git a/heap/_check.c b/storage/heap/_check.c similarity index 100% rename from heap/_check.c rename to storage/heap/_check.c diff --git a/heap/_rectest.c b/storage/heap/_rectest.c similarity index 100% rename from heap/_rectest.c rename to storage/heap/_rectest.c diff --git a/heap/heapdef.h b/storage/heap/heapdef.h similarity index 100% rename from heap/heapdef.h rename to storage/heap/heapdef.h diff --git a/heap/hp_block.c b/storage/heap/hp_block.c similarity index 100% rename from heap/hp_block.c rename to storage/heap/hp_block.c diff --git a/heap/hp_clear.c b/storage/heap/hp_clear.c similarity index 100% rename from heap/hp_clear.c rename to storage/heap/hp_clear.c diff --git a/heap/hp_close.c b/storage/heap/hp_close.c similarity index 100% rename from heap/hp_close.c rename to storage/heap/hp_close.c diff --git a/heap/hp_create.c b/storage/heap/hp_create.c similarity index 100% rename from heap/hp_create.c rename to storage/heap/hp_create.c diff --git a/heap/hp_delete.c b/storage/heap/hp_delete.c similarity index 100% rename from heap/hp_delete.c rename to storage/heap/hp_delete.c diff --git a/heap/hp_extra.c b/storage/heap/hp_extra.c similarity index 100% rename from heap/hp_extra.c rename to storage/heap/hp_extra.c diff --git a/heap/hp_hash.c b/storage/heap/hp_hash.c similarity index 100% rename from heap/hp_hash.c rename to storage/heap/hp_hash.c diff --git a/heap/hp_info.c b/storage/heap/hp_info.c similarity index 100% rename from heap/hp_info.c rename to storage/heap/hp_info.c diff --git a/heap/hp_open.c b/storage/heap/hp_open.c similarity index 100% rename from heap/hp_open.c rename to storage/heap/hp_open.c diff --git a/heap/hp_panic.c b/storage/heap/hp_panic.c similarity index 100% rename from heap/hp_panic.c rename to storage/heap/hp_panic.c diff --git a/heap/hp_rename.c b/storage/heap/hp_rename.c similarity index 100% rename from heap/hp_rename.c rename to storage/heap/hp_rename.c diff --git a/heap/hp_rfirst.c b/storage/heap/hp_rfirst.c similarity index 100% rename from heap/hp_rfirst.c rename to storage/heap/hp_rfirst.c diff --git a/heap/hp_rkey.c b/storage/heap/hp_rkey.c similarity index 100% rename from heap/hp_rkey.c rename to storage/heap/hp_rkey.c diff --git a/heap/hp_rlast.c b/storage/heap/hp_rlast.c similarity index 100% rename from heap/hp_rlast.c rename to storage/heap/hp_rlast.c diff --git a/heap/hp_rnext.c b/storage/heap/hp_rnext.c similarity index 100% rename from heap/hp_rnext.c rename to storage/heap/hp_rnext.c diff --git a/heap/hp_rprev.c b/storage/heap/hp_rprev.c similarity index 100% rename from heap/hp_rprev.c rename to storage/heap/hp_rprev.c diff --git a/heap/hp_rrnd.c b/storage/heap/hp_rrnd.c similarity index 100% rename from heap/hp_rrnd.c rename to storage/heap/hp_rrnd.c diff --git a/heap/hp_rsame.c b/storage/heap/hp_rsame.c similarity index 100% rename from heap/hp_rsame.c rename to storage/heap/hp_rsame.c diff --git a/heap/hp_scan.c b/storage/heap/hp_scan.c similarity index 100% rename from heap/hp_scan.c rename to storage/heap/hp_scan.c diff --git a/heap/hp_static.c b/storage/heap/hp_static.c similarity index 100% rename from heap/hp_static.c rename to storage/heap/hp_static.c diff --git a/heap/hp_test1.c b/storage/heap/hp_test1.c similarity index 100% rename from heap/hp_test1.c rename to storage/heap/hp_test1.c diff --git a/heap/hp_test2.c b/storage/heap/hp_test2.c similarity index 100% rename from heap/hp_test2.c rename to storage/heap/hp_test2.c diff --git a/heap/hp_update.c b/storage/heap/hp_update.c similarity index 100% rename from heap/hp_update.c rename to storage/heap/hp_update.c diff --git a/heap/hp_write.c b/storage/heap/hp_write.c similarity index 100% rename from heap/hp_write.c rename to storage/heap/hp_write.c diff --git a/heap/make-ccc b/storage/heap/make-ccc similarity index 100% rename from heap/make-ccc rename to storage/heap/make-ccc diff --git a/innobase/Makefile.am b/storage/innobase/Makefile.am similarity index 100% rename from innobase/Makefile.am rename to storage/innobase/Makefile.am diff --git a/innobase/btr/Makefile.am b/storage/innobase/btr/Makefile.am similarity index 100% rename from innobase/btr/Makefile.am rename to storage/innobase/btr/Makefile.am diff --git a/innobase/btr/btr0btr.c b/storage/innobase/btr/btr0btr.c similarity index 100% rename from innobase/btr/btr0btr.c rename to storage/innobase/btr/btr0btr.c diff --git a/innobase/btr/btr0cur.c b/storage/innobase/btr/btr0cur.c similarity index 100% rename from innobase/btr/btr0cur.c rename to storage/innobase/btr/btr0cur.c diff --git a/innobase/btr/btr0pcur.c b/storage/innobase/btr/btr0pcur.c similarity index 100% rename from innobase/btr/btr0pcur.c rename to storage/innobase/btr/btr0pcur.c diff --git a/innobase/btr/btr0sea.c b/storage/innobase/btr/btr0sea.c similarity index 100% rename from innobase/btr/btr0sea.c rename to storage/innobase/btr/btr0sea.c diff --git a/innobase/btr/makefilewin b/storage/innobase/btr/makefilewin similarity index 100% rename from innobase/btr/makefilewin rename to storage/innobase/btr/makefilewin diff --git a/innobase/buf/Makefile.am b/storage/innobase/buf/Makefile.am similarity index 100% rename from innobase/buf/Makefile.am rename to storage/innobase/buf/Makefile.am diff --git a/innobase/buf/buf0buf.c b/storage/innobase/buf/buf0buf.c similarity index 100% rename from innobase/buf/buf0buf.c rename to storage/innobase/buf/buf0buf.c diff --git a/innobase/buf/buf0flu.c b/storage/innobase/buf/buf0flu.c similarity index 100% rename from innobase/buf/buf0flu.c rename to storage/innobase/buf/buf0flu.c diff --git a/innobase/buf/buf0lru.c b/storage/innobase/buf/buf0lru.c similarity index 100% rename from innobase/buf/buf0lru.c rename to storage/innobase/buf/buf0lru.c diff --git a/innobase/buf/buf0rea.c b/storage/innobase/buf/buf0rea.c similarity index 100% rename from innobase/buf/buf0rea.c rename to storage/innobase/buf/buf0rea.c diff --git a/innobase/buf/makefilewin b/storage/innobase/buf/makefilewin similarity index 100% rename from innobase/buf/makefilewin rename to storage/innobase/buf/makefilewin diff --git a/innobase/configure.in b/storage/innobase/configure.in similarity index 100% rename from innobase/configure.in rename to storage/innobase/configure.in diff --git a/innobase/data/Makefile.am b/storage/innobase/data/Makefile.am similarity index 100% rename from innobase/data/Makefile.am rename to storage/innobase/data/Makefile.am diff --git a/innobase/data/data0data.c b/storage/innobase/data/data0data.c similarity index 100% rename from innobase/data/data0data.c rename to storage/innobase/data/data0data.c diff --git a/innobase/data/data0type.c b/storage/innobase/data/data0type.c similarity index 100% rename from innobase/data/data0type.c rename to storage/innobase/data/data0type.c diff --git a/innobase/data/makefilewin b/storage/innobase/data/makefilewin similarity index 100% rename from innobase/data/makefilewin rename to storage/innobase/data/makefilewin diff --git a/innobase/db/db0err.h b/storage/innobase/db/db0err.h similarity index 100% rename from innobase/db/db0err.h rename to storage/innobase/db/db0err.h diff --git a/innobase/dict/Makefile.am b/storage/innobase/dict/Makefile.am similarity index 100% rename from innobase/dict/Makefile.am rename to storage/innobase/dict/Makefile.am diff --git a/innobase/dict/dict0boot.c b/storage/innobase/dict/dict0boot.c similarity index 100% rename from innobase/dict/dict0boot.c rename to storage/innobase/dict/dict0boot.c diff --git a/innobase/dict/dict0crea.c b/storage/innobase/dict/dict0crea.c similarity index 100% rename from innobase/dict/dict0crea.c rename to storage/innobase/dict/dict0crea.c diff --git a/innobase/dict/dict0dict.c b/storage/innobase/dict/dict0dict.c similarity index 100% rename from innobase/dict/dict0dict.c rename to storage/innobase/dict/dict0dict.c diff --git a/innobase/dict/dict0load.c b/storage/innobase/dict/dict0load.c similarity index 100% rename from innobase/dict/dict0load.c rename to storage/innobase/dict/dict0load.c diff --git a/innobase/dict/dict0mem.c b/storage/innobase/dict/dict0mem.c similarity index 100% rename from innobase/dict/dict0mem.c rename to storage/innobase/dict/dict0mem.c diff --git a/innobase/dict/makefilewin b/storage/innobase/dict/makefilewin similarity index 100% rename from innobase/dict/makefilewin rename to storage/innobase/dict/makefilewin diff --git a/innobase/dyn/Makefile.am b/storage/innobase/dyn/Makefile.am similarity index 100% rename from innobase/dyn/Makefile.am rename to storage/innobase/dyn/Makefile.am diff --git a/innobase/dyn/dyn0dyn.c b/storage/innobase/dyn/dyn0dyn.c similarity index 100% rename from innobase/dyn/dyn0dyn.c rename to storage/innobase/dyn/dyn0dyn.c diff --git a/innobase/dyn/makefilewin b/storage/innobase/dyn/makefilewin similarity index 100% rename from innobase/dyn/makefilewin rename to storage/innobase/dyn/makefilewin diff --git a/innobase/eval/Makefile.am b/storage/innobase/eval/Makefile.am similarity index 100% rename from innobase/eval/Makefile.am rename to storage/innobase/eval/Makefile.am diff --git a/innobase/eval/eval0eval.c b/storage/innobase/eval/eval0eval.c similarity index 100% rename from innobase/eval/eval0eval.c rename to storage/innobase/eval/eval0eval.c diff --git a/innobase/eval/eval0proc.c b/storage/innobase/eval/eval0proc.c similarity index 100% rename from innobase/eval/eval0proc.c rename to storage/innobase/eval/eval0proc.c diff --git a/innobase/eval/makefilewin b/storage/innobase/eval/makefilewin similarity index 100% rename from innobase/eval/makefilewin rename to storage/innobase/eval/makefilewin diff --git a/innobase/fil/Makefile.am b/storage/innobase/fil/Makefile.am similarity index 100% rename from innobase/fil/Makefile.am rename to storage/innobase/fil/Makefile.am diff --git a/innobase/fil/fil0fil.c b/storage/innobase/fil/fil0fil.c similarity index 100% rename from innobase/fil/fil0fil.c rename to storage/innobase/fil/fil0fil.c diff --git a/innobase/fil/makefilewin b/storage/innobase/fil/makefilewin similarity index 100% rename from innobase/fil/makefilewin rename to storage/innobase/fil/makefilewin diff --git a/innobase/fsp/Makefile.am b/storage/innobase/fsp/Makefile.am similarity index 100% rename from innobase/fsp/Makefile.am rename to storage/innobase/fsp/Makefile.am diff --git a/innobase/fsp/fsp0fsp.c b/storage/innobase/fsp/fsp0fsp.c similarity index 100% rename from innobase/fsp/fsp0fsp.c rename to storage/innobase/fsp/fsp0fsp.c diff --git a/innobase/fsp/makefilewin b/storage/innobase/fsp/makefilewin similarity index 100% rename from innobase/fsp/makefilewin rename to storage/innobase/fsp/makefilewin diff --git a/innobase/fut/Makefile.am b/storage/innobase/fut/Makefile.am similarity index 100% rename from innobase/fut/Makefile.am rename to storage/innobase/fut/Makefile.am diff --git a/innobase/fut/fut0fut.c b/storage/innobase/fut/fut0fut.c similarity index 100% rename from innobase/fut/fut0fut.c rename to storage/innobase/fut/fut0fut.c diff --git a/innobase/fut/fut0lst.c b/storage/innobase/fut/fut0lst.c similarity index 100% rename from innobase/fut/fut0lst.c rename to storage/innobase/fut/fut0lst.c diff --git a/innobase/fut/makefilewin b/storage/innobase/fut/makefilewin similarity index 100% rename from innobase/fut/makefilewin rename to storage/innobase/fut/makefilewin diff --git a/innobase/ha/Makefile.am b/storage/innobase/ha/Makefile.am similarity index 100% rename from innobase/ha/Makefile.am rename to storage/innobase/ha/Makefile.am diff --git a/innobase/ha/ha0ha.c b/storage/innobase/ha/ha0ha.c similarity index 100% rename from innobase/ha/ha0ha.c rename to storage/innobase/ha/ha0ha.c diff --git a/innobase/ha/hash0hash.c b/storage/innobase/ha/hash0hash.c similarity index 100% rename from innobase/ha/hash0hash.c rename to storage/innobase/ha/hash0hash.c diff --git a/innobase/ha/makefilewin b/storage/innobase/ha/makefilewin similarity index 100% rename from innobase/ha/makefilewin rename to storage/innobase/ha/makefilewin diff --git a/innobase/ibuf/Makefile.am b/storage/innobase/ibuf/Makefile.am similarity index 100% rename from innobase/ibuf/Makefile.am rename to storage/innobase/ibuf/Makefile.am diff --git a/innobase/ibuf/ibuf0ibuf.c b/storage/innobase/ibuf/ibuf0ibuf.c similarity index 100% rename from innobase/ibuf/ibuf0ibuf.c rename to storage/innobase/ibuf/ibuf0ibuf.c diff --git a/innobase/ibuf/makefilewin b/storage/innobase/ibuf/makefilewin similarity index 100% rename from innobase/ibuf/makefilewin rename to storage/innobase/ibuf/makefilewin diff --git a/innobase/include/Makefile.am b/storage/innobase/include/Makefile.am similarity index 100% rename from innobase/include/Makefile.am rename to storage/innobase/include/Makefile.am diff --git a/innobase/include/Makefile.i b/storage/innobase/include/Makefile.i similarity index 59% rename from innobase/include/Makefile.i rename to storage/innobase/include/Makefile.i index f3e3fbe989e..87952a7abc8 100644 --- a/innobase/include/Makefile.i +++ b/storage/innobase/include/Makefile.i @@ -1,6 +1,6 @@ # Makefile included in Makefile.am in every subdirectory -INCLUDES = -I$(srcdir)/../include -I$(srcdir)/../../include -I../../include +INCLUDES = -I$(top_srcdir)/include -I$(top_srcdir)/../../include # Don't update the files from bitkeeper %::SCCS/s.% diff --git a/innobase/include/btr0btr.h b/storage/innobase/include/btr0btr.h similarity index 100% rename from innobase/include/btr0btr.h rename to storage/innobase/include/btr0btr.h diff --git a/innobase/include/btr0btr.ic b/storage/innobase/include/btr0btr.ic similarity index 100% rename from innobase/include/btr0btr.ic rename to storage/innobase/include/btr0btr.ic diff --git a/innobase/include/btr0cur.h b/storage/innobase/include/btr0cur.h similarity index 100% rename from innobase/include/btr0cur.h rename to storage/innobase/include/btr0cur.h diff --git a/innobase/include/btr0cur.ic b/storage/innobase/include/btr0cur.ic similarity index 100% rename from innobase/include/btr0cur.ic rename to storage/innobase/include/btr0cur.ic diff --git a/innobase/include/btr0pcur.h b/storage/innobase/include/btr0pcur.h similarity index 100% rename from innobase/include/btr0pcur.h rename to storage/innobase/include/btr0pcur.h diff --git a/innobase/include/btr0pcur.ic b/storage/innobase/include/btr0pcur.ic similarity index 100% rename from innobase/include/btr0pcur.ic rename to storage/innobase/include/btr0pcur.ic diff --git a/innobase/include/btr0sea.h b/storage/innobase/include/btr0sea.h similarity index 100% rename from innobase/include/btr0sea.h rename to storage/innobase/include/btr0sea.h diff --git a/innobase/include/btr0sea.ic b/storage/innobase/include/btr0sea.ic similarity index 100% rename from innobase/include/btr0sea.ic rename to storage/innobase/include/btr0sea.ic diff --git a/innobase/include/btr0types.h b/storage/innobase/include/btr0types.h similarity index 100% rename from innobase/include/btr0types.h rename to storage/innobase/include/btr0types.h diff --git a/innobase/include/buf0buf.h b/storage/innobase/include/buf0buf.h similarity index 100% rename from innobase/include/buf0buf.h rename to storage/innobase/include/buf0buf.h diff --git a/innobase/include/buf0buf.ic b/storage/innobase/include/buf0buf.ic similarity index 100% rename from innobase/include/buf0buf.ic rename to storage/innobase/include/buf0buf.ic diff --git a/innobase/include/buf0flu.h b/storage/innobase/include/buf0flu.h similarity index 100% rename from innobase/include/buf0flu.h rename to storage/innobase/include/buf0flu.h diff --git a/innobase/include/buf0flu.ic b/storage/innobase/include/buf0flu.ic similarity index 100% rename from innobase/include/buf0flu.ic rename to storage/innobase/include/buf0flu.ic diff --git a/innobase/include/buf0lru.h b/storage/innobase/include/buf0lru.h similarity index 100% rename from innobase/include/buf0lru.h rename to storage/innobase/include/buf0lru.h diff --git a/innobase/include/buf0lru.ic b/storage/innobase/include/buf0lru.ic similarity index 100% rename from innobase/include/buf0lru.ic rename to storage/innobase/include/buf0lru.ic diff --git a/innobase/include/buf0rea.h b/storage/innobase/include/buf0rea.h similarity index 100% rename from innobase/include/buf0rea.h rename to storage/innobase/include/buf0rea.h diff --git a/innobase/include/buf0types.h b/storage/innobase/include/buf0types.h similarity index 100% rename from innobase/include/buf0types.h rename to storage/innobase/include/buf0types.h diff --git a/innobase/include/data0data.h b/storage/innobase/include/data0data.h similarity index 100% rename from innobase/include/data0data.h rename to storage/innobase/include/data0data.h diff --git a/innobase/include/data0data.ic b/storage/innobase/include/data0data.ic similarity index 100% rename from innobase/include/data0data.ic rename to storage/innobase/include/data0data.ic diff --git a/innobase/include/data0type.h b/storage/innobase/include/data0type.h similarity index 100% rename from innobase/include/data0type.h rename to storage/innobase/include/data0type.h diff --git a/innobase/include/data0type.ic b/storage/innobase/include/data0type.ic similarity index 100% rename from innobase/include/data0type.ic rename to storage/innobase/include/data0type.ic diff --git a/innobase/include/data0types.h b/storage/innobase/include/data0types.h similarity index 100% rename from innobase/include/data0types.h rename to storage/innobase/include/data0types.h diff --git a/innobase/include/db0err.h b/storage/innobase/include/db0err.h similarity index 100% rename from innobase/include/db0err.h rename to storage/innobase/include/db0err.h diff --git a/innobase/include/dict0boot.h b/storage/innobase/include/dict0boot.h similarity index 100% rename from innobase/include/dict0boot.h rename to storage/innobase/include/dict0boot.h diff --git a/innobase/include/dict0boot.ic b/storage/innobase/include/dict0boot.ic similarity index 100% rename from innobase/include/dict0boot.ic rename to storage/innobase/include/dict0boot.ic diff --git a/innobase/include/dict0crea.h b/storage/innobase/include/dict0crea.h similarity index 100% rename from innobase/include/dict0crea.h rename to storage/innobase/include/dict0crea.h diff --git a/innobase/include/dict0crea.ic b/storage/innobase/include/dict0crea.ic similarity index 100% rename from innobase/include/dict0crea.ic rename to storage/innobase/include/dict0crea.ic diff --git a/innobase/include/dict0dict.h b/storage/innobase/include/dict0dict.h similarity index 100% rename from innobase/include/dict0dict.h rename to storage/innobase/include/dict0dict.h diff --git a/innobase/include/dict0dict.ic b/storage/innobase/include/dict0dict.ic similarity index 100% rename from innobase/include/dict0dict.ic rename to storage/innobase/include/dict0dict.ic diff --git a/innobase/include/dict0load.h b/storage/innobase/include/dict0load.h similarity index 100% rename from innobase/include/dict0load.h rename to storage/innobase/include/dict0load.h diff --git a/innobase/include/dict0load.ic b/storage/innobase/include/dict0load.ic similarity index 100% rename from innobase/include/dict0load.ic rename to storage/innobase/include/dict0load.ic diff --git a/innobase/include/dict0mem.h b/storage/innobase/include/dict0mem.h similarity index 100% rename from innobase/include/dict0mem.h rename to storage/innobase/include/dict0mem.h diff --git a/innobase/include/dict0mem.ic b/storage/innobase/include/dict0mem.ic similarity index 100% rename from innobase/include/dict0mem.ic rename to storage/innobase/include/dict0mem.ic diff --git a/innobase/include/dict0types.h b/storage/innobase/include/dict0types.h similarity index 100% rename from innobase/include/dict0types.h rename to storage/innobase/include/dict0types.h diff --git a/innobase/include/dyn0dyn.h b/storage/innobase/include/dyn0dyn.h similarity index 100% rename from innobase/include/dyn0dyn.h rename to storage/innobase/include/dyn0dyn.h diff --git a/innobase/include/dyn0dyn.ic b/storage/innobase/include/dyn0dyn.ic similarity index 100% rename from innobase/include/dyn0dyn.ic rename to storage/innobase/include/dyn0dyn.ic diff --git a/innobase/include/eval0eval.h b/storage/innobase/include/eval0eval.h similarity index 100% rename from innobase/include/eval0eval.h rename to storage/innobase/include/eval0eval.h diff --git a/innobase/include/eval0eval.ic b/storage/innobase/include/eval0eval.ic similarity index 100% rename from innobase/include/eval0eval.ic rename to storage/innobase/include/eval0eval.ic diff --git a/innobase/include/eval0proc.h b/storage/innobase/include/eval0proc.h similarity index 100% rename from innobase/include/eval0proc.h rename to storage/innobase/include/eval0proc.h diff --git a/innobase/include/eval0proc.ic b/storage/innobase/include/eval0proc.ic similarity index 100% rename from innobase/include/eval0proc.ic rename to storage/innobase/include/eval0proc.ic diff --git a/innobase/include/fil0fil.h b/storage/innobase/include/fil0fil.h similarity index 100% rename from innobase/include/fil0fil.h rename to storage/innobase/include/fil0fil.h diff --git a/innobase/include/fsp0fsp.h b/storage/innobase/include/fsp0fsp.h similarity index 100% rename from innobase/include/fsp0fsp.h rename to storage/innobase/include/fsp0fsp.h diff --git a/innobase/include/fsp0fsp.ic b/storage/innobase/include/fsp0fsp.ic similarity index 100% rename from innobase/include/fsp0fsp.ic rename to storage/innobase/include/fsp0fsp.ic diff --git a/innobase/include/fut0fut.h b/storage/innobase/include/fut0fut.h similarity index 100% rename from innobase/include/fut0fut.h rename to storage/innobase/include/fut0fut.h diff --git a/innobase/include/fut0fut.ic b/storage/innobase/include/fut0fut.ic similarity index 100% rename from innobase/include/fut0fut.ic rename to storage/innobase/include/fut0fut.ic diff --git a/innobase/include/fut0lst.h b/storage/innobase/include/fut0lst.h similarity index 100% rename from innobase/include/fut0lst.h rename to storage/innobase/include/fut0lst.h diff --git a/innobase/include/fut0lst.ic b/storage/innobase/include/fut0lst.ic similarity index 100% rename from innobase/include/fut0lst.ic rename to storage/innobase/include/fut0lst.ic diff --git a/innobase/include/ha0ha.h b/storage/innobase/include/ha0ha.h similarity index 100% rename from innobase/include/ha0ha.h rename to storage/innobase/include/ha0ha.h diff --git a/innobase/include/ha0ha.ic b/storage/innobase/include/ha0ha.ic similarity index 100% rename from innobase/include/ha0ha.ic rename to storage/innobase/include/ha0ha.ic diff --git a/innobase/include/hash0hash.h b/storage/innobase/include/hash0hash.h similarity index 100% rename from innobase/include/hash0hash.h rename to storage/innobase/include/hash0hash.h diff --git a/innobase/include/hash0hash.ic b/storage/innobase/include/hash0hash.ic similarity index 100% rename from innobase/include/hash0hash.ic rename to storage/innobase/include/hash0hash.ic diff --git a/innobase/include/ibuf0ibuf.h b/storage/innobase/include/ibuf0ibuf.h similarity index 100% rename from innobase/include/ibuf0ibuf.h rename to storage/innobase/include/ibuf0ibuf.h diff --git a/innobase/include/ibuf0ibuf.ic b/storage/innobase/include/ibuf0ibuf.ic similarity index 100% rename from innobase/include/ibuf0ibuf.ic rename to storage/innobase/include/ibuf0ibuf.ic diff --git a/innobase/include/ibuf0types.h b/storage/innobase/include/ibuf0types.h similarity index 100% rename from innobase/include/ibuf0types.h rename to storage/innobase/include/ibuf0types.h diff --git a/innobase/include/lock0lock.h b/storage/innobase/include/lock0lock.h similarity index 100% rename from innobase/include/lock0lock.h rename to storage/innobase/include/lock0lock.h diff --git a/innobase/include/lock0lock.ic b/storage/innobase/include/lock0lock.ic similarity index 100% rename from innobase/include/lock0lock.ic rename to storage/innobase/include/lock0lock.ic diff --git a/innobase/include/lock0types.h b/storage/innobase/include/lock0types.h similarity index 100% rename from innobase/include/lock0types.h rename to storage/innobase/include/lock0types.h diff --git a/innobase/include/log0log.h b/storage/innobase/include/log0log.h similarity index 100% rename from innobase/include/log0log.h rename to storage/innobase/include/log0log.h diff --git a/innobase/include/log0log.ic b/storage/innobase/include/log0log.ic similarity index 100% rename from innobase/include/log0log.ic rename to storage/innobase/include/log0log.ic diff --git a/innobase/include/log0recv.h b/storage/innobase/include/log0recv.h similarity index 100% rename from innobase/include/log0recv.h rename to storage/innobase/include/log0recv.h diff --git a/innobase/include/log0recv.ic b/storage/innobase/include/log0recv.ic similarity index 100% rename from innobase/include/log0recv.ic rename to storage/innobase/include/log0recv.ic diff --git a/innobase/include/mach0data.h b/storage/innobase/include/mach0data.h similarity index 100% rename from innobase/include/mach0data.h rename to storage/innobase/include/mach0data.h diff --git a/innobase/include/mach0data.ic b/storage/innobase/include/mach0data.ic similarity index 100% rename from innobase/include/mach0data.ic rename to storage/innobase/include/mach0data.ic diff --git a/innobase/include/makefilewin.i b/storage/innobase/include/makefilewin.i similarity index 100% rename from innobase/include/makefilewin.i rename to storage/innobase/include/makefilewin.i diff --git a/innobase/include/mem0dbg.h b/storage/innobase/include/mem0dbg.h similarity index 100% rename from innobase/include/mem0dbg.h rename to storage/innobase/include/mem0dbg.h diff --git a/innobase/include/mem0dbg.ic b/storage/innobase/include/mem0dbg.ic similarity index 100% rename from innobase/include/mem0dbg.ic rename to storage/innobase/include/mem0dbg.ic diff --git a/innobase/include/mem0mem.h b/storage/innobase/include/mem0mem.h similarity index 100% rename from innobase/include/mem0mem.h rename to storage/innobase/include/mem0mem.h diff --git a/innobase/include/mem0mem.ic b/storage/innobase/include/mem0mem.ic similarity index 100% rename from innobase/include/mem0mem.ic rename to storage/innobase/include/mem0mem.ic diff --git a/innobase/include/mem0pool.h b/storage/innobase/include/mem0pool.h similarity index 100% rename from innobase/include/mem0pool.h rename to storage/innobase/include/mem0pool.h diff --git a/innobase/include/mem0pool.ic b/storage/innobase/include/mem0pool.ic similarity index 100% rename from innobase/include/mem0pool.ic rename to storage/innobase/include/mem0pool.ic diff --git a/innobase/include/mtr0log.h b/storage/innobase/include/mtr0log.h similarity index 100% rename from innobase/include/mtr0log.h rename to storage/innobase/include/mtr0log.h diff --git a/innobase/include/mtr0log.ic b/storage/innobase/include/mtr0log.ic similarity index 100% rename from innobase/include/mtr0log.ic rename to storage/innobase/include/mtr0log.ic diff --git a/innobase/include/mtr0mtr.h b/storage/innobase/include/mtr0mtr.h similarity index 100% rename from innobase/include/mtr0mtr.h rename to storage/innobase/include/mtr0mtr.h diff --git a/innobase/include/mtr0mtr.ic b/storage/innobase/include/mtr0mtr.ic similarity index 100% rename from innobase/include/mtr0mtr.ic rename to storage/innobase/include/mtr0mtr.ic diff --git a/innobase/include/mtr0types.h b/storage/innobase/include/mtr0types.h similarity index 100% rename from innobase/include/mtr0types.h rename to storage/innobase/include/mtr0types.h diff --git a/innobase/include/os0file.h b/storage/innobase/include/os0file.h similarity index 100% rename from innobase/include/os0file.h rename to storage/innobase/include/os0file.h diff --git a/innobase/include/os0proc.h b/storage/innobase/include/os0proc.h similarity index 100% rename from innobase/include/os0proc.h rename to storage/innobase/include/os0proc.h diff --git a/innobase/include/os0proc.ic b/storage/innobase/include/os0proc.ic similarity index 100% rename from innobase/include/os0proc.ic rename to storage/innobase/include/os0proc.ic diff --git a/innobase/include/os0sync.h b/storage/innobase/include/os0sync.h similarity index 100% rename from innobase/include/os0sync.h rename to storage/innobase/include/os0sync.h diff --git a/innobase/include/os0sync.ic b/storage/innobase/include/os0sync.ic similarity index 100% rename from innobase/include/os0sync.ic rename to storage/innobase/include/os0sync.ic diff --git a/innobase/include/os0thread.h b/storage/innobase/include/os0thread.h similarity index 100% rename from innobase/include/os0thread.h rename to storage/innobase/include/os0thread.h diff --git a/innobase/include/os0thread.ic b/storage/innobase/include/os0thread.ic similarity index 100% rename from innobase/include/os0thread.ic rename to storage/innobase/include/os0thread.ic diff --git a/innobase/include/page0cur.h b/storage/innobase/include/page0cur.h similarity index 100% rename from innobase/include/page0cur.h rename to storage/innobase/include/page0cur.h diff --git a/innobase/include/page0cur.ic b/storage/innobase/include/page0cur.ic similarity index 100% rename from innobase/include/page0cur.ic rename to storage/innobase/include/page0cur.ic diff --git a/innobase/include/page0page.h b/storage/innobase/include/page0page.h similarity index 100% rename from innobase/include/page0page.h rename to storage/innobase/include/page0page.h diff --git a/innobase/include/page0page.ic b/storage/innobase/include/page0page.ic similarity index 100% rename from innobase/include/page0page.ic rename to storage/innobase/include/page0page.ic diff --git a/innobase/include/page0types.h b/storage/innobase/include/page0types.h similarity index 100% rename from innobase/include/page0types.h rename to storage/innobase/include/page0types.h diff --git a/innobase/include/pars0grm.h b/storage/innobase/include/pars0grm.h similarity index 100% rename from innobase/include/pars0grm.h rename to storage/innobase/include/pars0grm.h diff --git a/innobase/include/pars0opt.h b/storage/innobase/include/pars0opt.h similarity index 100% rename from innobase/include/pars0opt.h rename to storage/innobase/include/pars0opt.h diff --git a/innobase/include/pars0opt.ic b/storage/innobase/include/pars0opt.ic similarity index 100% rename from innobase/include/pars0opt.ic rename to storage/innobase/include/pars0opt.ic diff --git a/innobase/include/pars0pars.h b/storage/innobase/include/pars0pars.h similarity index 100% rename from innobase/include/pars0pars.h rename to storage/innobase/include/pars0pars.h diff --git a/innobase/include/pars0pars.ic b/storage/innobase/include/pars0pars.ic similarity index 100% rename from innobase/include/pars0pars.ic rename to storage/innobase/include/pars0pars.ic diff --git a/innobase/include/pars0sym.h b/storage/innobase/include/pars0sym.h similarity index 100% rename from innobase/include/pars0sym.h rename to storage/innobase/include/pars0sym.h diff --git a/innobase/include/pars0sym.ic b/storage/innobase/include/pars0sym.ic similarity index 100% rename from innobase/include/pars0sym.ic rename to storage/innobase/include/pars0sym.ic diff --git a/innobase/include/pars0types.h b/storage/innobase/include/pars0types.h similarity index 100% rename from innobase/include/pars0types.h rename to storage/innobase/include/pars0types.h diff --git a/innobase/include/que0que.h b/storage/innobase/include/que0que.h similarity index 100% rename from innobase/include/que0que.h rename to storage/innobase/include/que0que.h diff --git a/innobase/include/que0que.ic b/storage/innobase/include/que0que.ic similarity index 100% rename from innobase/include/que0que.ic rename to storage/innobase/include/que0que.ic diff --git a/innobase/include/que0types.h b/storage/innobase/include/que0types.h similarity index 100% rename from innobase/include/que0types.h rename to storage/innobase/include/que0types.h diff --git a/innobase/include/read0read.h b/storage/innobase/include/read0read.h similarity index 100% rename from innobase/include/read0read.h rename to storage/innobase/include/read0read.h diff --git a/innobase/include/read0read.ic b/storage/innobase/include/read0read.ic similarity index 100% rename from innobase/include/read0read.ic rename to storage/innobase/include/read0read.ic diff --git a/innobase/include/read0types.h b/storage/innobase/include/read0types.h similarity index 100% rename from innobase/include/read0types.h rename to storage/innobase/include/read0types.h diff --git a/innobase/include/rem0cmp.h b/storage/innobase/include/rem0cmp.h similarity index 100% rename from innobase/include/rem0cmp.h rename to storage/innobase/include/rem0cmp.h diff --git a/innobase/include/rem0cmp.ic b/storage/innobase/include/rem0cmp.ic similarity index 100% rename from innobase/include/rem0cmp.ic rename to storage/innobase/include/rem0cmp.ic diff --git a/innobase/include/rem0rec.h b/storage/innobase/include/rem0rec.h similarity index 100% rename from innobase/include/rem0rec.h rename to storage/innobase/include/rem0rec.h diff --git a/innobase/include/rem0rec.ic b/storage/innobase/include/rem0rec.ic similarity index 100% rename from innobase/include/rem0rec.ic rename to storage/innobase/include/rem0rec.ic diff --git a/innobase/include/rem0types.h b/storage/innobase/include/rem0types.h similarity index 100% rename from innobase/include/rem0types.h rename to storage/innobase/include/rem0types.h diff --git a/innobase/include/row0ins.h b/storage/innobase/include/row0ins.h similarity index 100% rename from innobase/include/row0ins.h rename to storage/innobase/include/row0ins.h diff --git a/innobase/include/row0ins.ic b/storage/innobase/include/row0ins.ic similarity index 100% rename from innobase/include/row0ins.ic rename to storage/innobase/include/row0ins.ic diff --git a/innobase/include/row0mysql.h b/storage/innobase/include/row0mysql.h similarity index 100% rename from innobase/include/row0mysql.h rename to storage/innobase/include/row0mysql.h diff --git a/innobase/include/row0mysql.ic b/storage/innobase/include/row0mysql.ic similarity index 100% rename from innobase/include/row0mysql.ic rename to storage/innobase/include/row0mysql.ic diff --git a/innobase/include/row0purge.h b/storage/innobase/include/row0purge.h similarity index 100% rename from innobase/include/row0purge.h rename to storage/innobase/include/row0purge.h diff --git a/innobase/include/row0purge.ic b/storage/innobase/include/row0purge.ic similarity index 100% rename from innobase/include/row0purge.ic rename to storage/innobase/include/row0purge.ic diff --git a/innobase/include/row0row.h b/storage/innobase/include/row0row.h similarity index 100% rename from innobase/include/row0row.h rename to storage/innobase/include/row0row.h diff --git a/innobase/include/row0row.ic b/storage/innobase/include/row0row.ic similarity index 100% rename from innobase/include/row0row.ic rename to storage/innobase/include/row0row.ic diff --git a/innobase/include/row0sel.h b/storage/innobase/include/row0sel.h similarity index 100% rename from innobase/include/row0sel.h rename to storage/innobase/include/row0sel.h diff --git a/innobase/include/row0sel.ic b/storage/innobase/include/row0sel.ic similarity index 100% rename from innobase/include/row0sel.ic rename to storage/innobase/include/row0sel.ic diff --git a/innobase/include/row0types.h b/storage/innobase/include/row0types.h similarity index 100% rename from innobase/include/row0types.h rename to storage/innobase/include/row0types.h diff --git a/innobase/include/row0uins.h b/storage/innobase/include/row0uins.h similarity index 100% rename from innobase/include/row0uins.h rename to storage/innobase/include/row0uins.h diff --git a/innobase/include/row0uins.ic b/storage/innobase/include/row0uins.ic similarity index 100% rename from innobase/include/row0uins.ic rename to storage/innobase/include/row0uins.ic diff --git a/innobase/include/row0umod.h b/storage/innobase/include/row0umod.h similarity index 100% rename from innobase/include/row0umod.h rename to storage/innobase/include/row0umod.h diff --git a/innobase/include/row0umod.ic b/storage/innobase/include/row0umod.ic similarity index 100% rename from innobase/include/row0umod.ic rename to storage/innobase/include/row0umod.ic diff --git a/innobase/include/row0undo.h b/storage/innobase/include/row0undo.h similarity index 100% rename from innobase/include/row0undo.h rename to storage/innobase/include/row0undo.h diff --git a/innobase/include/row0undo.ic b/storage/innobase/include/row0undo.ic similarity index 100% rename from innobase/include/row0undo.ic rename to storage/innobase/include/row0undo.ic diff --git a/innobase/include/row0upd.h b/storage/innobase/include/row0upd.h similarity index 100% rename from innobase/include/row0upd.h rename to storage/innobase/include/row0upd.h diff --git a/innobase/include/row0upd.ic b/storage/innobase/include/row0upd.ic similarity index 100% rename from innobase/include/row0upd.ic rename to storage/innobase/include/row0upd.ic diff --git a/innobase/include/row0vers.h b/storage/innobase/include/row0vers.h similarity index 100% rename from innobase/include/row0vers.h rename to storage/innobase/include/row0vers.h diff --git a/innobase/include/row0vers.ic b/storage/innobase/include/row0vers.ic similarity index 100% rename from innobase/include/row0vers.ic rename to storage/innobase/include/row0vers.ic diff --git a/innobase/include/srv0que.h b/storage/innobase/include/srv0que.h similarity index 100% rename from innobase/include/srv0que.h rename to storage/innobase/include/srv0que.h diff --git a/innobase/include/srv0srv.h b/storage/innobase/include/srv0srv.h similarity index 100% rename from innobase/include/srv0srv.h rename to storage/innobase/include/srv0srv.h diff --git a/innobase/include/srv0srv.ic b/storage/innobase/include/srv0srv.ic similarity index 100% rename from innobase/include/srv0srv.ic rename to storage/innobase/include/srv0srv.ic diff --git a/innobase/include/srv0start.h b/storage/innobase/include/srv0start.h similarity index 100% rename from innobase/include/srv0start.h rename to storage/innobase/include/srv0start.h diff --git a/innobase/include/sync0arr.h b/storage/innobase/include/sync0arr.h similarity index 100% rename from innobase/include/sync0arr.h rename to storage/innobase/include/sync0arr.h diff --git a/innobase/include/sync0arr.ic b/storage/innobase/include/sync0arr.ic similarity index 100% rename from innobase/include/sync0arr.ic rename to storage/innobase/include/sync0arr.ic diff --git a/innobase/include/sync0rw.h b/storage/innobase/include/sync0rw.h similarity index 100% rename from innobase/include/sync0rw.h rename to storage/innobase/include/sync0rw.h diff --git a/innobase/include/sync0rw.ic b/storage/innobase/include/sync0rw.ic similarity index 100% rename from innobase/include/sync0rw.ic rename to storage/innobase/include/sync0rw.ic diff --git a/innobase/include/sync0sync.h b/storage/innobase/include/sync0sync.h similarity index 100% rename from innobase/include/sync0sync.h rename to storage/innobase/include/sync0sync.h diff --git a/innobase/include/sync0sync.ic b/storage/innobase/include/sync0sync.ic similarity index 100% rename from innobase/include/sync0sync.ic rename to storage/innobase/include/sync0sync.ic diff --git a/innobase/include/sync0types.h b/storage/innobase/include/sync0types.h similarity index 100% rename from innobase/include/sync0types.h rename to storage/innobase/include/sync0types.h diff --git a/innobase/include/thr0loc.h b/storage/innobase/include/thr0loc.h similarity index 100% rename from innobase/include/thr0loc.h rename to storage/innobase/include/thr0loc.h diff --git a/innobase/include/thr0loc.ic b/storage/innobase/include/thr0loc.ic similarity index 100% rename from innobase/include/thr0loc.ic rename to storage/innobase/include/thr0loc.ic diff --git a/innobase/include/trx0purge.h b/storage/innobase/include/trx0purge.h similarity index 100% rename from innobase/include/trx0purge.h rename to storage/innobase/include/trx0purge.h diff --git a/innobase/include/trx0purge.ic b/storage/innobase/include/trx0purge.ic similarity index 100% rename from innobase/include/trx0purge.ic rename to storage/innobase/include/trx0purge.ic diff --git a/innobase/include/trx0rec.h b/storage/innobase/include/trx0rec.h similarity index 100% rename from innobase/include/trx0rec.h rename to storage/innobase/include/trx0rec.h diff --git a/innobase/include/trx0rec.ic b/storage/innobase/include/trx0rec.ic similarity index 100% rename from innobase/include/trx0rec.ic rename to storage/innobase/include/trx0rec.ic diff --git a/innobase/include/trx0roll.h b/storage/innobase/include/trx0roll.h similarity index 100% rename from innobase/include/trx0roll.h rename to storage/innobase/include/trx0roll.h diff --git a/innobase/include/trx0roll.ic b/storage/innobase/include/trx0roll.ic similarity index 100% rename from innobase/include/trx0roll.ic rename to storage/innobase/include/trx0roll.ic diff --git a/innobase/include/trx0rseg.h b/storage/innobase/include/trx0rseg.h similarity index 100% rename from innobase/include/trx0rseg.h rename to storage/innobase/include/trx0rseg.h diff --git a/innobase/include/trx0rseg.ic b/storage/innobase/include/trx0rseg.ic similarity index 100% rename from innobase/include/trx0rseg.ic rename to storage/innobase/include/trx0rseg.ic diff --git a/innobase/include/trx0sys.h b/storage/innobase/include/trx0sys.h similarity index 100% rename from innobase/include/trx0sys.h rename to storage/innobase/include/trx0sys.h diff --git a/innobase/include/trx0sys.ic b/storage/innobase/include/trx0sys.ic similarity index 100% rename from innobase/include/trx0sys.ic rename to storage/innobase/include/trx0sys.ic diff --git a/innobase/include/trx0trx.h b/storage/innobase/include/trx0trx.h similarity index 100% rename from innobase/include/trx0trx.h rename to storage/innobase/include/trx0trx.h diff --git a/innobase/include/trx0trx.ic b/storage/innobase/include/trx0trx.ic similarity index 100% rename from innobase/include/trx0trx.ic rename to storage/innobase/include/trx0trx.ic diff --git a/innobase/include/trx0types.h b/storage/innobase/include/trx0types.h similarity index 100% rename from innobase/include/trx0types.h rename to storage/innobase/include/trx0types.h diff --git a/innobase/include/trx0undo.h b/storage/innobase/include/trx0undo.h similarity index 100% rename from innobase/include/trx0undo.h rename to storage/innobase/include/trx0undo.h diff --git a/innobase/include/trx0undo.ic b/storage/innobase/include/trx0undo.ic similarity index 100% rename from innobase/include/trx0undo.ic rename to storage/innobase/include/trx0undo.ic diff --git a/innobase/include/trx0xa.h b/storage/innobase/include/trx0xa.h similarity index 100% rename from innobase/include/trx0xa.h rename to storage/innobase/include/trx0xa.h diff --git a/innobase/include/univ.i b/storage/innobase/include/univ.i similarity index 100% rename from innobase/include/univ.i rename to storage/innobase/include/univ.i diff --git a/innobase/include/usr0sess.h b/storage/innobase/include/usr0sess.h similarity index 100% rename from innobase/include/usr0sess.h rename to storage/innobase/include/usr0sess.h diff --git a/innobase/include/usr0sess.ic b/storage/innobase/include/usr0sess.ic similarity index 100% rename from innobase/include/usr0sess.ic rename to storage/innobase/include/usr0sess.ic diff --git a/innobase/include/usr0types.h b/storage/innobase/include/usr0types.h similarity index 100% rename from innobase/include/usr0types.h rename to storage/innobase/include/usr0types.h diff --git a/innobase/include/ut0byte.h b/storage/innobase/include/ut0byte.h similarity index 100% rename from innobase/include/ut0byte.h rename to storage/innobase/include/ut0byte.h diff --git a/innobase/include/ut0byte.ic b/storage/innobase/include/ut0byte.ic similarity index 100% rename from innobase/include/ut0byte.ic rename to storage/innobase/include/ut0byte.ic diff --git a/innobase/include/ut0dbg.h b/storage/innobase/include/ut0dbg.h similarity index 100% rename from innobase/include/ut0dbg.h rename to storage/innobase/include/ut0dbg.h diff --git a/innobase/include/ut0lst.h b/storage/innobase/include/ut0lst.h similarity index 100% rename from innobase/include/ut0lst.h rename to storage/innobase/include/ut0lst.h diff --git a/innobase/include/ut0mem.h b/storage/innobase/include/ut0mem.h similarity index 100% rename from innobase/include/ut0mem.h rename to storage/innobase/include/ut0mem.h diff --git a/innobase/include/ut0mem.ic b/storage/innobase/include/ut0mem.ic similarity index 100% rename from innobase/include/ut0mem.ic rename to storage/innobase/include/ut0mem.ic diff --git a/innobase/include/ut0rnd.h b/storage/innobase/include/ut0rnd.h similarity index 100% rename from innobase/include/ut0rnd.h rename to storage/innobase/include/ut0rnd.h diff --git a/innobase/include/ut0rnd.ic b/storage/innobase/include/ut0rnd.ic similarity index 100% rename from innobase/include/ut0rnd.ic rename to storage/innobase/include/ut0rnd.ic diff --git a/innobase/include/ut0sort.h b/storage/innobase/include/ut0sort.h similarity index 100% rename from innobase/include/ut0sort.h rename to storage/innobase/include/ut0sort.h diff --git a/innobase/include/ut0ut.h b/storage/innobase/include/ut0ut.h similarity index 100% rename from innobase/include/ut0ut.h rename to storage/innobase/include/ut0ut.h diff --git a/innobase/include/ut0ut.ic b/storage/innobase/include/ut0ut.ic similarity index 100% rename from innobase/include/ut0ut.ic rename to storage/innobase/include/ut0ut.ic diff --git a/innobase/lock/Makefile.am b/storage/innobase/lock/Makefile.am similarity index 100% rename from innobase/lock/Makefile.am rename to storage/innobase/lock/Makefile.am diff --git a/innobase/lock/lock0lock.c b/storage/innobase/lock/lock0lock.c similarity index 100% rename from innobase/lock/lock0lock.c rename to storage/innobase/lock/lock0lock.c diff --git a/innobase/lock/makefilewin b/storage/innobase/lock/makefilewin similarity index 100% rename from innobase/lock/makefilewin rename to storage/innobase/lock/makefilewin diff --git a/innobase/log/Makefile.am b/storage/innobase/log/Makefile.am similarity index 100% rename from innobase/log/Makefile.am rename to storage/innobase/log/Makefile.am diff --git a/innobase/log/log0log.c b/storage/innobase/log/log0log.c similarity index 100% rename from innobase/log/log0log.c rename to storage/innobase/log/log0log.c diff --git a/innobase/log/log0recv.c b/storage/innobase/log/log0recv.c similarity index 100% rename from innobase/log/log0recv.c rename to storage/innobase/log/log0recv.c diff --git a/innobase/log/makefilewin b/storage/innobase/log/makefilewin similarity index 100% rename from innobase/log/makefilewin rename to storage/innobase/log/makefilewin diff --git a/innobase/mach/Makefile.am b/storage/innobase/mach/Makefile.am similarity index 100% rename from innobase/mach/Makefile.am rename to storage/innobase/mach/Makefile.am diff --git a/innobase/mach/mach0data.c b/storage/innobase/mach/mach0data.c similarity index 100% rename from innobase/mach/mach0data.c rename to storage/innobase/mach/mach0data.c diff --git a/innobase/mach/makefilewin b/storage/innobase/mach/makefilewin similarity index 100% rename from innobase/mach/makefilewin rename to storage/innobase/mach/makefilewin diff --git a/innobase/makefilewin b/storage/innobase/makefilewin similarity index 100% rename from innobase/makefilewin rename to storage/innobase/makefilewin diff --git a/innobase/mem/Makefile.am b/storage/innobase/mem/Makefile.am similarity index 100% rename from innobase/mem/Makefile.am rename to storage/innobase/mem/Makefile.am diff --git a/innobase/mem/makefilewin b/storage/innobase/mem/makefilewin similarity index 100% rename from innobase/mem/makefilewin rename to storage/innobase/mem/makefilewin diff --git a/innobase/mem/mem0dbg.c b/storage/innobase/mem/mem0dbg.c similarity index 100% rename from innobase/mem/mem0dbg.c rename to storage/innobase/mem/mem0dbg.c diff --git a/innobase/mem/mem0mem.c b/storage/innobase/mem/mem0mem.c similarity index 100% rename from innobase/mem/mem0mem.c rename to storage/innobase/mem/mem0mem.c diff --git a/innobase/mem/mem0pool.c b/storage/innobase/mem/mem0pool.c similarity index 100% rename from innobase/mem/mem0pool.c rename to storage/innobase/mem/mem0pool.c diff --git a/innobase/mtr/Makefile.am b/storage/innobase/mtr/Makefile.am similarity index 100% rename from innobase/mtr/Makefile.am rename to storage/innobase/mtr/Makefile.am diff --git a/innobase/mtr/makefilewin b/storage/innobase/mtr/makefilewin similarity index 100% rename from innobase/mtr/makefilewin rename to storage/innobase/mtr/makefilewin diff --git a/innobase/mtr/mtr0log.c b/storage/innobase/mtr/mtr0log.c similarity index 100% rename from innobase/mtr/mtr0log.c rename to storage/innobase/mtr/mtr0log.c diff --git a/innobase/mtr/mtr0mtr.c b/storage/innobase/mtr/mtr0mtr.c similarity index 100% rename from innobase/mtr/mtr0mtr.c rename to storage/innobase/mtr/mtr0mtr.c diff --git a/innobase/my_cnf b/storage/innobase/my_cnf similarity index 100% rename from innobase/my_cnf rename to storage/innobase/my_cnf diff --git a/innobase/os/Makefile.am b/storage/innobase/os/Makefile.am similarity index 100% rename from innobase/os/Makefile.am rename to storage/innobase/os/Makefile.am diff --git a/innobase/os/makefilewin b/storage/innobase/os/makefilewin similarity index 100% rename from innobase/os/makefilewin rename to storage/innobase/os/makefilewin diff --git a/innobase/os/os0file.c b/storage/innobase/os/os0file.c similarity index 100% rename from innobase/os/os0file.c rename to storage/innobase/os/os0file.c diff --git a/innobase/os/os0proc.c b/storage/innobase/os/os0proc.c similarity index 100% rename from innobase/os/os0proc.c rename to storage/innobase/os/os0proc.c diff --git a/innobase/os/os0sync.c b/storage/innobase/os/os0sync.c similarity index 100% rename from innobase/os/os0sync.c rename to storage/innobase/os/os0sync.c diff --git a/innobase/os/os0thread.c b/storage/innobase/os/os0thread.c similarity index 100% rename from innobase/os/os0thread.c rename to storage/innobase/os/os0thread.c diff --git a/innobase/page/Makefile.am b/storage/innobase/page/Makefile.am similarity index 100% rename from innobase/page/Makefile.am rename to storage/innobase/page/Makefile.am diff --git a/innobase/page/makefilewin b/storage/innobase/page/makefilewin similarity index 100% rename from innobase/page/makefilewin rename to storage/innobase/page/makefilewin diff --git a/innobase/page/page0cur.c b/storage/innobase/page/page0cur.c similarity index 100% rename from innobase/page/page0cur.c rename to storage/innobase/page/page0cur.c diff --git a/innobase/page/page0page.c b/storage/innobase/page/page0page.c similarity index 100% rename from innobase/page/page0page.c rename to storage/innobase/page/page0page.c diff --git a/innobase/pars/Makefile.am b/storage/innobase/pars/Makefile.am similarity index 100% rename from innobase/pars/Makefile.am rename to storage/innobase/pars/Makefile.am diff --git a/innobase/pars/lexyy.c b/storage/innobase/pars/lexyy.c similarity index 100% rename from innobase/pars/lexyy.c rename to storage/innobase/pars/lexyy.c diff --git a/innobase/pars/makefilewin b/storage/innobase/pars/makefilewin similarity index 100% rename from innobase/pars/makefilewin rename to storage/innobase/pars/makefilewin diff --git a/innobase/pars/pars0grm.c b/storage/innobase/pars/pars0grm.c similarity index 100% rename from innobase/pars/pars0grm.c rename to storage/innobase/pars/pars0grm.c diff --git a/innobase/pars/pars0grm.h b/storage/innobase/pars/pars0grm.h similarity index 100% rename from innobase/pars/pars0grm.h rename to storage/innobase/pars/pars0grm.h diff --git a/innobase/pars/pars0grm.y b/storage/innobase/pars/pars0grm.y similarity index 100% rename from innobase/pars/pars0grm.y rename to storage/innobase/pars/pars0grm.y diff --git a/innobase/pars/pars0lex.l b/storage/innobase/pars/pars0lex.l similarity index 100% rename from innobase/pars/pars0lex.l rename to storage/innobase/pars/pars0lex.l diff --git a/innobase/pars/pars0opt.c b/storage/innobase/pars/pars0opt.c similarity index 100% rename from innobase/pars/pars0opt.c rename to storage/innobase/pars/pars0opt.c diff --git a/innobase/pars/pars0pars.c b/storage/innobase/pars/pars0pars.c similarity index 100% rename from innobase/pars/pars0pars.c rename to storage/innobase/pars/pars0pars.c diff --git a/innobase/pars/pars0sym.c b/storage/innobase/pars/pars0sym.c similarity index 100% rename from innobase/pars/pars0sym.c rename to storage/innobase/pars/pars0sym.c diff --git a/innobase/que/Makefile.am b/storage/innobase/que/Makefile.am similarity index 100% rename from innobase/que/Makefile.am rename to storage/innobase/que/Makefile.am diff --git a/innobase/que/makefilewin b/storage/innobase/que/makefilewin similarity index 100% rename from innobase/que/makefilewin rename to storage/innobase/que/makefilewin diff --git a/innobase/que/que0que.c b/storage/innobase/que/que0que.c similarity index 100% rename from innobase/que/que0que.c rename to storage/innobase/que/que0que.c diff --git a/innobase/read/Makefile.am b/storage/innobase/read/Makefile.am similarity index 100% rename from innobase/read/Makefile.am rename to storage/innobase/read/Makefile.am diff --git a/innobase/read/makefilewin b/storage/innobase/read/makefilewin similarity index 100% rename from innobase/read/makefilewin rename to storage/innobase/read/makefilewin diff --git a/innobase/read/read0read.c b/storage/innobase/read/read0read.c similarity index 100% rename from innobase/read/read0read.c rename to storage/innobase/read/read0read.c diff --git a/innobase/rem/Makefile.am b/storage/innobase/rem/Makefile.am similarity index 100% rename from innobase/rem/Makefile.am rename to storage/innobase/rem/Makefile.am diff --git a/innobase/rem/makefilewin b/storage/innobase/rem/makefilewin similarity index 100% rename from innobase/rem/makefilewin rename to storage/innobase/rem/makefilewin diff --git a/innobase/rem/rem0cmp.c b/storage/innobase/rem/rem0cmp.c similarity index 100% rename from innobase/rem/rem0cmp.c rename to storage/innobase/rem/rem0cmp.c diff --git a/innobase/rem/rem0rec.c b/storage/innobase/rem/rem0rec.c similarity index 100% rename from innobase/rem/rem0rec.c rename to storage/innobase/rem/rem0rec.c diff --git a/innobase/row/Makefile.am b/storage/innobase/row/Makefile.am similarity index 100% rename from innobase/row/Makefile.am rename to storage/innobase/row/Makefile.am diff --git a/innobase/row/makefilewin b/storage/innobase/row/makefilewin similarity index 100% rename from innobase/row/makefilewin rename to storage/innobase/row/makefilewin diff --git a/innobase/row/row0ins.c b/storage/innobase/row/row0ins.c similarity index 100% rename from innobase/row/row0ins.c rename to storage/innobase/row/row0ins.c diff --git a/innobase/row/row0mysql.c b/storage/innobase/row/row0mysql.c similarity index 100% rename from innobase/row/row0mysql.c rename to storage/innobase/row/row0mysql.c diff --git a/innobase/row/row0purge.c b/storage/innobase/row/row0purge.c similarity index 100% rename from innobase/row/row0purge.c rename to storage/innobase/row/row0purge.c diff --git a/innobase/row/row0row.c b/storage/innobase/row/row0row.c similarity index 100% rename from innobase/row/row0row.c rename to storage/innobase/row/row0row.c diff --git a/innobase/row/row0sel.c b/storage/innobase/row/row0sel.c similarity index 100% rename from innobase/row/row0sel.c rename to storage/innobase/row/row0sel.c diff --git a/innobase/row/row0uins.c b/storage/innobase/row/row0uins.c similarity index 100% rename from innobase/row/row0uins.c rename to storage/innobase/row/row0uins.c diff --git a/innobase/row/row0umod.c b/storage/innobase/row/row0umod.c similarity index 100% rename from innobase/row/row0umod.c rename to storage/innobase/row/row0umod.c diff --git a/innobase/row/row0undo.c b/storage/innobase/row/row0undo.c similarity index 100% rename from innobase/row/row0undo.c rename to storage/innobase/row/row0undo.c diff --git a/innobase/row/row0upd.c b/storage/innobase/row/row0upd.c similarity index 100% rename from innobase/row/row0upd.c rename to storage/innobase/row/row0upd.c diff --git a/innobase/row/row0vers.c b/storage/innobase/row/row0vers.c similarity index 100% rename from innobase/row/row0vers.c rename to storage/innobase/row/row0vers.c diff --git a/innobase/srv/Makefile.am b/storage/innobase/srv/Makefile.am similarity index 100% rename from innobase/srv/Makefile.am rename to storage/innobase/srv/Makefile.am diff --git a/innobase/srv/makefilewin b/storage/innobase/srv/makefilewin similarity index 100% rename from innobase/srv/makefilewin rename to storage/innobase/srv/makefilewin diff --git a/innobase/srv/srv0que.c b/storage/innobase/srv/srv0que.c similarity index 100% rename from innobase/srv/srv0que.c rename to storage/innobase/srv/srv0que.c diff --git a/innobase/srv/srv0srv.c b/storage/innobase/srv/srv0srv.c similarity index 100% rename from innobase/srv/srv0srv.c rename to storage/innobase/srv/srv0srv.c diff --git a/innobase/srv/srv0start.c b/storage/innobase/srv/srv0start.c similarity index 100% rename from innobase/srv/srv0start.c rename to storage/innobase/srv/srv0start.c diff --git a/innobase/sync/Makefile.am b/storage/innobase/sync/Makefile.am similarity index 100% rename from innobase/sync/Makefile.am rename to storage/innobase/sync/Makefile.am diff --git a/innobase/sync/makefilewin b/storage/innobase/sync/makefilewin similarity index 100% rename from innobase/sync/makefilewin rename to storage/innobase/sync/makefilewin diff --git a/innobase/sync/sync0arr.c b/storage/innobase/sync/sync0arr.c similarity index 100% rename from innobase/sync/sync0arr.c rename to storage/innobase/sync/sync0arr.c diff --git a/innobase/sync/sync0rw.c b/storage/innobase/sync/sync0rw.c similarity index 100% rename from innobase/sync/sync0rw.c rename to storage/innobase/sync/sync0rw.c diff --git a/innobase/sync/sync0sync.c b/storage/innobase/sync/sync0sync.c similarity index 100% rename from innobase/sync/sync0sync.c rename to storage/innobase/sync/sync0sync.c diff --git a/innobase/thr/Makefile.am b/storage/innobase/thr/Makefile.am similarity index 100% rename from innobase/thr/Makefile.am rename to storage/innobase/thr/Makefile.am diff --git a/innobase/thr/makefilewin b/storage/innobase/thr/makefilewin similarity index 100% rename from innobase/thr/makefilewin rename to storage/innobase/thr/makefilewin diff --git a/innobase/thr/thr0loc.c b/storage/innobase/thr/thr0loc.c similarity index 100% rename from innobase/thr/thr0loc.c rename to storage/innobase/thr/thr0loc.c diff --git a/innobase/trx/Makefile.am b/storage/innobase/trx/Makefile.am similarity index 100% rename from innobase/trx/Makefile.am rename to storage/innobase/trx/Makefile.am diff --git a/innobase/trx/makefilewin b/storage/innobase/trx/makefilewin similarity index 100% rename from innobase/trx/makefilewin rename to storage/innobase/trx/makefilewin diff --git a/innobase/trx/trx0purge.c b/storage/innobase/trx/trx0purge.c similarity index 100% rename from innobase/trx/trx0purge.c rename to storage/innobase/trx/trx0purge.c diff --git a/innobase/trx/trx0rec.c b/storage/innobase/trx/trx0rec.c similarity index 100% rename from innobase/trx/trx0rec.c rename to storage/innobase/trx/trx0rec.c diff --git a/innobase/trx/trx0roll.c b/storage/innobase/trx/trx0roll.c similarity index 100% rename from innobase/trx/trx0roll.c rename to storage/innobase/trx/trx0roll.c diff --git a/innobase/trx/trx0rseg.c b/storage/innobase/trx/trx0rseg.c similarity index 100% rename from innobase/trx/trx0rseg.c rename to storage/innobase/trx/trx0rseg.c diff --git a/innobase/trx/trx0sys.c b/storage/innobase/trx/trx0sys.c similarity index 100% rename from innobase/trx/trx0sys.c rename to storage/innobase/trx/trx0sys.c diff --git a/innobase/trx/trx0trx.c b/storage/innobase/trx/trx0trx.c similarity index 100% rename from innobase/trx/trx0trx.c rename to storage/innobase/trx/trx0trx.c diff --git a/innobase/trx/trx0undo.c b/storage/innobase/trx/trx0undo.c similarity index 100% rename from innobase/trx/trx0undo.c rename to storage/innobase/trx/trx0undo.c diff --git a/innobase/usr/Makefile.am b/storage/innobase/usr/Makefile.am similarity index 100% rename from innobase/usr/Makefile.am rename to storage/innobase/usr/Makefile.am diff --git a/innobase/usr/makefilewin b/storage/innobase/usr/makefilewin similarity index 100% rename from innobase/usr/makefilewin rename to storage/innobase/usr/makefilewin diff --git a/innobase/usr/usr0sess.c b/storage/innobase/usr/usr0sess.c similarity index 100% rename from innobase/usr/usr0sess.c rename to storage/innobase/usr/usr0sess.c diff --git a/innobase/ut/Makefile.am b/storage/innobase/ut/Makefile.am similarity index 100% rename from innobase/ut/Makefile.am rename to storage/innobase/ut/Makefile.am diff --git a/innobase/ut/makefilewin b/storage/innobase/ut/makefilewin similarity index 100% rename from innobase/ut/makefilewin rename to storage/innobase/ut/makefilewin diff --git a/innobase/ut/ut0byte.c b/storage/innobase/ut/ut0byte.c similarity index 100% rename from innobase/ut/ut0byte.c rename to storage/innobase/ut/ut0byte.c diff --git a/innobase/ut/ut0dbg.c b/storage/innobase/ut/ut0dbg.c similarity index 100% rename from innobase/ut/ut0dbg.c rename to storage/innobase/ut/ut0dbg.c diff --git a/innobase/ut/ut0mem.c b/storage/innobase/ut/ut0mem.c similarity index 100% rename from innobase/ut/ut0mem.c rename to storage/innobase/ut/ut0mem.c diff --git a/innobase/ut/ut0rnd.c b/storage/innobase/ut/ut0rnd.c similarity index 100% rename from innobase/ut/ut0rnd.c rename to storage/innobase/ut/ut0rnd.c diff --git a/innobase/ut/ut0ut.c b/storage/innobase/ut/ut0ut.c similarity index 100% rename from innobase/ut/ut0ut.c rename to storage/innobase/ut/ut0ut.c diff --git a/myisam/.cvsignore b/storage/myisam/.cvsignore similarity index 100% rename from myisam/.cvsignore rename to storage/myisam/.cvsignore diff --git a/myisam/ChangeLog b/storage/myisam/ChangeLog similarity index 100% rename from myisam/ChangeLog rename to storage/myisam/ChangeLog diff --git a/myisam/Makefile.am b/storage/myisam/Makefile.am similarity index 100% rename from myisam/Makefile.am rename to storage/myisam/Makefile.am diff --git a/myisam/NEWS b/storage/myisam/NEWS similarity index 100% rename from myisam/NEWS rename to storage/myisam/NEWS diff --git a/myisam/TODO b/storage/myisam/TODO similarity index 100% rename from myisam/TODO rename to storage/myisam/TODO diff --git a/myisam/ft_boolean_search.c b/storage/myisam/ft_boolean_search.c similarity index 100% rename from myisam/ft_boolean_search.c rename to storage/myisam/ft_boolean_search.c diff --git a/myisam/ft_eval.c b/storage/myisam/ft_eval.c similarity index 100% rename from myisam/ft_eval.c rename to storage/myisam/ft_eval.c diff --git a/myisam/ft_eval.h b/storage/myisam/ft_eval.h similarity index 100% rename from myisam/ft_eval.h rename to storage/myisam/ft_eval.h diff --git a/myisam/ft_nlq_search.c b/storage/myisam/ft_nlq_search.c similarity index 100% rename from myisam/ft_nlq_search.c rename to storage/myisam/ft_nlq_search.c diff --git a/myisam/ft_parser.c b/storage/myisam/ft_parser.c similarity index 100% rename from myisam/ft_parser.c rename to storage/myisam/ft_parser.c diff --git a/myisam/ft_static.c b/storage/myisam/ft_static.c similarity index 100% rename from myisam/ft_static.c rename to storage/myisam/ft_static.c diff --git a/myisam/ft_stem.c b/storage/myisam/ft_stem.c similarity index 100% rename from myisam/ft_stem.c rename to storage/myisam/ft_stem.c diff --git a/myisam/ft_stopwords.c b/storage/myisam/ft_stopwords.c similarity index 100% rename from myisam/ft_stopwords.c rename to storage/myisam/ft_stopwords.c diff --git a/myisam/ft_test1.c b/storage/myisam/ft_test1.c similarity index 100% rename from myisam/ft_test1.c rename to storage/myisam/ft_test1.c diff --git a/myisam/ft_test1.h b/storage/myisam/ft_test1.h similarity index 100% rename from myisam/ft_test1.h rename to storage/myisam/ft_test1.h diff --git a/myisam/ft_update.c b/storage/myisam/ft_update.c similarity index 100% rename from myisam/ft_update.c rename to storage/myisam/ft_update.c diff --git a/myisam/ftbench/Ecompare.pl b/storage/myisam/ftbench/Ecompare.pl similarity index 100% rename from myisam/ftbench/Ecompare.pl rename to storage/myisam/ftbench/Ecompare.pl diff --git a/myisam/ftbench/Ecreate.pl b/storage/myisam/ftbench/Ecreate.pl similarity index 100% rename from myisam/ftbench/Ecreate.pl rename to storage/myisam/ftbench/Ecreate.pl diff --git a/myisam/ftbench/Ereport.pl b/storage/myisam/ftbench/Ereport.pl similarity index 100% rename from myisam/ftbench/Ereport.pl rename to storage/myisam/ftbench/Ereport.pl diff --git a/myisam/ftbench/README b/storage/myisam/ftbench/README similarity index 100% rename from myisam/ftbench/README rename to storage/myisam/ftbench/README diff --git a/myisam/ftbench/ft-test-run.sh b/storage/myisam/ftbench/ft-test-run.sh similarity index 100% rename from myisam/ftbench/ft-test-run.sh rename to storage/myisam/ftbench/ft-test-run.sh diff --git a/myisam/ftdefs.h b/storage/myisam/ftdefs.h similarity index 100% rename from myisam/ftdefs.h rename to storage/myisam/ftdefs.h diff --git a/myisam/fulltext.h b/storage/myisam/fulltext.h similarity index 100% rename from myisam/fulltext.h rename to storage/myisam/fulltext.h diff --git a/myisam/make-ccc b/storage/myisam/make-ccc similarity index 100% rename from myisam/make-ccc rename to storage/myisam/make-ccc diff --git a/myisam/mi_cache.c b/storage/myisam/mi_cache.c similarity index 100% rename from myisam/mi_cache.c rename to storage/myisam/mi_cache.c diff --git a/myisam/mi_changed.c b/storage/myisam/mi_changed.c similarity index 100% rename from myisam/mi_changed.c rename to storage/myisam/mi_changed.c diff --git a/myisam/mi_check.c b/storage/myisam/mi_check.c similarity index 100% rename from myisam/mi_check.c rename to storage/myisam/mi_check.c diff --git a/myisam/mi_checksum.c b/storage/myisam/mi_checksum.c similarity index 100% rename from myisam/mi_checksum.c rename to storage/myisam/mi_checksum.c diff --git a/myisam/mi_close.c b/storage/myisam/mi_close.c similarity index 100% rename from myisam/mi_close.c rename to storage/myisam/mi_close.c diff --git a/myisam/mi_create.c b/storage/myisam/mi_create.c similarity index 100% rename from myisam/mi_create.c rename to storage/myisam/mi_create.c diff --git a/myisam/mi_dbug.c b/storage/myisam/mi_dbug.c similarity index 100% rename from myisam/mi_dbug.c rename to storage/myisam/mi_dbug.c diff --git a/myisam/mi_delete.c b/storage/myisam/mi_delete.c similarity index 100% rename from myisam/mi_delete.c rename to storage/myisam/mi_delete.c diff --git a/myisam/mi_delete_all.c b/storage/myisam/mi_delete_all.c similarity index 100% rename from myisam/mi_delete_all.c rename to storage/myisam/mi_delete_all.c diff --git a/myisam/mi_delete_table.c b/storage/myisam/mi_delete_table.c similarity index 100% rename from myisam/mi_delete_table.c rename to storage/myisam/mi_delete_table.c diff --git a/myisam/mi_dynrec.c b/storage/myisam/mi_dynrec.c similarity index 100% rename from myisam/mi_dynrec.c rename to storage/myisam/mi_dynrec.c diff --git a/myisam/mi_extra.c b/storage/myisam/mi_extra.c similarity index 100% rename from myisam/mi_extra.c rename to storage/myisam/mi_extra.c diff --git a/myisam/mi_info.c b/storage/myisam/mi_info.c similarity index 100% rename from myisam/mi_info.c rename to storage/myisam/mi_info.c diff --git a/myisam/mi_key.c b/storage/myisam/mi_key.c similarity index 100% rename from myisam/mi_key.c rename to storage/myisam/mi_key.c diff --git a/myisam/mi_keycache.c b/storage/myisam/mi_keycache.c similarity index 100% rename from myisam/mi_keycache.c rename to storage/myisam/mi_keycache.c diff --git a/myisam/mi_locking.c b/storage/myisam/mi_locking.c similarity index 100% rename from myisam/mi_locking.c rename to storage/myisam/mi_locking.c diff --git a/myisam/mi_log.c b/storage/myisam/mi_log.c similarity index 100% rename from myisam/mi_log.c rename to storage/myisam/mi_log.c diff --git a/myisam/mi_open.c b/storage/myisam/mi_open.c similarity index 100% rename from myisam/mi_open.c rename to storage/myisam/mi_open.c diff --git a/myisam/mi_packrec.c b/storage/myisam/mi_packrec.c similarity index 100% rename from myisam/mi_packrec.c rename to storage/myisam/mi_packrec.c diff --git a/myisam/mi_page.c b/storage/myisam/mi_page.c similarity index 100% rename from myisam/mi_page.c rename to storage/myisam/mi_page.c diff --git a/myisam/mi_panic.c b/storage/myisam/mi_panic.c similarity index 100% rename from myisam/mi_panic.c rename to storage/myisam/mi_panic.c diff --git a/myisam/mi_preload.c b/storage/myisam/mi_preload.c similarity index 100% rename from myisam/mi_preload.c rename to storage/myisam/mi_preload.c diff --git a/myisam/mi_range.c b/storage/myisam/mi_range.c similarity index 100% rename from myisam/mi_range.c rename to storage/myisam/mi_range.c diff --git a/myisam/mi_rename.c b/storage/myisam/mi_rename.c similarity index 100% rename from myisam/mi_rename.c rename to storage/myisam/mi_rename.c diff --git a/myisam/mi_rfirst.c b/storage/myisam/mi_rfirst.c similarity index 100% rename from myisam/mi_rfirst.c rename to storage/myisam/mi_rfirst.c diff --git a/myisam/mi_rkey.c b/storage/myisam/mi_rkey.c similarity index 100% rename from myisam/mi_rkey.c rename to storage/myisam/mi_rkey.c diff --git a/myisam/mi_rlast.c b/storage/myisam/mi_rlast.c similarity index 100% rename from myisam/mi_rlast.c rename to storage/myisam/mi_rlast.c diff --git a/myisam/mi_rnext.c b/storage/myisam/mi_rnext.c similarity index 100% rename from myisam/mi_rnext.c rename to storage/myisam/mi_rnext.c diff --git a/myisam/mi_rnext_same.c b/storage/myisam/mi_rnext_same.c similarity index 100% rename from myisam/mi_rnext_same.c rename to storage/myisam/mi_rnext_same.c diff --git a/myisam/mi_rprev.c b/storage/myisam/mi_rprev.c similarity index 100% rename from myisam/mi_rprev.c rename to storage/myisam/mi_rprev.c diff --git a/myisam/mi_rrnd.c b/storage/myisam/mi_rrnd.c similarity index 100% rename from myisam/mi_rrnd.c rename to storage/myisam/mi_rrnd.c diff --git a/myisam/mi_rsame.c b/storage/myisam/mi_rsame.c similarity index 100% rename from myisam/mi_rsame.c rename to storage/myisam/mi_rsame.c diff --git a/myisam/mi_rsamepos.c b/storage/myisam/mi_rsamepos.c similarity index 100% rename from myisam/mi_rsamepos.c rename to storage/myisam/mi_rsamepos.c diff --git a/myisam/mi_scan.c b/storage/myisam/mi_scan.c similarity index 100% rename from myisam/mi_scan.c rename to storage/myisam/mi_scan.c diff --git a/myisam/mi_search.c b/storage/myisam/mi_search.c similarity index 100% rename from myisam/mi_search.c rename to storage/myisam/mi_search.c diff --git a/myisam/mi_static.c b/storage/myisam/mi_static.c similarity index 100% rename from myisam/mi_static.c rename to storage/myisam/mi_static.c diff --git a/myisam/mi_statrec.c b/storage/myisam/mi_statrec.c similarity index 100% rename from myisam/mi_statrec.c rename to storage/myisam/mi_statrec.c diff --git a/myisam/mi_test1.c b/storage/myisam/mi_test1.c similarity index 100% rename from myisam/mi_test1.c rename to storage/myisam/mi_test1.c diff --git a/myisam/mi_test2.c b/storage/myisam/mi_test2.c similarity index 100% rename from myisam/mi_test2.c rename to storage/myisam/mi_test2.c diff --git a/myisam/mi_test3.c b/storage/myisam/mi_test3.c similarity index 100% rename from myisam/mi_test3.c rename to storage/myisam/mi_test3.c diff --git a/myisam/mi_test_all.res b/storage/myisam/mi_test_all.res similarity index 100% rename from myisam/mi_test_all.res rename to storage/myisam/mi_test_all.res diff --git a/myisam/mi_test_all.sh b/storage/myisam/mi_test_all.sh similarity index 100% rename from myisam/mi_test_all.sh rename to storage/myisam/mi_test_all.sh diff --git a/myisam/mi_unique.c b/storage/myisam/mi_unique.c similarity index 100% rename from myisam/mi_unique.c rename to storage/myisam/mi_unique.c diff --git a/myisam/mi_update.c b/storage/myisam/mi_update.c similarity index 100% rename from myisam/mi_update.c rename to storage/myisam/mi_update.c diff --git a/myisam/mi_write.c b/storage/myisam/mi_write.c similarity index 100% rename from myisam/mi_write.c rename to storage/myisam/mi_write.c diff --git a/myisam/myisam_ftdump.c b/storage/myisam/myisam_ftdump.c similarity index 100% rename from myisam/myisam_ftdump.c rename to storage/myisam/myisam_ftdump.c diff --git a/myisam/myisamchk.c b/storage/myisam/myisamchk.c similarity index 100% rename from myisam/myisamchk.c rename to storage/myisam/myisamchk.c diff --git a/myisam/myisamdef.h b/storage/myisam/myisamdef.h similarity index 100% rename from myisam/myisamdef.h rename to storage/myisam/myisamdef.h diff --git a/myisam/myisamlog.c b/storage/myisam/myisamlog.c similarity index 100% rename from myisam/myisamlog.c rename to storage/myisam/myisamlog.c diff --git a/myisam/myisampack.c b/storage/myisam/myisampack.c similarity index 100% rename from myisam/myisampack.c rename to storage/myisam/myisampack.c diff --git a/myisam/rt_index.c b/storage/myisam/rt_index.c similarity index 100% rename from myisam/rt_index.c rename to storage/myisam/rt_index.c diff --git a/myisam/rt_index.h b/storage/myisam/rt_index.h similarity index 100% rename from myisam/rt_index.h rename to storage/myisam/rt_index.h diff --git a/myisam/rt_key.c b/storage/myisam/rt_key.c similarity index 100% rename from myisam/rt_key.c rename to storage/myisam/rt_key.c diff --git a/myisam/rt_key.h b/storage/myisam/rt_key.h similarity index 100% rename from myisam/rt_key.h rename to storage/myisam/rt_key.h diff --git a/myisam/rt_mbr.c b/storage/myisam/rt_mbr.c similarity index 100% rename from myisam/rt_mbr.c rename to storage/myisam/rt_mbr.c diff --git a/myisam/rt_mbr.h b/storage/myisam/rt_mbr.h similarity index 100% rename from myisam/rt_mbr.h rename to storage/myisam/rt_mbr.h diff --git a/myisam/rt_split.c b/storage/myisam/rt_split.c similarity index 100% rename from myisam/rt_split.c rename to storage/myisam/rt_split.c diff --git a/myisam/rt_test.c b/storage/myisam/rt_test.c similarity index 100% rename from myisam/rt_test.c rename to storage/myisam/rt_test.c diff --git a/myisam/sort.c b/storage/myisam/sort.c similarity index 100% rename from myisam/sort.c rename to storage/myisam/sort.c diff --git a/myisam/sp_defs.h b/storage/myisam/sp_defs.h similarity index 100% rename from myisam/sp_defs.h rename to storage/myisam/sp_defs.h diff --git a/myisam/sp_key.c b/storage/myisam/sp_key.c similarity index 100% rename from myisam/sp_key.c rename to storage/myisam/sp_key.c diff --git a/myisam/sp_test.c b/storage/myisam/sp_test.c similarity index 100% rename from myisam/sp_test.c rename to storage/myisam/sp_test.c diff --git a/myisam/test_pack b/storage/myisam/test_pack similarity index 100% rename from myisam/test_pack rename to storage/myisam/test_pack diff --git a/myisammrg/.cvsignore b/storage/myisammrg/.cvsignore similarity index 100% rename from myisammrg/.cvsignore rename to storage/myisammrg/.cvsignore diff --git a/myisammrg/Makefile.am b/storage/myisammrg/Makefile.am similarity index 100% rename from myisammrg/Makefile.am rename to storage/myisammrg/Makefile.am diff --git a/myisammrg/make-ccc b/storage/myisammrg/make-ccc similarity index 100% rename from myisammrg/make-ccc rename to storage/myisammrg/make-ccc diff --git a/myisammrg/myrg_close.c b/storage/myisammrg/myrg_close.c similarity index 100% rename from myisammrg/myrg_close.c rename to storage/myisammrg/myrg_close.c diff --git a/myisammrg/myrg_create.c b/storage/myisammrg/myrg_create.c similarity index 100% rename from myisammrg/myrg_create.c rename to storage/myisammrg/myrg_create.c diff --git a/myisammrg/myrg_def.h b/storage/myisammrg/myrg_def.h similarity index 100% rename from myisammrg/myrg_def.h rename to storage/myisammrg/myrg_def.h diff --git a/myisammrg/myrg_delete.c b/storage/myisammrg/myrg_delete.c similarity index 100% rename from myisammrg/myrg_delete.c rename to storage/myisammrg/myrg_delete.c diff --git a/myisammrg/myrg_extra.c b/storage/myisammrg/myrg_extra.c similarity index 100% rename from myisammrg/myrg_extra.c rename to storage/myisammrg/myrg_extra.c diff --git a/myisammrg/myrg_info.c b/storage/myisammrg/myrg_info.c similarity index 100% rename from myisammrg/myrg_info.c rename to storage/myisammrg/myrg_info.c diff --git a/myisammrg/myrg_locking.c b/storage/myisammrg/myrg_locking.c similarity index 100% rename from myisammrg/myrg_locking.c rename to storage/myisammrg/myrg_locking.c diff --git a/myisammrg/myrg_open.c b/storage/myisammrg/myrg_open.c similarity index 100% rename from myisammrg/myrg_open.c rename to storage/myisammrg/myrg_open.c diff --git a/myisammrg/myrg_panic.c b/storage/myisammrg/myrg_panic.c similarity index 100% rename from myisammrg/myrg_panic.c rename to storage/myisammrg/myrg_panic.c diff --git a/myisammrg/myrg_queue.c b/storage/myisammrg/myrg_queue.c similarity index 100% rename from myisammrg/myrg_queue.c rename to storage/myisammrg/myrg_queue.c diff --git a/myisammrg/myrg_range.c b/storage/myisammrg/myrg_range.c similarity index 100% rename from myisammrg/myrg_range.c rename to storage/myisammrg/myrg_range.c diff --git a/myisammrg/myrg_rfirst.c b/storage/myisammrg/myrg_rfirst.c similarity index 100% rename from myisammrg/myrg_rfirst.c rename to storage/myisammrg/myrg_rfirst.c diff --git a/myisammrg/myrg_rkey.c b/storage/myisammrg/myrg_rkey.c similarity index 100% rename from myisammrg/myrg_rkey.c rename to storage/myisammrg/myrg_rkey.c diff --git a/myisammrg/myrg_rlast.c b/storage/myisammrg/myrg_rlast.c similarity index 100% rename from myisammrg/myrg_rlast.c rename to storage/myisammrg/myrg_rlast.c diff --git a/myisammrg/myrg_rnext.c b/storage/myisammrg/myrg_rnext.c similarity index 100% rename from myisammrg/myrg_rnext.c rename to storage/myisammrg/myrg_rnext.c diff --git a/myisammrg/myrg_rnext_same.c b/storage/myisammrg/myrg_rnext_same.c similarity index 100% rename from myisammrg/myrg_rnext_same.c rename to storage/myisammrg/myrg_rnext_same.c diff --git a/myisammrg/myrg_rprev.c b/storage/myisammrg/myrg_rprev.c similarity index 100% rename from myisammrg/myrg_rprev.c rename to storage/myisammrg/myrg_rprev.c diff --git a/myisammrg/myrg_rrnd.c b/storage/myisammrg/myrg_rrnd.c similarity index 100% rename from myisammrg/myrg_rrnd.c rename to storage/myisammrg/myrg_rrnd.c diff --git a/myisammrg/myrg_rsame.c b/storage/myisammrg/myrg_rsame.c similarity index 100% rename from myisammrg/myrg_rsame.c rename to storage/myisammrg/myrg_rsame.c diff --git a/myisammrg/myrg_static.c b/storage/myisammrg/myrg_static.c similarity index 100% rename from myisammrg/myrg_static.c rename to storage/myisammrg/myrg_static.c diff --git a/myisammrg/myrg_update.c b/storage/myisammrg/myrg_update.c similarity index 100% rename from myisammrg/myrg_update.c rename to storage/myisammrg/myrg_update.c diff --git a/myisammrg/myrg_write.c b/storage/myisammrg/myrg_write.c similarity index 100% rename from myisammrg/myrg_write.c rename to storage/myisammrg/myrg_write.c diff --git a/ndb/Makefile.am b/storage/ndb/Makefile.am similarity index 88% rename from ndb/Makefile.am rename to storage/ndb/Makefile.am index 3aac54b38ee..9adb67f89fc 100644 --- a/ndb/Makefile.am +++ b/storage/ndb/Makefile.am @@ -2,7 +2,7 @@ SUBDIRS = src tools . include @ndb_opt_subdirs@ DIST_SUBDIRS = src tools include test docs EXTRA_DIST = config ndbapi-examples -include $(top_srcdir)/ndb/config/common.mk.am +include $(top_srcdir)/storage/ndb/config/common.mk.am dist-hook: -rm -rf `find $(distdir) -type d -name SCCS` @@ -26,5 +26,5 @@ windoze-dsp: all-windoze-dsp: windoze find . -name '*.dsp' | grep -v SCCS | xargs unix2dos - $(top_srcdir)/ndb/config/make-win-dsw.sh | unix2dos > ndb.dsw + $(top_srcdir)/storage/ndb/config/make-win-dsw.sh | unix2dos > ndb.dsw tar cvfz ndb-win-dsp.tar.gz ndb.dsw `find . -name '*.dsp' | grep -v SCCS` diff --git a/ndb/bin/.empty b/storage/ndb/bin/.empty similarity index 100% rename from ndb/bin/.empty rename to storage/ndb/bin/.empty diff --git a/ndb/bin/check-regression.sh b/storage/ndb/bin/check-regression.sh similarity index 100% rename from ndb/bin/check-regression.sh rename to storage/ndb/bin/check-regression.sh diff --git a/ndb/bin/makeTestPrograms_html.sh b/storage/ndb/bin/makeTestPrograms_html.sh similarity index 100% rename from ndb/bin/makeTestPrograms_html.sh rename to storage/ndb/bin/makeTestPrograms_html.sh diff --git a/ndb/config/common.mk.am b/storage/ndb/config/common.mk.am similarity index 52% rename from ndb/config/common.mk.am rename to storage/ndb/config/common.mk.am index 869e2fae91d..1fc254ef57c 100644 --- a/ndb/config/common.mk.am +++ b/storage/ndb/config/common.mk.am @@ -2,11 +2,11 @@ ndbbindir = "$(libexecdir)" ndbtoolsdir = "$(bindir)" ndbtestdir = "$(bindir)" ndblibdir = "$(pkglibdir)" -ndbincludedir = "$(pkgincludedir)/ndb" -ndbapiincludedir = "$(pkgincludedir)/ndb/ndbapi" -mgmapiincludedir = "$(pkgincludedir)/ndb/mgmapi" +ndbincludedir = "$(pkgincludedir)/storage/ndb" +ndbapiincludedir = "$(pkgincludedir)/storage/ndb/ndbapi" +mgmapiincludedir = "$(pkgincludedir)/storage/ndb/mgmapi" INCLUDES = $(INCLUDES_LOC) -LDADD = $(top_srcdir)/ndb/src/common/portlib/gcc.cpp $(LDADD_LOC) +LDADD = $(top_srcdir)/storage/ndb/src/common/portlib/gcc.cpp $(LDADD_LOC) DEFS = @DEFS@ @NDB_DEFS@ $(DEFS_LOC) $(NDB_EXTRA_FLAGS) NDB_CXXFLAGS=@ndb_cxxflags_fix@ $(NDB_CXXFLAGS_LOC) diff --git a/ndb/config/make-win-dsw.sh b/storage/ndb/config/make-win-dsw.sh similarity index 100% rename from ndb/config/make-win-dsw.sh rename to storage/ndb/config/make-win-dsw.sh diff --git a/storage/ndb/config/type_kernel.mk.am b/storage/ndb/config/type_kernel.mk.am new file mode 100644 index 00000000000..710cdbd80fa --- /dev/null +++ b/storage/ndb/config/type_kernel.mk.am @@ -0,0 +1,18 @@ + +INCLUDES += \ + -I$(srcdir) -I$(top_srcdir)/include \ + -I$(top_srcdir)/storage/ndb/include \ + -I$(top_srcdir)/storage/ndb/src/kernel/vm \ + -I$(top_srcdir)/storage/ndb/src/kernel/error \ + -I$(top_srcdir)/storage/ndb/src/kernel \ + -I$(top_srcdir)/storage/ndb/include/kernel \ + -I$(top_srcdir)/storage/ndb/include/transporter \ + -I$(top_srcdir)/storage/ndb/include/debugger \ + -I$(top_srcdir)/storage/ndb/include/mgmapi \ + -I$(top_srcdir)/storage/ndb/include/mgmcommon \ + -I$(top_srcdir)/storage/ndb/include/ndbapi \ + -I$(top_srcdir)/storage/ndb/include/util \ + -I$(top_srcdir)/storage/ndb/include/portlib \ + -I$(top_srcdir)/storage/ndb/include/logger + +#AM_LDFLAGS = @ndb_ldflags@ diff --git a/storage/ndb/config/type_mgmapiclient.mk.am b/storage/ndb/config/type_mgmapiclient.mk.am new file mode 100644 index 00000000000..d1d002962ae --- /dev/null +++ b/storage/ndb/config/type_mgmapiclient.mk.am @@ -0,0 +1,2 @@ + +INCLUDES += -I$(top_srcdir)/storage/ndb/include/mgmapi diff --git a/storage/ndb/config/type_ndbapi.mk.am b/storage/ndb/config/type_ndbapi.mk.am new file mode 100644 index 00000000000..d4be0c40b36 --- /dev/null +++ b/storage/ndb/config/type_ndbapi.mk.am @@ -0,0 +1,12 @@ + +INCLUDES += \ + -I$(srcdir) -I$(top_srcdir)/include -I$(top_srcdir)/storage/ndb/include \ + -I$(top_srcdir)/storage/ndb/include/kernel \ + -I$(top_srcdir)/storage/ndb/include/transporter \ + -I$(top_srcdir)/storage/ndb/include/debugger \ + -I$(top_srcdir)/storage/ndb/include/mgmapi \ + -I$(top_srcdir)/storage/ndb/include/mgmcommon \ + -I$(top_srcdir)/storage/ndb/include/ndbapi \ + -I$(top_srcdir)/storage/ndb/include/util \ + -I$(top_srcdir)/storage/ndb/include/portlib \ + -I$(top_srcdir)/storage/ndb/include/logger diff --git a/storage/ndb/config/type_ndbapiclient.mk.am b/storage/ndb/config/type_ndbapiclient.mk.am new file mode 100644 index 00000000000..eae7ca73ea2 --- /dev/null +++ b/storage/ndb/config/type_ndbapiclient.mk.am @@ -0,0 +1,2 @@ + +INCLUDES += -I$(top_srcdir)/storage/ndb/include/ndbapi diff --git a/storage/ndb/config/type_ndbapitest.mk.am b/storage/ndb/config/type_ndbapitest.mk.am new file mode 100644 index 00000000000..f4a339b27c7 --- /dev/null +++ b/storage/ndb/config/type_ndbapitest.mk.am @@ -0,0 +1,14 @@ + +LDADD += $(top_builddir)/storage/ndb/test/src/libNDBT.a \ + $(top_builddir)/storage/ndb/src/libndbclient.la \ + $(top_builddir)/dbug/libdbug.a \ + $(top_builddir)/mysys/libmysys.a \ + $(top_builddir)/strings/libmystrings.a @NDB_SCI_LIBS@ + +INCLUDES += -I$(top_srcdir) -I$(top_srcdir)/include \ + -I$(top_srcdir)/storage/ndb/include \ + -I$(top_srcdir)/storage/ndb/include/ndbapi \ + -I$(top_srcdir)/storage/ndb/include/util \ + -I$(top_srcdir)/storage/ndb/include/portlib \ + -I$(top_srcdir)/storage/ndb/test/include \ + -I$(top_srcdir)/storage/ndb/include/mgmapi diff --git a/storage/ndb/config/type_ndbapitools.mk.am b/storage/ndb/config/type_ndbapitools.mk.am new file mode 100644 index 00000000000..e0f2fd1c0f6 --- /dev/null +++ b/storage/ndb/config/type_ndbapitools.mk.am @@ -0,0 +1,15 @@ + +LDADD += \ + $(top_builddir)/storage/ndb/src/libndbclient.la \ + $(top_builddir)/dbug/libdbug.a \ + $(top_builddir)/mysys/libmysys.a \ + $(top_builddir)/strings/libmystrings.a @NDB_SCI_LIBS@ + +INCLUDES += -I$(srcdir) -I$(top_srcdir)/include \ + -I$(top_srcdir)/storage/ndb/include \ + -I$(top_srcdir)/storage/ndb/include/ndbapi \ + -I$(top_srcdir)/storage/ndb/include/util \ + -I$(top_srcdir)/storage/ndb/include/portlib \ + -I$(top_srcdir)/storage/ndb/test/include \ + -I$(top_srcdir)/storage/ndb/include/mgmapi \ + -I$(top_srcdir)/storage/ndb/include/kernel diff --git a/storage/ndb/config/type_util.mk.am b/storage/ndb/config/type_util.mk.am new file mode 100644 index 00000000000..5d7ad6e57b9 --- /dev/null +++ b/storage/ndb/config/type_util.mk.am @@ -0,0 +1,6 @@ + +INCLUDES += -I$(srcdir) -I$(top_srcdir)/include \ + -I$(top_srcdir)/storage/ndb/include \ + -I$(top_srcdir)/storage/ndb/include/util \ + -I$(top_srcdir)/storage/ndb/include/portlib \ + -I$(top_srcdir)/storage/ndb/include/logger diff --git a/ndb/config/win-includes b/storage/ndb/config/win-includes similarity index 100% rename from ndb/config/win-includes rename to storage/ndb/config/win-includes diff --git a/ndb/config/win-lib.am b/storage/ndb/config/win-lib.am similarity index 100% rename from ndb/config/win-lib.am rename to storage/ndb/config/win-lib.am diff --git a/ndb/config/win-libraries b/storage/ndb/config/win-libraries similarity index 100% rename from ndb/config/win-libraries rename to storage/ndb/config/win-libraries diff --git a/ndb/config/win-name b/storage/ndb/config/win-name similarity index 100% rename from ndb/config/win-name rename to storage/ndb/config/win-name diff --git a/ndb/config/win-prg.am b/storage/ndb/config/win-prg.am similarity index 100% rename from ndb/config/win-prg.am rename to storage/ndb/config/win-prg.am diff --git a/ndb/config/win-sources b/storage/ndb/config/win-sources similarity index 100% rename from ndb/config/win-sources rename to storage/ndb/config/win-sources diff --git a/ndb/demos/1-node/1-api-3/Ndb.cfg b/storage/ndb/demos/1-node/1-api-3/Ndb.cfg similarity index 100% rename from ndb/demos/1-node/1-api-3/Ndb.cfg rename to storage/ndb/demos/1-node/1-api-3/Ndb.cfg diff --git a/ndb/demos/1-node/1-db-2/Ndb.cfg b/storage/ndb/demos/1-node/1-db-2/Ndb.cfg similarity index 100% rename from ndb/demos/1-node/1-db-2/Ndb.cfg rename to storage/ndb/demos/1-node/1-db-2/Ndb.cfg diff --git a/ndb/demos/1-node/1-mgm-1/Ndb.cfg b/storage/ndb/demos/1-node/1-mgm-1/Ndb.cfg similarity index 100% rename from ndb/demos/1-node/1-mgm-1/Ndb.cfg rename to storage/ndb/demos/1-node/1-mgm-1/Ndb.cfg diff --git a/ndb/demos/1-node/1-mgm-1/template_config.ini b/storage/ndb/demos/1-node/1-mgm-1/template_config.ini similarity index 100% rename from ndb/demos/1-node/1-mgm-1/template_config.ini rename to storage/ndb/demos/1-node/1-mgm-1/template_config.ini diff --git a/ndb/demos/2-node/2-api-4/Ndb.cfg b/storage/ndb/demos/2-node/2-api-4/Ndb.cfg similarity index 100% rename from ndb/demos/2-node/2-api-4/Ndb.cfg rename to storage/ndb/demos/2-node/2-api-4/Ndb.cfg diff --git a/ndb/demos/2-node/2-api-5/Ndb.cfg b/storage/ndb/demos/2-node/2-api-5/Ndb.cfg similarity index 100% rename from ndb/demos/2-node/2-api-5/Ndb.cfg rename to storage/ndb/demos/2-node/2-api-5/Ndb.cfg diff --git a/ndb/demos/2-node/2-api-6/Ndb.cfg b/storage/ndb/demos/2-node/2-api-6/Ndb.cfg similarity index 100% rename from ndb/demos/2-node/2-api-6/Ndb.cfg rename to storage/ndb/demos/2-node/2-api-6/Ndb.cfg diff --git a/ndb/demos/2-node/2-api-7/Ndb.cfg b/storage/ndb/demos/2-node/2-api-7/Ndb.cfg similarity index 100% rename from ndb/demos/2-node/2-api-7/Ndb.cfg rename to storage/ndb/demos/2-node/2-api-7/Ndb.cfg diff --git a/ndb/demos/2-node/2-db-2/Ndb.cfg b/storage/ndb/demos/2-node/2-db-2/Ndb.cfg similarity index 100% rename from ndb/demos/2-node/2-db-2/Ndb.cfg rename to storage/ndb/demos/2-node/2-db-2/Ndb.cfg diff --git a/ndb/demos/2-node/2-db-3/Ndb.cfg b/storage/ndb/demos/2-node/2-db-3/Ndb.cfg similarity index 100% rename from ndb/demos/2-node/2-db-3/Ndb.cfg rename to storage/ndb/demos/2-node/2-db-3/Ndb.cfg diff --git a/ndb/demos/2-node/2-mgm-1/Ndb.cfg b/storage/ndb/demos/2-node/2-mgm-1/Ndb.cfg similarity index 100% rename from ndb/demos/2-node/2-mgm-1/Ndb.cfg rename to storage/ndb/demos/2-node/2-mgm-1/Ndb.cfg diff --git a/ndb/demos/2-node/2-mgm-1/template_config.ini b/storage/ndb/demos/2-node/2-mgm-1/template_config.ini similarity index 100% rename from ndb/demos/2-node/2-mgm-1/template_config.ini rename to storage/ndb/demos/2-node/2-mgm-1/template_config.ini diff --git a/ndb/demos/config-templates/config_template-1-REP.ini b/storage/ndb/demos/config-templates/config_template-1-REP.ini similarity index 100% rename from ndb/demos/config-templates/config_template-1-REP.ini rename to storage/ndb/demos/config-templates/config_template-1-REP.ini diff --git a/ndb/demos/config-templates/config_template-4.ini b/storage/ndb/demos/config-templates/config_template-4.ini similarity index 100% rename from ndb/demos/config-templates/config_template-4.ini rename to storage/ndb/demos/config-templates/config_template-4.ini diff --git a/ndb/demos/config-templates/config_template-install.ini b/storage/ndb/demos/config-templates/config_template-install.ini similarity index 100% rename from ndb/demos/config-templates/config_template-install.ini rename to storage/ndb/demos/config-templates/config_template-install.ini diff --git a/ndb/demos/run_demo1-PS-SS_common.sh b/storage/ndb/demos/run_demo1-PS-SS_common.sh similarity index 100% rename from ndb/demos/run_demo1-PS-SS_common.sh rename to storage/ndb/demos/run_demo1-PS-SS_common.sh diff --git a/ndb/demos/run_demo1-PS.sh b/storage/ndb/demos/run_demo1-PS.sh similarity index 100% rename from ndb/demos/run_demo1-PS.sh rename to storage/ndb/demos/run_demo1-PS.sh diff --git a/ndb/demos/run_demo1-SS.sh b/storage/ndb/demos/run_demo1-SS.sh similarity index 100% rename from ndb/demos/run_demo1-SS.sh rename to storage/ndb/demos/run_demo1-SS.sh diff --git a/ndb/demos/run_demo1.sh b/storage/ndb/demos/run_demo1.sh similarity index 100% rename from ndb/demos/run_demo1.sh rename to storage/ndb/demos/run_demo1.sh diff --git a/ndb/demos/run_demo2.sh b/storage/ndb/demos/run_demo2.sh similarity index 100% rename from ndb/demos/run_demo2.sh rename to storage/ndb/demos/run_demo2.sh diff --git a/ndb/docs/Makefile.am b/storage/ndb/docs/Makefile.am similarity index 87% rename from ndb/docs/Makefile.am rename to storage/ndb/docs/Makefile.am index afa91857771..d10228d419d 100644 --- a/ndb/docs/Makefile.am +++ b/storage/ndb/docs/Makefile.am @@ -47,8 +47,8 @@ ndbapi.html: $(noinst_HEADERS) @RM@ -f ndbapi.pdf ndbapi.html; \ @RM@ -rf $(DOXYTMP) $(DOXYOUT); \ mkdir -p $(DOXYTMP) $(DOXYOUT); \ - @CP@ $(top_srcdir)/ndb/include/ndbapi/* $(DOXYTMP); \ - @CP@ $(top_srcdir)/ndb/ndbapi-examples/*/*.[ch]pp $(DOXYTMP); \ + @CP@ $(top_srcdir)/storage/ndb/include/ndbapi/* $(DOXYTMP); \ + @CP@ $(top_srcdir)/storage/ndb/ndbapi-examples/*/*.[ch]pp $(DOXYTMP); \ @PERL@ $(DOXYDIR)/predoxy.pl; \ mv footer.html $(DOXYTMP); \ (cd $(DOXYTMP) ; @DOXYGEN@ ../$(DOXYDIR)/Doxyfile.ndbapi); \ @@ -74,7 +74,7 @@ mgmapi.html: $(noinst_HEADERS) @RM@ -f mgmapi.pdf mgmapi.html; \ @RM@ -rf $(DOXYTMP) $(DOXYOUT); \ mkdir -p $(DOXYTMP) $(DOXYOUT); \ - @CP@ $(top_srcdir)/ndb/include/mgmapi/* $(DOXYTMP); \ + @CP@ $(top_srcdir)/storage/ndb/include/mgmapi/* $(DOXYTMP); \ @PERL@ $(DOXYDIR)/predoxy.pl; \ mv footer.html $(DOXYTMP); \ (cd $(DOXYTMP) ; @DOXYGEN@ ../$(DOXYDIR)/Doxyfile.mgmapi); \ @@ -97,7 +97,7 @@ mgmapi.pdf: mgmapi.html # src/client ndbdoc: DUMMY mkdir -p $(OUTDIR) - cd $(top_srcdir)/ndb ; $(DOXYGEN) $(DOXYDIR)/Doxyfile.ndb + cd $(top_srcdir)/storage/ndb ; $(DOXYGEN) $(DOXYDIR)/Doxyfile.ndb ### # @@ -105,10 +105,10 @@ ndbdoc: DUMMY odbcdoc: DUMMY mkdir -p $(OUTDIR) - cd $(top_srcdir)/ndb ; $(DOXYGEN) $(DOXYDIR)/Doxyfile.odbc + cd $(top_srcdir)/storage/ndb ; $(DOXYGEN) $(DOXYDIR)/Doxyfile.odbc testdoc: DUMMY mkdir -p $(OUTDIR) - cd $(top_srcdir)/ndb ; $(DOXYGEN) $(DOXYDIR)/Doxyfile.test + cd $(top_srcdir)/storage/ndb ; $(DOXYGEN) $(DOXYDIR)/Doxyfile.test windoze-dsp: diff --git a/ndb/docs/README b/storage/ndb/docs/README similarity index 100% rename from ndb/docs/README rename to storage/ndb/docs/README diff --git a/ndb/docs/doxygen/Doxyfile.mgmapi b/storage/ndb/docs/doxygen/Doxyfile.mgmapi similarity index 100% rename from ndb/docs/doxygen/Doxyfile.mgmapi rename to storage/ndb/docs/doxygen/Doxyfile.mgmapi diff --git a/ndb/docs/doxygen/Doxyfile.ndb b/storage/ndb/docs/doxygen/Doxyfile.ndb similarity index 100% rename from ndb/docs/doxygen/Doxyfile.ndb rename to storage/ndb/docs/doxygen/Doxyfile.ndb diff --git a/ndb/docs/doxygen/Doxyfile.ndbapi b/storage/ndb/docs/doxygen/Doxyfile.ndbapi similarity index 100% rename from ndb/docs/doxygen/Doxyfile.ndbapi rename to storage/ndb/docs/doxygen/Doxyfile.ndbapi diff --git a/ndb/docs/doxygen/Doxyfile.odbc b/storage/ndb/docs/doxygen/Doxyfile.odbc similarity index 100% rename from ndb/docs/doxygen/Doxyfile.odbc rename to storage/ndb/docs/doxygen/Doxyfile.odbc diff --git a/ndb/docs/doxygen/Doxyfile.test b/storage/ndb/docs/doxygen/Doxyfile.test similarity index 100% rename from ndb/docs/doxygen/Doxyfile.test rename to storage/ndb/docs/doxygen/Doxyfile.test diff --git a/ndb/docs/doxygen/header.mgmapi.tex b/storage/ndb/docs/doxygen/header.mgmapi.tex similarity index 100% rename from ndb/docs/doxygen/header.mgmapi.tex rename to storage/ndb/docs/doxygen/header.mgmapi.tex diff --git a/ndb/docs/doxygen/header.ndbapi.tex b/storage/ndb/docs/doxygen/header.ndbapi.tex similarity index 100% rename from ndb/docs/doxygen/header.ndbapi.tex rename to storage/ndb/docs/doxygen/header.ndbapi.tex diff --git a/ndb/docs/doxygen/postdoxy.pl b/storage/ndb/docs/doxygen/postdoxy.pl similarity index 100% rename from ndb/docs/doxygen/postdoxy.pl rename to storage/ndb/docs/doxygen/postdoxy.pl diff --git a/ndb/docs/doxygen/predoxy.pl b/storage/ndb/docs/doxygen/predoxy.pl similarity index 100% rename from ndb/docs/doxygen/predoxy.pl rename to storage/ndb/docs/doxygen/predoxy.pl diff --git a/ndb/docs/wl2077.txt b/storage/ndb/docs/wl2077.txt similarity index 100% rename from ndb/docs/wl2077.txt rename to storage/ndb/docs/wl2077.txt diff --git a/ndb/home/bin/Linuxmkisofs b/storage/ndb/home/bin/Linuxmkisofs similarity index 100% rename from ndb/home/bin/Linuxmkisofs rename to storage/ndb/home/bin/Linuxmkisofs diff --git a/ndb/home/bin/Solarismkisofs b/storage/ndb/home/bin/Solarismkisofs similarity index 100% rename from ndb/home/bin/Solarismkisofs rename to storage/ndb/home/bin/Solarismkisofs diff --git a/ndb/home/bin/cvs2cl.pl b/storage/ndb/home/bin/cvs2cl.pl similarity index 100% rename from ndb/home/bin/cvs2cl.pl rename to storage/ndb/home/bin/cvs2cl.pl diff --git a/ndb/home/bin/fix-cvs-root b/storage/ndb/home/bin/fix-cvs-root similarity index 100% rename from ndb/home/bin/fix-cvs-root rename to storage/ndb/home/bin/fix-cvs-root diff --git a/ndb/home/bin/import-from-bk.sh b/storage/ndb/home/bin/import-from-bk.sh similarity index 100% rename from ndb/home/bin/import-from-bk.sh rename to storage/ndb/home/bin/import-from-bk.sh diff --git a/ndb/home/bin/ndb_deploy b/storage/ndb/home/bin/ndb_deploy similarity index 100% rename from ndb/home/bin/ndb_deploy rename to storage/ndb/home/bin/ndb_deploy diff --git a/ndb/home/bin/ndbdoxy.pl b/storage/ndb/home/bin/ndbdoxy.pl similarity index 100% rename from ndb/home/bin/ndbdoxy.pl rename to storage/ndb/home/bin/ndbdoxy.pl diff --git a/ndb/home/bin/ngcalc b/storage/ndb/home/bin/ngcalc similarity index 100% rename from ndb/home/bin/ngcalc rename to storage/ndb/home/bin/ngcalc diff --git a/ndb/home/bin/parseConfigFile.awk b/storage/ndb/home/bin/parseConfigFile.awk similarity index 100% rename from ndb/home/bin/parseConfigFile.awk rename to storage/ndb/home/bin/parseConfigFile.awk diff --git a/ndb/home/bin/setup-test.sh b/storage/ndb/home/bin/setup-test.sh similarity index 100% rename from ndb/home/bin/setup-test.sh rename to storage/ndb/home/bin/setup-test.sh diff --git a/ndb/home/bin/signallog2html.lib/signallog2list.awk b/storage/ndb/home/bin/signallog2html.lib/signallog2list.awk similarity index 100% rename from ndb/home/bin/signallog2html.lib/signallog2list.awk rename to storage/ndb/home/bin/signallog2html.lib/signallog2list.awk diff --git a/ndb/home/bin/signallog2html.lib/uniq_blocks.awk b/storage/ndb/home/bin/signallog2html.lib/uniq_blocks.awk similarity index 100% rename from ndb/home/bin/signallog2html.lib/uniq_blocks.awk rename to storage/ndb/home/bin/signallog2html.lib/uniq_blocks.awk diff --git a/ndb/home/bin/signallog2html.sh b/storage/ndb/home/bin/signallog2html.sh similarity index 100% rename from ndb/home/bin/signallog2html.sh rename to storage/ndb/home/bin/signallog2html.sh diff --git a/ndb/home/bin/stripcr b/storage/ndb/home/bin/stripcr similarity index 100% rename from ndb/home/bin/stripcr rename to storage/ndb/home/bin/stripcr diff --git a/ndb/home/lib/funcs.sh b/storage/ndb/home/lib/funcs.sh similarity index 100% rename from ndb/home/lib/funcs.sh rename to storage/ndb/home/lib/funcs.sh diff --git a/ndb/include/Makefile.am b/storage/ndb/include/Makefile.am similarity index 94% rename from ndb/include/Makefile.am rename to storage/ndb/include/Makefile.am index 10f297492e9..f702514d4e2 100644 --- a/ndb/include/Makefile.am +++ b/storage/ndb/include/Makefile.am @@ -1,5 +1,5 @@ -include $(top_srcdir)/ndb/config/common.mk.am +include $(top_srcdir)/storage/ndb/config/common.mk.am ndbinclude_HEADERS = \ ndb_constants.h \ diff --git a/ndb/include/debugger/DebuggerNames.hpp b/storage/ndb/include/debugger/DebuggerNames.hpp similarity index 100% rename from ndb/include/debugger/DebuggerNames.hpp rename to storage/ndb/include/debugger/DebuggerNames.hpp diff --git a/ndb/include/debugger/EventLogger.hpp b/storage/ndb/include/debugger/EventLogger.hpp similarity index 100% rename from ndb/include/debugger/EventLogger.hpp rename to storage/ndb/include/debugger/EventLogger.hpp diff --git a/ndb/include/debugger/GrepError.hpp b/storage/ndb/include/debugger/GrepError.hpp similarity index 100% rename from ndb/include/debugger/GrepError.hpp rename to storage/ndb/include/debugger/GrepError.hpp diff --git a/ndb/include/debugger/SignalLoggerManager.hpp b/storage/ndb/include/debugger/SignalLoggerManager.hpp similarity index 100% rename from ndb/include/debugger/SignalLoggerManager.hpp rename to storage/ndb/include/debugger/SignalLoggerManager.hpp diff --git a/ndb/include/editline/editline.h b/storage/ndb/include/editline/editline.h similarity index 100% rename from ndb/include/editline/editline.h rename to storage/ndb/include/editline/editline.h diff --git a/ndb/include/kernel/AttributeDescriptor.hpp b/storage/ndb/include/kernel/AttributeDescriptor.hpp similarity index 100% rename from ndb/include/kernel/AttributeDescriptor.hpp rename to storage/ndb/include/kernel/AttributeDescriptor.hpp diff --git a/ndb/include/kernel/AttributeHeader.hpp b/storage/ndb/include/kernel/AttributeHeader.hpp similarity index 100% rename from ndb/include/kernel/AttributeHeader.hpp rename to storage/ndb/include/kernel/AttributeHeader.hpp diff --git a/ndb/include/kernel/AttributeList.hpp b/storage/ndb/include/kernel/AttributeList.hpp similarity index 100% rename from ndb/include/kernel/AttributeList.hpp rename to storage/ndb/include/kernel/AttributeList.hpp diff --git a/ndb/include/kernel/BlockNumbers.h b/storage/ndb/include/kernel/BlockNumbers.h similarity index 100% rename from ndb/include/kernel/BlockNumbers.h rename to storage/ndb/include/kernel/BlockNumbers.h diff --git a/ndb/include/kernel/GlobalSignalNumbers.h b/storage/ndb/include/kernel/GlobalSignalNumbers.h similarity index 100% rename from ndb/include/kernel/GlobalSignalNumbers.h rename to storage/ndb/include/kernel/GlobalSignalNumbers.h diff --git a/ndb/include/kernel/GrepEvent.hpp b/storage/ndb/include/kernel/GrepEvent.hpp similarity index 100% rename from ndb/include/kernel/GrepEvent.hpp rename to storage/ndb/include/kernel/GrepEvent.hpp diff --git a/ndb/include/kernel/Interpreter.hpp b/storage/ndb/include/kernel/Interpreter.hpp similarity index 100% rename from ndb/include/kernel/Interpreter.hpp rename to storage/ndb/include/kernel/Interpreter.hpp diff --git a/ndb/include/kernel/LogLevel.hpp b/storage/ndb/include/kernel/LogLevel.hpp similarity index 100% rename from ndb/include/kernel/LogLevel.hpp rename to storage/ndb/include/kernel/LogLevel.hpp diff --git a/ndb/include/kernel/NodeBitmask.hpp b/storage/ndb/include/kernel/NodeBitmask.hpp similarity index 100% rename from ndb/include/kernel/NodeBitmask.hpp rename to storage/ndb/include/kernel/NodeBitmask.hpp diff --git a/ndb/include/kernel/NodeInfo.hpp b/storage/ndb/include/kernel/NodeInfo.hpp similarity index 100% rename from ndb/include/kernel/NodeInfo.hpp rename to storage/ndb/include/kernel/NodeInfo.hpp diff --git a/ndb/include/kernel/NodeState.hpp b/storage/ndb/include/kernel/NodeState.hpp similarity index 100% rename from ndb/include/kernel/NodeState.hpp rename to storage/ndb/include/kernel/NodeState.hpp diff --git a/ndb/include/kernel/RefConvert.hpp b/storage/ndb/include/kernel/RefConvert.hpp similarity index 100% rename from ndb/include/kernel/RefConvert.hpp rename to storage/ndb/include/kernel/RefConvert.hpp diff --git a/ndb/include/kernel/kernel_config_parameters.h b/storage/ndb/include/kernel/kernel_config_parameters.h similarity index 100% rename from ndb/include/kernel/kernel_config_parameters.h rename to storage/ndb/include/kernel/kernel_config_parameters.h diff --git a/ndb/include/kernel/kernel_types.h b/storage/ndb/include/kernel/kernel_types.h similarity index 100% rename from ndb/include/kernel/kernel_types.h rename to storage/ndb/include/kernel/kernel_types.h diff --git a/ndb/include/kernel/ndb_limits.h b/storage/ndb/include/kernel/ndb_limits.h similarity index 100% rename from ndb/include/kernel/ndb_limits.h rename to storage/ndb/include/kernel/ndb_limits.h diff --git a/ndb/include/kernel/signaldata/AbortAll.hpp b/storage/ndb/include/kernel/signaldata/AbortAll.hpp similarity index 100% rename from ndb/include/kernel/signaldata/AbortAll.hpp rename to storage/ndb/include/kernel/signaldata/AbortAll.hpp diff --git a/ndb/include/kernel/signaldata/AccFrag.hpp b/storage/ndb/include/kernel/signaldata/AccFrag.hpp similarity index 100% rename from ndb/include/kernel/signaldata/AccFrag.hpp rename to storage/ndb/include/kernel/signaldata/AccFrag.hpp diff --git a/ndb/include/kernel/signaldata/AccLock.hpp b/storage/ndb/include/kernel/signaldata/AccLock.hpp similarity index 100% rename from ndb/include/kernel/signaldata/AccLock.hpp rename to storage/ndb/include/kernel/signaldata/AccLock.hpp diff --git a/ndb/include/kernel/signaldata/AccScan.hpp b/storage/ndb/include/kernel/signaldata/AccScan.hpp similarity index 100% rename from ndb/include/kernel/signaldata/AccScan.hpp rename to storage/ndb/include/kernel/signaldata/AccScan.hpp diff --git a/ndb/include/kernel/signaldata/AccSizeAltReq.hpp b/storage/ndb/include/kernel/signaldata/AccSizeAltReq.hpp similarity index 100% rename from ndb/include/kernel/signaldata/AccSizeAltReq.hpp rename to storage/ndb/include/kernel/signaldata/AccSizeAltReq.hpp diff --git a/ndb/include/kernel/signaldata/AlterIndx.hpp b/storage/ndb/include/kernel/signaldata/AlterIndx.hpp similarity index 100% rename from ndb/include/kernel/signaldata/AlterIndx.hpp rename to storage/ndb/include/kernel/signaldata/AlterIndx.hpp diff --git a/ndb/include/kernel/signaldata/AlterTab.hpp b/storage/ndb/include/kernel/signaldata/AlterTab.hpp similarity index 100% rename from ndb/include/kernel/signaldata/AlterTab.hpp rename to storage/ndb/include/kernel/signaldata/AlterTab.hpp diff --git a/ndb/include/kernel/signaldata/AlterTable.hpp b/storage/ndb/include/kernel/signaldata/AlterTable.hpp similarity index 100% rename from ndb/include/kernel/signaldata/AlterTable.hpp rename to storage/ndb/include/kernel/signaldata/AlterTable.hpp diff --git a/ndb/include/kernel/signaldata/AlterTrig.hpp b/storage/ndb/include/kernel/signaldata/AlterTrig.hpp similarity index 100% rename from ndb/include/kernel/signaldata/AlterTrig.hpp rename to storage/ndb/include/kernel/signaldata/AlterTrig.hpp diff --git a/ndb/include/kernel/signaldata/ApiRegSignalData.hpp b/storage/ndb/include/kernel/signaldata/ApiRegSignalData.hpp similarity index 100% rename from ndb/include/kernel/signaldata/ApiRegSignalData.hpp rename to storage/ndb/include/kernel/signaldata/ApiRegSignalData.hpp diff --git a/ndb/include/kernel/signaldata/ApiVersion.hpp b/storage/ndb/include/kernel/signaldata/ApiVersion.hpp similarity index 100% rename from ndb/include/kernel/signaldata/ApiVersion.hpp rename to storage/ndb/include/kernel/signaldata/ApiVersion.hpp diff --git a/ndb/include/kernel/signaldata/ArbitSignalData.hpp b/storage/ndb/include/kernel/signaldata/ArbitSignalData.hpp similarity index 100% rename from ndb/include/kernel/signaldata/ArbitSignalData.hpp rename to storage/ndb/include/kernel/signaldata/ArbitSignalData.hpp diff --git a/ndb/include/kernel/signaldata/AttrInfo.hpp b/storage/ndb/include/kernel/signaldata/AttrInfo.hpp similarity index 100% rename from ndb/include/kernel/signaldata/AttrInfo.hpp rename to storage/ndb/include/kernel/signaldata/AttrInfo.hpp diff --git a/ndb/include/kernel/signaldata/BackupContinueB.hpp b/storage/ndb/include/kernel/signaldata/BackupContinueB.hpp similarity index 100% rename from ndb/include/kernel/signaldata/BackupContinueB.hpp rename to storage/ndb/include/kernel/signaldata/BackupContinueB.hpp diff --git a/ndb/include/kernel/signaldata/BackupImpl.hpp b/storage/ndb/include/kernel/signaldata/BackupImpl.hpp similarity index 100% rename from ndb/include/kernel/signaldata/BackupImpl.hpp rename to storage/ndb/include/kernel/signaldata/BackupImpl.hpp diff --git a/ndb/include/kernel/signaldata/BackupSignalData.hpp b/storage/ndb/include/kernel/signaldata/BackupSignalData.hpp similarity index 100% rename from ndb/include/kernel/signaldata/BackupSignalData.hpp rename to storage/ndb/include/kernel/signaldata/BackupSignalData.hpp diff --git a/ndb/include/kernel/signaldata/BlockCommitOrd.hpp b/storage/ndb/include/kernel/signaldata/BlockCommitOrd.hpp similarity index 100% rename from ndb/include/kernel/signaldata/BlockCommitOrd.hpp rename to storage/ndb/include/kernel/signaldata/BlockCommitOrd.hpp diff --git a/ndb/include/kernel/signaldata/BuildIndx.hpp b/storage/ndb/include/kernel/signaldata/BuildIndx.hpp similarity index 100% rename from ndb/include/kernel/signaldata/BuildIndx.hpp rename to storage/ndb/include/kernel/signaldata/BuildIndx.hpp diff --git a/ndb/include/kernel/signaldata/CheckNodeGroups.hpp b/storage/ndb/include/kernel/signaldata/CheckNodeGroups.hpp similarity index 100% rename from ndb/include/kernel/signaldata/CheckNodeGroups.hpp rename to storage/ndb/include/kernel/signaldata/CheckNodeGroups.hpp diff --git a/ndb/include/kernel/signaldata/CloseComReqConf.hpp b/storage/ndb/include/kernel/signaldata/CloseComReqConf.hpp similarity index 100% rename from ndb/include/kernel/signaldata/CloseComReqConf.hpp rename to storage/ndb/include/kernel/signaldata/CloseComReqConf.hpp diff --git a/ndb/include/kernel/signaldata/CmInit.hpp b/storage/ndb/include/kernel/signaldata/CmInit.hpp similarity index 100% rename from ndb/include/kernel/signaldata/CmInit.hpp rename to storage/ndb/include/kernel/signaldata/CmInit.hpp diff --git a/ndb/include/kernel/signaldata/CmRegSignalData.hpp b/storage/ndb/include/kernel/signaldata/CmRegSignalData.hpp similarity index 100% rename from ndb/include/kernel/signaldata/CmRegSignalData.hpp rename to storage/ndb/include/kernel/signaldata/CmRegSignalData.hpp diff --git a/ndb/include/kernel/signaldata/CmvmiCfgConf.hpp b/storage/ndb/include/kernel/signaldata/CmvmiCfgConf.hpp similarity index 100% rename from ndb/include/kernel/signaldata/CmvmiCfgConf.hpp rename to storage/ndb/include/kernel/signaldata/CmvmiCfgConf.hpp diff --git a/ndb/include/kernel/signaldata/CntrMasterConf.hpp b/storage/ndb/include/kernel/signaldata/CntrMasterConf.hpp similarity index 100% rename from ndb/include/kernel/signaldata/CntrMasterConf.hpp rename to storage/ndb/include/kernel/signaldata/CntrMasterConf.hpp diff --git a/ndb/include/kernel/signaldata/CntrMasterReq.hpp b/storage/ndb/include/kernel/signaldata/CntrMasterReq.hpp similarity index 100% rename from ndb/include/kernel/signaldata/CntrMasterReq.hpp rename to storage/ndb/include/kernel/signaldata/CntrMasterReq.hpp diff --git a/ndb/include/kernel/signaldata/CntrStart.hpp b/storage/ndb/include/kernel/signaldata/CntrStart.hpp similarity index 100% rename from ndb/include/kernel/signaldata/CntrStart.hpp rename to storage/ndb/include/kernel/signaldata/CntrStart.hpp diff --git a/ndb/include/kernel/signaldata/ConfigParamId.hpp b/storage/ndb/include/kernel/signaldata/ConfigParamId.hpp similarity index 100% rename from ndb/include/kernel/signaldata/ConfigParamId.hpp rename to storage/ndb/include/kernel/signaldata/ConfigParamId.hpp diff --git a/ndb/include/kernel/signaldata/ContinueFragmented.hpp b/storage/ndb/include/kernel/signaldata/ContinueFragmented.hpp similarity index 100% rename from ndb/include/kernel/signaldata/ContinueFragmented.hpp rename to storage/ndb/include/kernel/signaldata/ContinueFragmented.hpp diff --git a/ndb/include/kernel/signaldata/CopyActive.hpp b/storage/ndb/include/kernel/signaldata/CopyActive.hpp similarity index 100% rename from ndb/include/kernel/signaldata/CopyActive.hpp rename to storage/ndb/include/kernel/signaldata/CopyActive.hpp diff --git a/ndb/include/kernel/signaldata/CopyFrag.hpp b/storage/ndb/include/kernel/signaldata/CopyFrag.hpp similarity index 100% rename from ndb/include/kernel/signaldata/CopyFrag.hpp rename to storage/ndb/include/kernel/signaldata/CopyFrag.hpp diff --git a/ndb/include/kernel/signaldata/CopyGCIReq.hpp b/storage/ndb/include/kernel/signaldata/CopyGCIReq.hpp similarity index 100% rename from ndb/include/kernel/signaldata/CopyGCIReq.hpp rename to storage/ndb/include/kernel/signaldata/CopyGCIReq.hpp diff --git a/ndb/include/kernel/signaldata/CreateEvnt.hpp b/storage/ndb/include/kernel/signaldata/CreateEvnt.hpp similarity index 100% rename from ndb/include/kernel/signaldata/CreateEvnt.hpp rename to storage/ndb/include/kernel/signaldata/CreateEvnt.hpp diff --git a/ndb/include/kernel/signaldata/CreateFrag.hpp b/storage/ndb/include/kernel/signaldata/CreateFrag.hpp similarity index 100% rename from ndb/include/kernel/signaldata/CreateFrag.hpp rename to storage/ndb/include/kernel/signaldata/CreateFrag.hpp diff --git a/ndb/include/kernel/signaldata/CreateFragmentation.hpp b/storage/ndb/include/kernel/signaldata/CreateFragmentation.hpp similarity index 100% rename from ndb/include/kernel/signaldata/CreateFragmentation.hpp rename to storage/ndb/include/kernel/signaldata/CreateFragmentation.hpp diff --git a/ndb/include/kernel/signaldata/CreateIndx.hpp b/storage/ndb/include/kernel/signaldata/CreateIndx.hpp similarity index 100% rename from ndb/include/kernel/signaldata/CreateIndx.hpp rename to storage/ndb/include/kernel/signaldata/CreateIndx.hpp diff --git a/ndb/include/kernel/signaldata/CreateTab.hpp b/storage/ndb/include/kernel/signaldata/CreateTab.hpp similarity index 100% rename from ndb/include/kernel/signaldata/CreateTab.hpp rename to storage/ndb/include/kernel/signaldata/CreateTab.hpp diff --git a/ndb/include/kernel/signaldata/CreateTable.hpp b/storage/ndb/include/kernel/signaldata/CreateTable.hpp similarity index 100% rename from ndb/include/kernel/signaldata/CreateTable.hpp rename to storage/ndb/include/kernel/signaldata/CreateTable.hpp diff --git a/ndb/include/kernel/signaldata/CreateTrig.hpp b/storage/ndb/include/kernel/signaldata/CreateTrig.hpp similarity index 100% rename from ndb/include/kernel/signaldata/CreateTrig.hpp rename to storage/ndb/include/kernel/signaldata/CreateTrig.hpp diff --git a/ndb/include/kernel/signaldata/DiAddTab.hpp b/storage/ndb/include/kernel/signaldata/DiAddTab.hpp similarity index 100% rename from ndb/include/kernel/signaldata/DiAddTab.hpp rename to storage/ndb/include/kernel/signaldata/DiAddTab.hpp diff --git a/ndb/include/kernel/signaldata/DiGetNodes.hpp b/storage/ndb/include/kernel/signaldata/DiGetNodes.hpp similarity index 100% rename from ndb/include/kernel/signaldata/DiGetNodes.hpp rename to storage/ndb/include/kernel/signaldata/DiGetNodes.hpp diff --git a/ndb/include/kernel/signaldata/DictSchemaInfo.hpp b/storage/ndb/include/kernel/signaldata/DictSchemaInfo.hpp similarity index 100% rename from ndb/include/kernel/signaldata/DictSchemaInfo.hpp rename to storage/ndb/include/kernel/signaldata/DictSchemaInfo.hpp diff --git a/ndb/include/kernel/signaldata/DictSizeAltReq.hpp b/storage/ndb/include/kernel/signaldata/DictSizeAltReq.hpp similarity index 100% rename from ndb/include/kernel/signaldata/DictSizeAltReq.hpp rename to storage/ndb/include/kernel/signaldata/DictSizeAltReq.hpp diff --git a/ndb/include/kernel/signaldata/DictStart.hpp b/storage/ndb/include/kernel/signaldata/DictStart.hpp similarity index 100% rename from ndb/include/kernel/signaldata/DictStart.hpp rename to storage/ndb/include/kernel/signaldata/DictStart.hpp diff --git a/ndb/include/kernel/signaldata/DictTabInfo.hpp b/storage/ndb/include/kernel/signaldata/DictTabInfo.hpp similarity index 100% rename from ndb/include/kernel/signaldata/DictTabInfo.hpp rename to storage/ndb/include/kernel/signaldata/DictTabInfo.hpp diff --git a/ndb/include/kernel/signaldata/DihAddFrag.hpp b/storage/ndb/include/kernel/signaldata/DihAddFrag.hpp similarity index 100% rename from ndb/include/kernel/signaldata/DihAddFrag.hpp rename to storage/ndb/include/kernel/signaldata/DihAddFrag.hpp diff --git a/ndb/include/kernel/signaldata/DihContinueB.hpp b/storage/ndb/include/kernel/signaldata/DihContinueB.hpp similarity index 100% rename from ndb/include/kernel/signaldata/DihContinueB.hpp rename to storage/ndb/include/kernel/signaldata/DihContinueB.hpp diff --git a/ndb/include/kernel/signaldata/DihSizeAltReq.hpp b/storage/ndb/include/kernel/signaldata/DihSizeAltReq.hpp similarity index 100% rename from ndb/include/kernel/signaldata/DihSizeAltReq.hpp rename to storage/ndb/include/kernel/signaldata/DihSizeAltReq.hpp diff --git a/ndb/include/kernel/signaldata/DihStartTab.hpp b/storage/ndb/include/kernel/signaldata/DihStartTab.hpp similarity index 100% rename from ndb/include/kernel/signaldata/DihStartTab.hpp rename to storage/ndb/include/kernel/signaldata/DihStartTab.hpp diff --git a/ndb/include/kernel/signaldata/DihSwitchReplica.hpp b/storage/ndb/include/kernel/signaldata/DihSwitchReplica.hpp similarity index 100% rename from ndb/include/kernel/signaldata/DihSwitchReplica.hpp rename to storage/ndb/include/kernel/signaldata/DihSwitchReplica.hpp diff --git a/ndb/include/kernel/signaldata/DisconnectRep.hpp b/storage/ndb/include/kernel/signaldata/DisconnectRep.hpp similarity index 100% rename from ndb/include/kernel/signaldata/DisconnectRep.hpp rename to storage/ndb/include/kernel/signaldata/DisconnectRep.hpp diff --git a/ndb/include/kernel/signaldata/DropIndx.hpp b/storage/ndb/include/kernel/signaldata/DropIndx.hpp similarity index 100% rename from ndb/include/kernel/signaldata/DropIndx.hpp rename to storage/ndb/include/kernel/signaldata/DropIndx.hpp diff --git a/ndb/include/kernel/signaldata/DropTab.hpp b/storage/ndb/include/kernel/signaldata/DropTab.hpp similarity index 100% rename from ndb/include/kernel/signaldata/DropTab.hpp rename to storage/ndb/include/kernel/signaldata/DropTab.hpp diff --git a/ndb/include/kernel/signaldata/DropTabFile.hpp b/storage/ndb/include/kernel/signaldata/DropTabFile.hpp similarity index 100% rename from ndb/include/kernel/signaldata/DropTabFile.hpp rename to storage/ndb/include/kernel/signaldata/DropTabFile.hpp diff --git a/ndb/include/kernel/signaldata/DropTable.hpp b/storage/ndb/include/kernel/signaldata/DropTable.hpp similarity index 100% rename from ndb/include/kernel/signaldata/DropTable.hpp rename to storage/ndb/include/kernel/signaldata/DropTable.hpp diff --git a/ndb/include/kernel/signaldata/DropTrig.hpp b/storage/ndb/include/kernel/signaldata/DropTrig.hpp similarity index 100% rename from ndb/include/kernel/signaldata/DropTrig.hpp rename to storage/ndb/include/kernel/signaldata/DropTrig.hpp diff --git a/ndb/include/kernel/signaldata/DumpStateOrd.hpp b/storage/ndb/include/kernel/signaldata/DumpStateOrd.hpp similarity index 100% rename from ndb/include/kernel/signaldata/DumpStateOrd.hpp rename to storage/ndb/include/kernel/signaldata/DumpStateOrd.hpp diff --git a/ndb/include/kernel/signaldata/EmptyLcp.hpp b/storage/ndb/include/kernel/signaldata/EmptyLcp.hpp similarity index 100% rename from ndb/include/kernel/signaldata/EmptyLcp.hpp rename to storage/ndb/include/kernel/signaldata/EmptyLcp.hpp diff --git a/ndb/include/kernel/signaldata/EndTo.hpp b/storage/ndb/include/kernel/signaldata/EndTo.hpp similarity index 100% rename from ndb/include/kernel/signaldata/EndTo.hpp rename to storage/ndb/include/kernel/signaldata/EndTo.hpp diff --git a/ndb/include/kernel/signaldata/EventReport.hpp b/storage/ndb/include/kernel/signaldata/EventReport.hpp similarity index 100% rename from ndb/include/kernel/signaldata/EventReport.hpp rename to storage/ndb/include/kernel/signaldata/EventReport.hpp diff --git a/ndb/include/kernel/signaldata/EventSubscribeReq.hpp b/storage/ndb/include/kernel/signaldata/EventSubscribeReq.hpp similarity index 100% rename from ndb/include/kernel/signaldata/EventSubscribeReq.hpp rename to storage/ndb/include/kernel/signaldata/EventSubscribeReq.hpp diff --git a/ndb/include/kernel/signaldata/ExecFragReq.hpp b/storage/ndb/include/kernel/signaldata/ExecFragReq.hpp similarity index 100% rename from ndb/include/kernel/signaldata/ExecFragReq.hpp rename to storage/ndb/include/kernel/signaldata/ExecFragReq.hpp diff --git a/ndb/include/kernel/signaldata/FailRep.hpp b/storage/ndb/include/kernel/signaldata/FailRep.hpp similarity index 100% rename from ndb/include/kernel/signaldata/FailRep.hpp rename to storage/ndb/include/kernel/signaldata/FailRep.hpp diff --git a/ndb/include/kernel/signaldata/FireTrigOrd.hpp b/storage/ndb/include/kernel/signaldata/FireTrigOrd.hpp similarity index 100% rename from ndb/include/kernel/signaldata/FireTrigOrd.hpp rename to storage/ndb/include/kernel/signaldata/FireTrigOrd.hpp diff --git a/ndb/include/kernel/signaldata/FsAppendReq.hpp b/storage/ndb/include/kernel/signaldata/FsAppendReq.hpp similarity index 100% rename from ndb/include/kernel/signaldata/FsAppendReq.hpp rename to storage/ndb/include/kernel/signaldata/FsAppendReq.hpp diff --git a/ndb/include/kernel/signaldata/FsCloseReq.hpp b/storage/ndb/include/kernel/signaldata/FsCloseReq.hpp similarity index 100% rename from ndb/include/kernel/signaldata/FsCloseReq.hpp rename to storage/ndb/include/kernel/signaldata/FsCloseReq.hpp diff --git a/ndb/include/kernel/signaldata/FsConf.hpp b/storage/ndb/include/kernel/signaldata/FsConf.hpp similarity index 100% rename from ndb/include/kernel/signaldata/FsConf.hpp rename to storage/ndb/include/kernel/signaldata/FsConf.hpp diff --git a/ndb/include/kernel/signaldata/FsOpenReq.hpp b/storage/ndb/include/kernel/signaldata/FsOpenReq.hpp similarity index 100% rename from ndb/include/kernel/signaldata/FsOpenReq.hpp rename to storage/ndb/include/kernel/signaldata/FsOpenReq.hpp diff --git a/ndb/include/kernel/signaldata/FsReadWriteReq.hpp b/storage/ndb/include/kernel/signaldata/FsReadWriteReq.hpp similarity index 100% rename from ndb/include/kernel/signaldata/FsReadWriteReq.hpp rename to storage/ndb/include/kernel/signaldata/FsReadWriteReq.hpp diff --git a/ndb/include/kernel/signaldata/FsRef.hpp b/storage/ndb/include/kernel/signaldata/FsRef.hpp similarity index 100% rename from ndb/include/kernel/signaldata/FsRef.hpp rename to storage/ndb/include/kernel/signaldata/FsRef.hpp diff --git a/ndb/include/kernel/signaldata/FsRemoveReq.hpp b/storage/ndb/include/kernel/signaldata/FsRemoveReq.hpp similarity index 100% rename from ndb/include/kernel/signaldata/FsRemoveReq.hpp rename to storage/ndb/include/kernel/signaldata/FsRemoveReq.hpp diff --git a/ndb/include/kernel/signaldata/GCPSave.hpp b/storage/ndb/include/kernel/signaldata/GCPSave.hpp similarity index 100% rename from ndb/include/kernel/signaldata/GCPSave.hpp rename to storage/ndb/include/kernel/signaldata/GCPSave.hpp diff --git a/ndb/include/kernel/signaldata/GetTabInfo.hpp b/storage/ndb/include/kernel/signaldata/GetTabInfo.hpp similarity index 100% rename from ndb/include/kernel/signaldata/GetTabInfo.hpp rename to storage/ndb/include/kernel/signaldata/GetTabInfo.hpp diff --git a/ndb/include/kernel/signaldata/GetTableId.hpp b/storage/ndb/include/kernel/signaldata/GetTableId.hpp similarity index 100% rename from ndb/include/kernel/signaldata/GetTableId.hpp rename to storage/ndb/include/kernel/signaldata/GetTableId.hpp diff --git a/ndb/include/kernel/signaldata/GrepImpl.hpp b/storage/ndb/include/kernel/signaldata/GrepImpl.hpp similarity index 100% rename from ndb/include/kernel/signaldata/GrepImpl.hpp rename to storage/ndb/include/kernel/signaldata/GrepImpl.hpp diff --git a/ndb/include/kernel/signaldata/HotSpareRep.hpp b/storage/ndb/include/kernel/signaldata/HotSpareRep.hpp similarity index 100% rename from ndb/include/kernel/signaldata/HotSpareRep.hpp rename to storage/ndb/include/kernel/signaldata/HotSpareRep.hpp diff --git a/ndb/include/kernel/signaldata/IndxAttrInfo.hpp b/storage/ndb/include/kernel/signaldata/IndxAttrInfo.hpp similarity index 100% rename from ndb/include/kernel/signaldata/IndxAttrInfo.hpp rename to storage/ndb/include/kernel/signaldata/IndxAttrInfo.hpp diff --git a/ndb/include/kernel/signaldata/IndxKeyInfo.hpp b/storage/ndb/include/kernel/signaldata/IndxKeyInfo.hpp similarity index 100% rename from ndb/include/kernel/signaldata/IndxKeyInfo.hpp rename to storage/ndb/include/kernel/signaldata/IndxKeyInfo.hpp diff --git a/ndb/include/kernel/signaldata/InvalidateNodeLCPConf.hpp b/storage/ndb/include/kernel/signaldata/InvalidateNodeLCPConf.hpp similarity index 100% rename from ndb/include/kernel/signaldata/InvalidateNodeLCPConf.hpp rename to storage/ndb/include/kernel/signaldata/InvalidateNodeLCPConf.hpp diff --git a/ndb/include/kernel/signaldata/InvalidateNodeLCPReq.hpp b/storage/ndb/include/kernel/signaldata/InvalidateNodeLCPReq.hpp similarity index 100% rename from ndb/include/kernel/signaldata/InvalidateNodeLCPReq.hpp rename to storage/ndb/include/kernel/signaldata/InvalidateNodeLCPReq.hpp diff --git a/ndb/include/kernel/signaldata/KeyInfo.hpp b/storage/ndb/include/kernel/signaldata/KeyInfo.hpp similarity index 100% rename from ndb/include/kernel/signaldata/KeyInfo.hpp rename to storage/ndb/include/kernel/signaldata/KeyInfo.hpp diff --git a/ndb/include/kernel/signaldata/LCP.hpp b/storage/ndb/include/kernel/signaldata/LCP.hpp similarity index 100% rename from ndb/include/kernel/signaldata/LCP.hpp rename to storage/ndb/include/kernel/signaldata/LCP.hpp diff --git a/ndb/include/kernel/signaldata/ListTables.hpp b/storage/ndb/include/kernel/signaldata/ListTables.hpp similarity index 100% rename from ndb/include/kernel/signaldata/ListTables.hpp rename to storage/ndb/include/kernel/signaldata/ListTables.hpp diff --git a/ndb/include/kernel/signaldata/LqhFrag.hpp b/storage/ndb/include/kernel/signaldata/LqhFrag.hpp similarity index 100% rename from ndb/include/kernel/signaldata/LqhFrag.hpp rename to storage/ndb/include/kernel/signaldata/LqhFrag.hpp diff --git a/ndb/include/kernel/signaldata/LqhKey.hpp b/storage/ndb/include/kernel/signaldata/LqhKey.hpp similarity index 100% rename from ndb/include/kernel/signaldata/LqhKey.hpp rename to storage/ndb/include/kernel/signaldata/LqhKey.hpp diff --git a/ndb/include/kernel/signaldata/LqhSizeAltReq.hpp b/storage/ndb/include/kernel/signaldata/LqhSizeAltReq.hpp similarity index 100% rename from ndb/include/kernel/signaldata/LqhSizeAltReq.hpp rename to storage/ndb/include/kernel/signaldata/LqhSizeAltReq.hpp diff --git a/ndb/include/kernel/signaldata/LqhTransConf.hpp b/storage/ndb/include/kernel/signaldata/LqhTransConf.hpp similarity index 100% rename from ndb/include/kernel/signaldata/LqhTransConf.hpp rename to storage/ndb/include/kernel/signaldata/LqhTransConf.hpp diff --git a/ndb/include/kernel/signaldata/ManagementServer.hpp b/storage/ndb/include/kernel/signaldata/ManagementServer.hpp similarity index 100% rename from ndb/include/kernel/signaldata/ManagementServer.hpp rename to storage/ndb/include/kernel/signaldata/ManagementServer.hpp diff --git a/ndb/include/kernel/signaldata/MasterGCP.hpp b/storage/ndb/include/kernel/signaldata/MasterGCP.hpp similarity index 100% rename from ndb/include/kernel/signaldata/MasterGCP.hpp rename to storage/ndb/include/kernel/signaldata/MasterGCP.hpp diff --git a/ndb/include/kernel/signaldata/MasterLCP.hpp b/storage/ndb/include/kernel/signaldata/MasterLCP.hpp similarity index 100% rename from ndb/include/kernel/signaldata/MasterLCP.hpp rename to storage/ndb/include/kernel/signaldata/MasterLCP.hpp diff --git a/ndb/include/kernel/signaldata/NFCompleteRep.hpp b/storage/ndb/include/kernel/signaldata/NFCompleteRep.hpp similarity index 100% rename from ndb/include/kernel/signaldata/NFCompleteRep.hpp rename to storage/ndb/include/kernel/signaldata/NFCompleteRep.hpp diff --git a/ndb/include/kernel/signaldata/NdbSttor.hpp b/storage/ndb/include/kernel/signaldata/NdbSttor.hpp similarity index 100% rename from ndb/include/kernel/signaldata/NdbSttor.hpp rename to storage/ndb/include/kernel/signaldata/NdbSttor.hpp diff --git a/ndb/include/kernel/signaldata/NdbfsContinueB.hpp b/storage/ndb/include/kernel/signaldata/NdbfsContinueB.hpp similarity index 100% rename from ndb/include/kernel/signaldata/NdbfsContinueB.hpp rename to storage/ndb/include/kernel/signaldata/NdbfsContinueB.hpp diff --git a/ndb/include/kernel/signaldata/NextScan.hpp b/storage/ndb/include/kernel/signaldata/NextScan.hpp similarity index 100% rename from ndb/include/kernel/signaldata/NextScan.hpp rename to storage/ndb/include/kernel/signaldata/NextScan.hpp diff --git a/ndb/include/kernel/signaldata/NodeFailRep.hpp b/storage/ndb/include/kernel/signaldata/NodeFailRep.hpp similarity index 100% rename from ndb/include/kernel/signaldata/NodeFailRep.hpp rename to storage/ndb/include/kernel/signaldata/NodeFailRep.hpp diff --git a/ndb/include/kernel/signaldata/NodeStateSignalData.hpp b/storage/ndb/include/kernel/signaldata/NodeStateSignalData.hpp similarity index 100% rename from ndb/include/kernel/signaldata/NodeStateSignalData.hpp rename to storage/ndb/include/kernel/signaldata/NodeStateSignalData.hpp diff --git a/ndb/include/kernel/signaldata/PackedSignal.hpp b/storage/ndb/include/kernel/signaldata/PackedSignal.hpp similarity index 100% rename from ndb/include/kernel/signaldata/PackedSignal.hpp rename to storage/ndb/include/kernel/signaldata/PackedSignal.hpp diff --git a/ndb/include/kernel/signaldata/PrepDropTab.hpp b/storage/ndb/include/kernel/signaldata/PrepDropTab.hpp similarity index 100% rename from ndb/include/kernel/signaldata/PrepDropTab.hpp rename to storage/ndb/include/kernel/signaldata/PrepDropTab.hpp diff --git a/ndb/include/kernel/signaldata/PrepFailReqRef.hpp b/storage/ndb/include/kernel/signaldata/PrepFailReqRef.hpp similarity index 100% rename from ndb/include/kernel/signaldata/PrepFailReqRef.hpp rename to storage/ndb/include/kernel/signaldata/PrepFailReqRef.hpp diff --git a/ndb/include/kernel/signaldata/ReadConfig.hpp b/storage/ndb/include/kernel/signaldata/ReadConfig.hpp similarity index 100% rename from ndb/include/kernel/signaldata/ReadConfig.hpp rename to storage/ndb/include/kernel/signaldata/ReadConfig.hpp diff --git a/ndb/include/kernel/signaldata/ReadNodesConf.hpp b/storage/ndb/include/kernel/signaldata/ReadNodesConf.hpp similarity index 100% rename from ndb/include/kernel/signaldata/ReadNodesConf.hpp rename to storage/ndb/include/kernel/signaldata/ReadNodesConf.hpp diff --git a/ndb/include/kernel/signaldata/RelTabMem.hpp b/storage/ndb/include/kernel/signaldata/RelTabMem.hpp similarity index 100% rename from ndb/include/kernel/signaldata/RelTabMem.hpp rename to storage/ndb/include/kernel/signaldata/RelTabMem.hpp diff --git a/ndb/include/kernel/signaldata/RepImpl.hpp b/storage/ndb/include/kernel/signaldata/RepImpl.hpp similarity index 100% rename from ndb/include/kernel/signaldata/RepImpl.hpp rename to storage/ndb/include/kernel/signaldata/RepImpl.hpp diff --git a/ndb/include/kernel/signaldata/ResumeReq.hpp b/storage/ndb/include/kernel/signaldata/ResumeReq.hpp similarity index 100% rename from ndb/include/kernel/signaldata/ResumeReq.hpp rename to storage/ndb/include/kernel/signaldata/ResumeReq.hpp diff --git a/ndb/include/kernel/signaldata/ScanFrag.hpp b/storage/ndb/include/kernel/signaldata/ScanFrag.hpp similarity index 100% rename from ndb/include/kernel/signaldata/ScanFrag.hpp rename to storage/ndb/include/kernel/signaldata/ScanFrag.hpp diff --git a/ndb/include/kernel/signaldata/ScanTab.hpp b/storage/ndb/include/kernel/signaldata/ScanTab.hpp similarity index 100% rename from ndb/include/kernel/signaldata/ScanTab.hpp rename to storage/ndb/include/kernel/signaldata/ScanTab.hpp diff --git a/ndb/include/kernel/signaldata/SetLogLevelOrd.hpp b/storage/ndb/include/kernel/signaldata/SetLogLevelOrd.hpp similarity index 100% rename from ndb/include/kernel/signaldata/SetLogLevelOrd.hpp rename to storage/ndb/include/kernel/signaldata/SetLogLevelOrd.hpp diff --git a/ndb/include/kernel/signaldata/SetVarReq.hpp b/storage/ndb/include/kernel/signaldata/SetVarReq.hpp similarity index 100% rename from ndb/include/kernel/signaldata/SetVarReq.hpp rename to storage/ndb/include/kernel/signaldata/SetVarReq.hpp diff --git a/ndb/include/kernel/signaldata/SignalData.hpp b/storage/ndb/include/kernel/signaldata/SignalData.hpp similarity index 100% rename from ndb/include/kernel/signaldata/SignalData.hpp rename to storage/ndb/include/kernel/signaldata/SignalData.hpp diff --git a/ndb/include/kernel/signaldata/SignalDataPrint.hpp b/storage/ndb/include/kernel/signaldata/SignalDataPrint.hpp similarity index 100% rename from ndb/include/kernel/signaldata/SignalDataPrint.hpp rename to storage/ndb/include/kernel/signaldata/SignalDataPrint.hpp diff --git a/ndb/include/kernel/signaldata/SignalDroppedRep.hpp b/storage/ndb/include/kernel/signaldata/SignalDroppedRep.hpp similarity index 100% rename from ndb/include/kernel/signaldata/SignalDroppedRep.hpp rename to storage/ndb/include/kernel/signaldata/SignalDroppedRep.hpp diff --git a/ndb/include/kernel/signaldata/SrFragidConf.hpp b/storage/ndb/include/kernel/signaldata/SrFragidConf.hpp similarity index 100% rename from ndb/include/kernel/signaldata/SrFragidConf.hpp rename to storage/ndb/include/kernel/signaldata/SrFragidConf.hpp diff --git a/ndb/include/kernel/signaldata/StartFragReq.hpp b/storage/ndb/include/kernel/signaldata/StartFragReq.hpp similarity index 100% rename from ndb/include/kernel/signaldata/StartFragReq.hpp rename to storage/ndb/include/kernel/signaldata/StartFragReq.hpp diff --git a/ndb/include/kernel/signaldata/StartInfo.hpp b/storage/ndb/include/kernel/signaldata/StartInfo.hpp similarity index 100% rename from ndb/include/kernel/signaldata/StartInfo.hpp rename to storage/ndb/include/kernel/signaldata/StartInfo.hpp diff --git a/ndb/include/kernel/signaldata/StartMe.hpp b/storage/ndb/include/kernel/signaldata/StartMe.hpp similarity index 100% rename from ndb/include/kernel/signaldata/StartMe.hpp rename to storage/ndb/include/kernel/signaldata/StartMe.hpp diff --git a/ndb/include/kernel/signaldata/StartOrd.hpp b/storage/ndb/include/kernel/signaldata/StartOrd.hpp similarity index 100% rename from ndb/include/kernel/signaldata/StartOrd.hpp rename to storage/ndb/include/kernel/signaldata/StartOrd.hpp diff --git a/ndb/include/kernel/signaldata/StartPerm.hpp b/storage/ndb/include/kernel/signaldata/StartPerm.hpp similarity index 100% rename from ndb/include/kernel/signaldata/StartPerm.hpp rename to storage/ndb/include/kernel/signaldata/StartPerm.hpp diff --git a/ndb/include/kernel/signaldata/StartRec.hpp b/storage/ndb/include/kernel/signaldata/StartRec.hpp similarity index 100% rename from ndb/include/kernel/signaldata/StartRec.hpp rename to storage/ndb/include/kernel/signaldata/StartRec.hpp diff --git a/ndb/include/kernel/signaldata/StartTo.hpp b/storage/ndb/include/kernel/signaldata/StartTo.hpp similarity index 100% rename from ndb/include/kernel/signaldata/StartTo.hpp rename to storage/ndb/include/kernel/signaldata/StartTo.hpp diff --git a/ndb/include/kernel/signaldata/StopMe.hpp b/storage/ndb/include/kernel/signaldata/StopMe.hpp similarity index 100% rename from ndb/include/kernel/signaldata/StopMe.hpp rename to storage/ndb/include/kernel/signaldata/StopMe.hpp diff --git a/ndb/include/kernel/signaldata/StopPerm.hpp b/storage/ndb/include/kernel/signaldata/StopPerm.hpp similarity index 100% rename from ndb/include/kernel/signaldata/StopPerm.hpp rename to storage/ndb/include/kernel/signaldata/StopPerm.hpp diff --git a/ndb/include/kernel/signaldata/StopReq.hpp b/storage/ndb/include/kernel/signaldata/StopReq.hpp similarity index 100% rename from ndb/include/kernel/signaldata/StopReq.hpp rename to storage/ndb/include/kernel/signaldata/StopReq.hpp diff --git a/ndb/include/kernel/signaldata/SumaImpl.hpp b/storage/ndb/include/kernel/signaldata/SumaImpl.hpp similarity index 100% rename from ndb/include/kernel/signaldata/SumaImpl.hpp rename to storage/ndb/include/kernel/signaldata/SumaImpl.hpp diff --git a/ndb/include/kernel/signaldata/SystemError.hpp b/storage/ndb/include/kernel/signaldata/SystemError.hpp similarity index 100% rename from ndb/include/kernel/signaldata/SystemError.hpp rename to storage/ndb/include/kernel/signaldata/SystemError.hpp diff --git a/ndb/include/kernel/signaldata/TamperOrd.hpp b/storage/ndb/include/kernel/signaldata/TamperOrd.hpp similarity index 100% rename from ndb/include/kernel/signaldata/TamperOrd.hpp rename to storage/ndb/include/kernel/signaldata/TamperOrd.hpp diff --git a/ndb/include/kernel/signaldata/TcCommit.hpp b/storage/ndb/include/kernel/signaldata/TcCommit.hpp similarity index 100% rename from ndb/include/kernel/signaldata/TcCommit.hpp rename to storage/ndb/include/kernel/signaldata/TcCommit.hpp diff --git a/ndb/include/kernel/signaldata/TcContinueB.hpp b/storage/ndb/include/kernel/signaldata/TcContinueB.hpp similarity index 100% rename from ndb/include/kernel/signaldata/TcContinueB.hpp rename to storage/ndb/include/kernel/signaldata/TcContinueB.hpp diff --git a/ndb/include/kernel/signaldata/TcHbRep.hpp b/storage/ndb/include/kernel/signaldata/TcHbRep.hpp similarity index 100% rename from ndb/include/kernel/signaldata/TcHbRep.hpp rename to storage/ndb/include/kernel/signaldata/TcHbRep.hpp diff --git a/ndb/include/kernel/signaldata/TcIndx.hpp b/storage/ndb/include/kernel/signaldata/TcIndx.hpp similarity index 100% rename from ndb/include/kernel/signaldata/TcIndx.hpp rename to storage/ndb/include/kernel/signaldata/TcIndx.hpp diff --git a/ndb/include/kernel/signaldata/TcKeyConf.hpp b/storage/ndb/include/kernel/signaldata/TcKeyConf.hpp similarity index 100% rename from ndb/include/kernel/signaldata/TcKeyConf.hpp rename to storage/ndb/include/kernel/signaldata/TcKeyConf.hpp diff --git a/ndb/include/kernel/signaldata/TcKeyFailConf.hpp b/storage/ndb/include/kernel/signaldata/TcKeyFailConf.hpp similarity index 100% rename from ndb/include/kernel/signaldata/TcKeyFailConf.hpp rename to storage/ndb/include/kernel/signaldata/TcKeyFailConf.hpp diff --git a/ndb/include/kernel/signaldata/TcKeyRef.hpp b/storage/ndb/include/kernel/signaldata/TcKeyRef.hpp similarity index 100% rename from ndb/include/kernel/signaldata/TcKeyRef.hpp rename to storage/ndb/include/kernel/signaldata/TcKeyRef.hpp diff --git a/ndb/include/kernel/signaldata/TcKeyReq.hpp b/storage/ndb/include/kernel/signaldata/TcKeyReq.hpp similarity index 100% rename from ndb/include/kernel/signaldata/TcKeyReq.hpp rename to storage/ndb/include/kernel/signaldata/TcKeyReq.hpp diff --git a/ndb/include/kernel/signaldata/TcRollbackRep.hpp b/storage/ndb/include/kernel/signaldata/TcRollbackRep.hpp similarity index 100% rename from ndb/include/kernel/signaldata/TcRollbackRep.hpp rename to storage/ndb/include/kernel/signaldata/TcRollbackRep.hpp diff --git a/ndb/include/kernel/signaldata/TcSizeAltReq.hpp b/storage/ndb/include/kernel/signaldata/TcSizeAltReq.hpp similarity index 100% rename from ndb/include/kernel/signaldata/TcSizeAltReq.hpp rename to storage/ndb/include/kernel/signaldata/TcSizeAltReq.hpp diff --git a/ndb/include/kernel/signaldata/TestOrd.hpp b/storage/ndb/include/kernel/signaldata/TestOrd.hpp similarity index 100% rename from ndb/include/kernel/signaldata/TestOrd.hpp rename to storage/ndb/include/kernel/signaldata/TestOrd.hpp diff --git a/ndb/include/kernel/signaldata/TransIdAI.hpp b/storage/ndb/include/kernel/signaldata/TransIdAI.hpp similarity index 100% rename from ndb/include/kernel/signaldata/TransIdAI.hpp rename to storage/ndb/include/kernel/signaldata/TransIdAI.hpp diff --git a/ndb/include/kernel/signaldata/TrigAttrInfo.hpp b/storage/ndb/include/kernel/signaldata/TrigAttrInfo.hpp similarity index 100% rename from ndb/include/kernel/signaldata/TrigAttrInfo.hpp rename to storage/ndb/include/kernel/signaldata/TrigAttrInfo.hpp diff --git a/ndb/include/kernel/signaldata/TupCommit.hpp b/storage/ndb/include/kernel/signaldata/TupCommit.hpp similarity index 100% rename from ndb/include/kernel/signaldata/TupCommit.hpp rename to storage/ndb/include/kernel/signaldata/TupCommit.hpp diff --git a/ndb/include/kernel/signaldata/TupFrag.hpp b/storage/ndb/include/kernel/signaldata/TupFrag.hpp similarity index 100% rename from ndb/include/kernel/signaldata/TupFrag.hpp rename to storage/ndb/include/kernel/signaldata/TupFrag.hpp diff --git a/ndb/include/kernel/signaldata/TupKey.hpp b/storage/ndb/include/kernel/signaldata/TupKey.hpp similarity index 100% rename from ndb/include/kernel/signaldata/TupKey.hpp rename to storage/ndb/include/kernel/signaldata/TupKey.hpp diff --git a/ndb/include/kernel/signaldata/TupSizeAltReq.hpp b/storage/ndb/include/kernel/signaldata/TupSizeAltReq.hpp similarity index 100% rename from ndb/include/kernel/signaldata/TupSizeAltReq.hpp rename to storage/ndb/include/kernel/signaldata/TupSizeAltReq.hpp diff --git a/ndb/include/kernel/signaldata/TuxBound.hpp b/storage/ndb/include/kernel/signaldata/TuxBound.hpp similarity index 100% rename from ndb/include/kernel/signaldata/TuxBound.hpp rename to storage/ndb/include/kernel/signaldata/TuxBound.hpp diff --git a/ndb/include/kernel/signaldata/TuxContinueB.hpp b/storage/ndb/include/kernel/signaldata/TuxContinueB.hpp similarity index 100% rename from ndb/include/kernel/signaldata/TuxContinueB.hpp rename to storage/ndb/include/kernel/signaldata/TuxContinueB.hpp diff --git a/ndb/include/kernel/signaldata/TuxMaint.hpp b/storage/ndb/include/kernel/signaldata/TuxMaint.hpp similarity index 100% rename from ndb/include/kernel/signaldata/TuxMaint.hpp rename to storage/ndb/include/kernel/signaldata/TuxMaint.hpp diff --git a/ndb/include/kernel/signaldata/TuxSizeAltReq.hpp b/storage/ndb/include/kernel/signaldata/TuxSizeAltReq.hpp similarity index 100% rename from ndb/include/kernel/signaldata/TuxSizeAltReq.hpp rename to storage/ndb/include/kernel/signaldata/TuxSizeAltReq.hpp diff --git a/ndb/include/kernel/signaldata/UpdateTo.hpp b/storage/ndb/include/kernel/signaldata/UpdateTo.hpp similarity index 100% rename from ndb/include/kernel/signaldata/UpdateTo.hpp rename to storage/ndb/include/kernel/signaldata/UpdateTo.hpp diff --git a/ndb/include/kernel/signaldata/UpgradeStartup.hpp b/storage/ndb/include/kernel/signaldata/UpgradeStartup.hpp similarity index 100% rename from ndb/include/kernel/signaldata/UpgradeStartup.hpp rename to storage/ndb/include/kernel/signaldata/UpgradeStartup.hpp diff --git a/ndb/include/kernel/signaldata/UtilDelete.hpp b/storage/ndb/include/kernel/signaldata/UtilDelete.hpp similarity index 100% rename from ndb/include/kernel/signaldata/UtilDelete.hpp rename to storage/ndb/include/kernel/signaldata/UtilDelete.hpp diff --git a/ndb/include/kernel/signaldata/UtilExecute.hpp b/storage/ndb/include/kernel/signaldata/UtilExecute.hpp similarity index 100% rename from ndb/include/kernel/signaldata/UtilExecute.hpp rename to storage/ndb/include/kernel/signaldata/UtilExecute.hpp diff --git a/ndb/include/kernel/signaldata/UtilLock.hpp b/storage/ndb/include/kernel/signaldata/UtilLock.hpp similarity index 100% rename from ndb/include/kernel/signaldata/UtilLock.hpp rename to storage/ndb/include/kernel/signaldata/UtilLock.hpp diff --git a/ndb/include/kernel/signaldata/UtilPrepare.hpp b/storage/ndb/include/kernel/signaldata/UtilPrepare.hpp similarity index 100% rename from ndb/include/kernel/signaldata/UtilPrepare.hpp rename to storage/ndb/include/kernel/signaldata/UtilPrepare.hpp diff --git a/ndb/include/kernel/signaldata/UtilRelease.hpp b/storage/ndb/include/kernel/signaldata/UtilRelease.hpp similarity index 100% rename from ndb/include/kernel/signaldata/UtilRelease.hpp rename to storage/ndb/include/kernel/signaldata/UtilRelease.hpp diff --git a/ndb/include/kernel/signaldata/UtilSequence.hpp b/storage/ndb/include/kernel/signaldata/UtilSequence.hpp similarity index 100% rename from ndb/include/kernel/signaldata/UtilSequence.hpp rename to storage/ndb/include/kernel/signaldata/UtilSequence.hpp diff --git a/ndb/include/kernel/signaldata/WaitGCP.hpp b/storage/ndb/include/kernel/signaldata/WaitGCP.hpp similarity index 100% rename from ndb/include/kernel/signaldata/WaitGCP.hpp rename to storage/ndb/include/kernel/signaldata/WaitGCP.hpp diff --git a/ndb/include/kernel/trigger_definitions.h b/storage/ndb/include/kernel/trigger_definitions.h similarity index 100% rename from ndb/include/kernel/trigger_definitions.h rename to storage/ndb/include/kernel/trigger_definitions.h diff --git a/ndb/include/logger/ConsoleLogHandler.hpp b/storage/ndb/include/logger/ConsoleLogHandler.hpp similarity index 100% rename from ndb/include/logger/ConsoleLogHandler.hpp rename to storage/ndb/include/logger/ConsoleLogHandler.hpp diff --git a/ndb/include/logger/FileLogHandler.hpp b/storage/ndb/include/logger/FileLogHandler.hpp similarity index 100% rename from ndb/include/logger/FileLogHandler.hpp rename to storage/ndb/include/logger/FileLogHandler.hpp diff --git a/ndb/include/logger/LogHandler.hpp b/storage/ndb/include/logger/LogHandler.hpp similarity index 100% rename from ndb/include/logger/LogHandler.hpp rename to storage/ndb/include/logger/LogHandler.hpp diff --git a/ndb/include/logger/Logger.hpp b/storage/ndb/include/logger/Logger.hpp similarity index 100% rename from ndb/include/logger/Logger.hpp rename to storage/ndb/include/logger/Logger.hpp diff --git a/ndb/include/logger/SysLogHandler.hpp b/storage/ndb/include/logger/SysLogHandler.hpp similarity index 100% rename from ndb/include/logger/SysLogHandler.hpp rename to storage/ndb/include/logger/SysLogHandler.hpp diff --git a/ndb/include/mgmapi/mgmapi.h b/storage/ndb/include/mgmapi/mgmapi.h similarity index 100% rename from ndb/include/mgmapi/mgmapi.h rename to storage/ndb/include/mgmapi/mgmapi.h diff --git a/ndb/include/mgmapi/mgmapi_config_parameters.h b/storage/ndb/include/mgmapi/mgmapi_config_parameters.h similarity index 100% rename from ndb/include/mgmapi/mgmapi_config_parameters.h rename to storage/ndb/include/mgmapi/mgmapi_config_parameters.h diff --git a/ndb/include/mgmapi/mgmapi_config_parameters_debug.h b/storage/ndb/include/mgmapi/mgmapi_config_parameters_debug.h similarity index 100% rename from ndb/include/mgmapi/mgmapi_config_parameters_debug.h rename to storage/ndb/include/mgmapi/mgmapi_config_parameters_debug.h diff --git a/ndb/include/mgmapi/mgmapi_debug.h b/storage/ndb/include/mgmapi/mgmapi_debug.h similarity index 100% rename from ndb/include/mgmapi/mgmapi_debug.h rename to storage/ndb/include/mgmapi/mgmapi_debug.h diff --git a/ndb/include/mgmapi/ndb_logevent.h b/storage/ndb/include/mgmapi/ndb_logevent.h similarity index 100% rename from ndb/include/mgmapi/ndb_logevent.h rename to storage/ndb/include/mgmapi/ndb_logevent.h diff --git a/ndb/include/mgmcommon/ConfigRetriever.hpp b/storage/ndb/include/mgmcommon/ConfigRetriever.hpp similarity index 100% rename from ndb/include/mgmcommon/ConfigRetriever.hpp rename to storage/ndb/include/mgmcommon/ConfigRetriever.hpp diff --git a/ndb/include/mgmcommon/IPCConfig.hpp b/storage/ndb/include/mgmcommon/IPCConfig.hpp similarity index 100% rename from ndb/include/mgmcommon/IPCConfig.hpp rename to storage/ndb/include/mgmcommon/IPCConfig.hpp diff --git a/ndb/include/mgmcommon/MgmtErrorReporter.hpp b/storage/ndb/include/mgmcommon/MgmtErrorReporter.hpp similarity index 100% rename from ndb/include/mgmcommon/MgmtErrorReporter.hpp rename to storage/ndb/include/mgmcommon/MgmtErrorReporter.hpp diff --git a/ndb/include/ndb_constants.h b/storage/ndb/include/ndb_constants.h similarity index 100% rename from ndb/include/ndb_constants.h rename to storage/ndb/include/ndb_constants.h diff --git a/ndb/include/ndb_global.h.in b/storage/ndb/include/ndb_global.h.in similarity index 100% rename from ndb/include/ndb_global.h.in rename to storage/ndb/include/ndb_global.h.in diff --git a/ndb/include/ndb_init.h b/storage/ndb/include/ndb_init.h similarity index 100% rename from ndb/include/ndb_init.h rename to storage/ndb/include/ndb_init.h diff --git a/ndb/include/ndb_net.h b/storage/ndb/include/ndb_net.h similarity index 100% rename from ndb/include/ndb_net.h rename to storage/ndb/include/ndb_net.h diff --git a/ndb/include/ndb_types.h.in b/storage/ndb/include/ndb_types.h.in similarity index 100% rename from ndb/include/ndb_types.h.in rename to storage/ndb/include/ndb_types.h.in diff --git a/ndb/include/ndb_version.h.in b/storage/ndb/include/ndb_version.h.in similarity index 100% rename from ndb/include/ndb_version.h.in rename to storage/ndb/include/ndb_version.h.in diff --git a/ndb/include/ndbapi/Ndb.hpp b/storage/ndb/include/ndbapi/Ndb.hpp similarity index 100% rename from ndb/include/ndbapi/Ndb.hpp rename to storage/ndb/include/ndbapi/Ndb.hpp diff --git a/ndb/include/ndbapi/NdbApi.hpp b/storage/ndb/include/ndbapi/NdbApi.hpp similarity index 100% rename from ndb/include/ndbapi/NdbApi.hpp rename to storage/ndb/include/ndbapi/NdbApi.hpp diff --git a/ndb/include/ndbapi/NdbBlob.hpp b/storage/ndb/include/ndbapi/NdbBlob.hpp similarity index 100% rename from ndb/include/ndbapi/NdbBlob.hpp rename to storage/ndb/include/ndbapi/NdbBlob.hpp diff --git a/ndb/include/ndbapi/NdbDictionary.hpp b/storage/ndb/include/ndbapi/NdbDictionary.hpp similarity index 100% rename from ndb/include/ndbapi/NdbDictionary.hpp rename to storage/ndb/include/ndbapi/NdbDictionary.hpp diff --git a/ndb/include/ndbapi/NdbError.hpp b/storage/ndb/include/ndbapi/NdbError.hpp similarity index 100% rename from ndb/include/ndbapi/NdbError.hpp rename to storage/ndb/include/ndbapi/NdbError.hpp diff --git a/ndb/include/ndbapi/NdbEventOperation.hpp b/storage/ndb/include/ndbapi/NdbEventOperation.hpp similarity index 100% rename from ndb/include/ndbapi/NdbEventOperation.hpp rename to storage/ndb/include/ndbapi/NdbEventOperation.hpp diff --git a/ndb/include/ndbapi/NdbIndexOperation.hpp b/storage/ndb/include/ndbapi/NdbIndexOperation.hpp similarity index 100% rename from ndb/include/ndbapi/NdbIndexOperation.hpp rename to storage/ndb/include/ndbapi/NdbIndexOperation.hpp diff --git a/ndb/include/ndbapi/NdbIndexScanOperation.hpp b/storage/ndb/include/ndbapi/NdbIndexScanOperation.hpp similarity index 100% rename from ndb/include/ndbapi/NdbIndexScanOperation.hpp rename to storage/ndb/include/ndbapi/NdbIndexScanOperation.hpp diff --git a/ndb/include/ndbapi/NdbOperation.hpp b/storage/ndb/include/ndbapi/NdbOperation.hpp similarity index 100% rename from ndb/include/ndbapi/NdbOperation.hpp rename to storage/ndb/include/ndbapi/NdbOperation.hpp diff --git a/ndb/include/ndbapi/NdbPool.hpp b/storage/ndb/include/ndbapi/NdbPool.hpp similarity index 100% rename from ndb/include/ndbapi/NdbPool.hpp rename to storage/ndb/include/ndbapi/NdbPool.hpp diff --git a/ndb/include/ndbapi/NdbRecAttr.hpp b/storage/ndb/include/ndbapi/NdbRecAttr.hpp similarity index 100% rename from ndb/include/ndbapi/NdbRecAttr.hpp rename to storage/ndb/include/ndbapi/NdbRecAttr.hpp diff --git a/ndb/include/ndbapi/NdbReceiver.hpp b/storage/ndb/include/ndbapi/NdbReceiver.hpp similarity index 100% rename from ndb/include/ndbapi/NdbReceiver.hpp rename to storage/ndb/include/ndbapi/NdbReceiver.hpp diff --git a/ndb/include/ndbapi/NdbScanFilter.hpp b/storage/ndb/include/ndbapi/NdbScanFilter.hpp similarity index 100% rename from ndb/include/ndbapi/NdbScanFilter.hpp rename to storage/ndb/include/ndbapi/NdbScanFilter.hpp diff --git a/ndb/include/ndbapi/NdbScanOperation.hpp b/storage/ndb/include/ndbapi/NdbScanOperation.hpp similarity index 100% rename from ndb/include/ndbapi/NdbScanOperation.hpp rename to storage/ndb/include/ndbapi/NdbScanOperation.hpp diff --git a/ndb/include/ndbapi/NdbTransaction.hpp b/storage/ndb/include/ndbapi/NdbTransaction.hpp similarity index 100% rename from ndb/include/ndbapi/NdbTransaction.hpp rename to storage/ndb/include/ndbapi/NdbTransaction.hpp diff --git a/ndb/include/ndbapi/ndb_cluster_connection.hpp b/storage/ndb/include/ndbapi/ndb_cluster_connection.hpp similarity index 100% rename from ndb/include/ndbapi/ndb_cluster_connection.hpp rename to storage/ndb/include/ndbapi/ndb_cluster_connection.hpp diff --git a/ndb/include/ndbapi/ndb_opt_defaults.h b/storage/ndb/include/ndbapi/ndb_opt_defaults.h similarity index 100% rename from ndb/include/ndbapi/ndb_opt_defaults.h rename to storage/ndb/include/ndbapi/ndb_opt_defaults.h diff --git a/ndb/include/ndbapi/ndbapi_limits.h b/storage/ndb/include/ndbapi/ndbapi_limits.h similarity index 100% rename from ndb/include/ndbapi/ndbapi_limits.h rename to storage/ndb/include/ndbapi/ndbapi_limits.h diff --git a/ndb/include/ndbapi/ndberror.h b/storage/ndb/include/ndbapi/ndberror.h similarity index 100% rename from ndb/include/ndbapi/ndberror.h rename to storage/ndb/include/ndbapi/ndberror.h diff --git a/ndb/include/newtonapi/dba.h b/storage/ndb/include/newtonapi/dba.h similarity index 100% rename from ndb/include/newtonapi/dba.h rename to storage/ndb/include/newtonapi/dba.h diff --git a/ndb/include/newtonapi/defs/pcn_types.h b/storage/ndb/include/newtonapi/defs/pcn_types.h similarity index 100% rename from ndb/include/newtonapi/defs/pcn_types.h rename to storage/ndb/include/newtonapi/defs/pcn_types.h diff --git a/ndb/include/portlib/NdbCondition.h b/storage/ndb/include/portlib/NdbCondition.h similarity index 100% rename from ndb/include/portlib/NdbCondition.h rename to storage/ndb/include/portlib/NdbCondition.h diff --git a/ndb/include/portlib/NdbConfig.h b/storage/ndb/include/portlib/NdbConfig.h similarity index 100% rename from ndb/include/portlib/NdbConfig.h rename to storage/ndb/include/portlib/NdbConfig.h diff --git a/ndb/include/portlib/NdbDaemon.h b/storage/ndb/include/portlib/NdbDaemon.h similarity index 100% rename from ndb/include/portlib/NdbDaemon.h rename to storage/ndb/include/portlib/NdbDaemon.h diff --git a/ndb/include/portlib/NdbEnv.h b/storage/ndb/include/portlib/NdbEnv.h similarity index 100% rename from ndb/include/portlib/NdbEnv.h rename to storage/ndb/include/portlib/NdbEnv.h diff --git a/ndb/include/portlib/NdbHost.h b/storage/ndb/include/portlib/NdbHost.h similarity index 100% rename from ndb/include/portlib/NdbHost.h rename to storage/ndb/include/portlib/NdbHost.h diff --git a/ndb/include/portlib/NdbMain.h b/storage/ndb/include/portlib/NdbMain.h similarity index 100% rename from ndb/include/portlib/NdbMain.h rename to storage/ndb/include/portlib/NdbMain.h diff --git a/ndb/include/portlib/NdbMem.h b/storage/ndb/include/portlib/NdbMem.h similarity index 100% rename from ndb/include/portlib/NdbMem.h rename to storage/ndb/include/portlib/NdbMem.h diff --git a/ndb/include/portlib/NdbMutex.h b/storage/ndb/include/portlib/NdbMutex.h similarity index 100% rename from ndb/include/portlib/NdbMutex.h rename to storage/ndb/include/portlib/NdbMutex.h diff --git a/ndb/include/portlib/NdbSleep.h b/storage/ndb/include/portlib/NdbSleep.h similarity index 100% rename from ndb/include/portlib/NdbSleep.h rename to storage/ndb/include/portlib/NdbSleep.h diff --git a/ndb/include/portlib/NdbTCP.h b/storage/ndb/include/portlib/NdbTCP.h similarity index 100% rename from ndb/include/portlib/NdbTCP.h rename to storage/ndb/include/portlib/NdbTCP.h diff --git a/ndb/include/portlib/NdbThread.h b/storage/ndb/include/portlib/NdbThread.h similarity index 100% rename from ndb/include/portlib/NdbThread.h rename to storage/ndb/include/portlib/NdbThread.h diff --git a/ndb/include/portlib/NdbTick.h b/storage/ndb/include/portlib/NdbTick.h similarity index 100% rename from ndb/include/portlib/NdbTick.h rename to storage/ndb/include/portlib/NdbTick.h diff --git a/ndb/include/portlib/PortDefs.h b/storage/ndb/include/portlib/PortDefs.h similarity index 100% rename from ndb/include/portlib/PortDefs.h rename to storage/ndb/include/portlib/PortDefs.h diff --git a/ndb/include/portlib/prefetch.h b/storage/ndb/include/portlib/prefetch.h similarity index 100% rename from ndb/include/portlib/prefetch.h rename to storage/ndb/include/portlib/prefetch.h diff --git a/ndb/include/transporter/TransporterCallback.hpp b/storage/ndb/include/transporter/TransporterCallback.hpp similarity index 100% rename from ndb/include/transporter/TransporterCallback.hpp rename to storage/ndb/include/transporter/TransporterCallback.hpp diff --git a/ndb/include/transporter/TransporterDefinitions.hpp b/storage/ndb/include/transporter/TransporterDefinitions.hpp similarity index 100% rename from ndb/include/transporter/TransporterDefinitions.hpp rename to storage/ndb/include/transporter/TransporterDefinitions.hpp diff --git a/ndb/include/transporter/TransporterRegistry.hpp b/storage/ndb/include/transporter/TransporterRegistry.hpp similarity index 100% rename from ndb/include/transporter/TransporterRegistry.hpp rename to storage/ndb/include/transporter/TransporterRegistry.hpp diff --git a/ndb/include/util/Base64.hpp b/storage/ndb/include/util/Base64.hpp similarity index 100% rename from ndb/include/util/Base64.hpp rename to storage/ndb/include/util/Base64.hpp diff --git a/ndb/include/util/BaseString.hpp b/storage/ndb/include/util/BaseString.hpp similarity index 100% rename from ndb/include/util/BaseString.hpp rename to storage/ndb/include/util/BaseString.hpp diff --git a/ndb/include/util/Bitmask.hpp b/storage/ndb/include/util/Bitmask.hpp similarity index 100% rename from ndb/include/util/Bitmask.hpp rename to storage/ndb/include/util/Bitmask.hpp diff --git a/ndb/include/util/ConfigValues.hpp b/storage/ndb/include/util/ConfigValues.hpp similarity index 100% rename from ndb/include/util/ConfigValues.hpp rename to storage/ndb/include/util/ConfigValues.hpp diff --git a/ndb/include/util/File.hpp b/storage/ndb/include/util/File.hpp similarity index 100% rename from ndb/include/util/File.hpp rename to storage/ndb/include/util/File.hpp diff --git a/ndb/include/util/InputStream.hpp b/storage/ndb/include/util/InputStream.hpp similarity index 100% rename from ndb/include/util/InputStream.hpp rename to storage/ndb/include/util/InputStream.hpp diff --git a/ndb/include/util/NdbAutoPtr.hpp b/storage/ndb/include/util/NdbAutoPtr.hpp similarity index 100% rename from ndb/include/util/NdbAutoPtr.hpp rename to storage/ndb/include/util/NdbAutoPtr.hpp diff --git a/ndb/include/util/NdbOut.hpp b/storage/ndb/include/util/NdbOut.hpp similarity index 100% rename from ndb/include/util/NdbOut.hpp rename to storage/ndb/include/util/NdbOut.hpp diff --git a/ndb/include/util/NdbSqlUtil.hpp b/storage/ndb/include/util/NdbSqlUtil.hpp similarity index 100% rename from ndb/include/util/NdbSqlUtil.hpp rename to storage/ndb/include/util/NdbSqlUtil.hpp diff --git a/ndb/include/util/OutputStream.hpp b/storage/ndb/include/util/OutputStream.hpp similarity index 100% rename from ndb/include/util/OutputStream.hpp rename to storage/ndb/include/util/OutputStream.hpp diff --git a/ndb/include/util/Parser.hpp b/storage/ndb/include/util/Parser.hpp similarity index 100% rename from ndb/include/util/Parser.hpp rename to storage/ndb/include/util/Parser.hpp diff --git a/ndb/include/util/Properties.hpp b/storage/ndb/include/util/Properties.hpp similarity index 100% rename from ndb/include/util/Properties.hpp rename to storage/ndb/include/util/Properties.hpp diff --git a/ndb/include/util/SimpleProperties.hpp b/storage/ndb/include/util/SimpleProperties.hpp similarity index 100% rename from ndb/include/util/SimpleProperties.hpp rename to storage/ndb/include/util/SimpleProperties.hpp diff --git a/ndb/include/util/SocketAuthenticator.hpp b/storage/ndb/include/util/SocketAuthenticator.hpp similarity index 100% rename from ndb/include/util/SocketAuthenticator.hpp rename to storage/ndb/include/util/SocketAuthenticator.hpp diff --git a/ndb/include/util/SocketClient.hpp b/storage/ndb/include/util/SocketClient.hpp similarity index 100% rename from ndb/include/util/SocketClient.hpp rename to storage/ndb/include/util/SocketClient.hpp diff --git a/ndb/include/util/SocketServer.hpp b/storage/ndb/include/util/SocketServer.hpp similarity index 100% rename from ndb/include/util/SocketServer.hpp rename to storage/ndb/include/util/SocketServer.hpp diff --git a/ndb/include/util/UtilBuffer.hpp b/storage/ndb/include/util/UtilBuffer.hpp similarity index 100% rename from ndb/include/util/UtilBuffer.hpp rename to storage/ndb/include/util/UtilBuffer.hpp diff --git a/ndb/include/util/Vector.hpp b/storage/ndb/include/util/Vector.hpp similarity index 100% rename from ndb/include/util/Vector.hpp rename to storage/ndb/include/util/Vector.hpp diff --git a/ndb/include/util/basestring_vsnprintf.h b/storage/ndb/include/util/basestring_vsnprintf.h similarity index 100% rename from ndb/include/util/basestring_vsnprintf.h rename to storage/ndb/include/util/basestring_vsnprintf.h diff --git a/ndb/include/util/md5_hash.hpp b/storage/ndb/include/util/md5_hash.hpp similarity index 100% rename from ndb/include/util/md5_hash.hpp rename to storage/ndb/include/util/md5_hash.hpp diff --git a/ndb/include/util/ndb_opts.h b/storage/ndb/include/util/ndb_opts.h similarity index 100% rename from ndb/include/util/ndb_opts.h rename to storage/ndb/include/util/ndb_opts.h diff --git a/ndb/include/util/random.h b/storage/ndb/include/util/random.h similarity index 100% rename from ndb/include/util/random.h rename to storage/ndb/include/util/random.h diff --git a/ndb/include/util/socket_io.h b/storage/ndb/include/util/socket_io.h similarity index 100% rename from ndb/include/util/socket_io.h rename to storage/ndb/include/util/socket_io.h diff --git a/ndb/include/util/uucode.h b/storage/ndb/include/util/uucode.h similarity index 100% rename from ndb/include/util/uucode.h rename to storage/ndb/include/util/uucode.h diff --git a/ndb/include/util/version.h b/storage/ndb/include/util/version.h similarity index 100% rename from ndb/include/util/version.h rename to storage/ndb/include/util/version.h diff --git a/ndb/lib/.empty b/storage/ndb/lib/.empty similarity index 100% rename from ndb/lib/.empty rename to storage/ndb/lib/.empty diff --git a/ndb/ndbapi-examples/Makefile b/storage/ndb/ndbapi-examples/Makefile similarity index 100% rename from ndb/ndbapi-examples/Makefile rename to storage/ndb/ndbapi-examples/Makefile diff --git a/ndb/ndbapi-examples/mgmapi_logevent_example/Makefile b/storage/ndb/ndbapi-examples/mgmapi_logevent_example/Makefile similarity index 100% rename from ndb/ndbapi-examples/mgmapi_logevent_example/Makefile rename to storage/ndb/ndbapi-examples/mgmapi_logevent_example/Makefile diff --git a/ndb/ndbapi-examples/mgmapi_logevent_example/mgmapi_logevent.cpp b/storage/ndb/ndbapi-examples/mgmapi_logevent_example/mgmapi_logevent.cpp similarity index 100% rename from ndb/ndbapi-examples/mgmapi_logevent_example/mgmapi_logevent.cpp rename to storage/ndb/ndbapi-examples/mgmapi_logevent_example/mgmapi_logevent.cpp diff --git a/ndb/ndbapi-examples/ndbapi_async_example/Makefile b/storage/ndb/ndbapi-examples/ndbapi_async_example/Makefile similarity index 100% rename from ndb/ndbapi-examples/ndbapi_async_example/Makefile rename to storage/ndb/ndbapi-examples/ndbapi_async_example/Makefile diff --git a/ndb/ndbapi-examples/ndbapi_async_example/ndbapi_async.cpp b/storage/ndb/ndbapi-examples/ndbapi_async_example/ndbapi_async.cpp similarity index 100% rename from ndb/ndbapi-examples/ndbapi_async_example/ndbapi_async.cpp rename to storage/ndb/ndbapi-examples/ndbapi_async_example/ndbapi_async.cpp diff --git a/ndb/ndbapi-examples/ndbapi_async_example/readme.txt b/storage/ndb/ndbapi-examples/ndbapi_async_example/readme.txt similarity index 100% rename from ndb/ndbapi-examples/ndbapi_async_example/readme.txt rename to storage/ndb/ndbapi-examples/ndbapi_async_example/readme.txt diff --git a/ndb/ndbapi-examples/ndbapi_async_example1/Makefile b/storage/ndb/ndbapi-examples/ndbapi_async_example1/Makefile similarity index 100% rename from ndb/ndbapi-examples/ndbapi_async_example1/Makefile rename to storage/ndb/ndbapi-examples/ndbapi_async_example1/Makefile diff --git a/ndb/ndbapi-examples/ndbapi_async_example1/ndbapi_async1.cpp b/storage/ndb/ndbapi-examples/ndbapi_async_example1/ndbapi_async1.cpp similarity index 100% rename from ndb/ndbapi-examples/ndbapi_async_example1/ndbapi_async1.cpp rename to storage/ndb/ndbapi-examples/ndbapi_async_example1/ndbapi_async1.cpp diff --git a/ndb/ndbapi-examples/ndbapi_event_example/Makefile b/storage/ndb/ndbapi-examples/ndbapi_event_example/Makefile similarity index 100% rename from ndb/ndbapi-examples/ndbapi_event_example/Makefile rename to storage/ndb/ndbapi-examples/ndbapi_event_example/Makefile diff --git a/ndb/ndbapi-examples/ndbapi_event_example/ndbapi_event.cpp b/storage/ndb/ndbapi-examples/ndbapi_event_example/ndbapi_event.cpp similarity index 100% rename from ndb/ndbapi-examples/ndbapi_event_example/ndbapi_event.cpp rename to storage/ndb/ndbapi-examples/ndbapi_event_example/ndbapi_event.cpp diff --git a/ndb/ndbapi-examples/ndbapi_retries_example/Makefile b/storage/ndb/ndbapi-examples/ndbapi_retries_example/Makefile similarity index 100% rename from ndb/ndbapi-examples/ndbapi_retries_example/Makefile rename to storage/ndb/ndbapi-examples/ndbapi_retries_example/Makefile diff --git a/ndb/ndbapi-examples/ndbapi_retries_example/ndbapi_retries.cpp b/storage/ndb/ndbapi-examples/ndbapi_retries_example/ndbapi_retries.cpp similarity index 100% rename from ndb/ndbapi-examples/ndbapi_retries_example/ndbapi_retries.cpp rename to storage/ndb/ndbapi-examples/ndbapi_retries_example/ndbapi_retries.cpp diff --git a/ndb/ndbapi-examples/ndbapi_scan_example/Makefile b/storage/ndb/ndbapi-examples/ndbapi_scan_example/Makefile similarity index 100% rename from ndb/ndbapi-examples/ndbapi_scan_example/Makefile rename to storage/ndb/ndbapi-examples/ndbapi_scan_example/Makefile diff --git a/ndb/ndbapi-examples/ndbapi_scan_example/ndbapi_scan.cpp b/storage/ndb/ndbapi-examples/ndbapi_scan_example/ndbapi_scan.cpp similarity index 100% rename from ndb/ndbapi-examples/ndbapi_scan_example/ndbapi_scan.cpp rename to storage/ndb/ndbapi-examples/ndbapi_scan_example/ndbapi_scan.cpp diff --git a/ndb/ndbapi-examples/ndbapi_scan_example/readme.txt b/storage/ndb/ndbapi-examples/ndbapi_scan_example/readme.txt similarity index 100% rename from ndb/ndbapi-examples/ndbapi_scan_example/readme.txt rename to storage/ndb/ndbapi-examples/ndbapi_scan_example/readme.txt diff --git a/ndb/ndbapi-examples/ndbapi_simple_example/Makefile b/storage/ndb/ndbapi-examples/ndbapi_simple_example/Makefile similarity index 100% rename from ndb/ndbapi-examples/ndbapi_simple_example/Makefile rename to storage/ndb/ndbapi-examples/ndbapi_simple_example/Makefile diff --git a/ndb/ndbapi-examples/ndbapi_simple_example/ndbapi_simple.cpp b/storage/ndb/ndbapi-examples/ndbapi_simple_example/ndbapi_simple.cpp similarity index 100% rename from ndb/ndbapi-examples/ndbapi_simple_example/ndbapi_simple.cpp rename to storage/ndb/ndbapi-examples/ndbapi_simple_example/ndbapi_simple.cpp diff --git a/ndb/ndbapi-examples/ndbapi_simple_index_example/Makefile b/storage/ndb/ndbapi-examples/ndbapi_simple_index_example/Makefile similarity index 100% rename from ndb/ndbapi-examples/ndbapi_simple_index_example/Makefile rename to storage/ndb/ndbapi-examples/ndbapi_simple_index_example/Makefile diff --git a/ndb/ndbapi-examples/ndbapi_simple_index_example/ndbapi_simple_index.cpp b/storage/ndb/ndbapi-examples/ndbapi_simple_index_example/ndbapi_simple_index.cpp similarity index 100% rename from ndb/ndbapi-examples/ndbapi_simple_index_example/ndbapi_simple_index.cpp rename to storage/ndb/ndbapi-examples/ndbapi_simple_index_example/ndbapi_simple_index.cpp diff --git a/storage/ndb/src/Makefile.am b/storage/ndb/src/Makefile.am new file mode 100644 index 00000000000..23ba5f6f9e4 --- /dev/null +++ b/storage/ndb/src/Makefile.am @@ -0,0 +1,33 @@ +SUBDIRS = common mgmapi ndbapi . kernel mgmclient mgmsrv cw + +include $(top_srcdir)/storage/ndb/config/common.mk.am + +ndblib_LTLIBRARIES = libndbclient.la + +libndbclient_la_SOURCES = + +libndbclient_la_LIBADD = \ + ndbapi/libndbapi.la \ + common/transporter/libtransporter.la \ + common/debugger/libtrace.la \ + common/debugger/signaldata/libsignaldataprint.la \ + mgmapi/libmgmapi.la \ + common/mgmcommon/libmgmsrvcommon.la \ + common/logger/liblogger.la \ + common/portlib/libportlib.la \ + common/util/libgeneral.la + +windoze-dsp: libndbclient.dsp + +libndbclient.dsp: Makefile \ + $(top_srcdir)/storage/ndb/config/win-lib.am \ + $(top_srcdir)/storage/ndb/config/win-name \ + $(top_srcdir)/storage/ndb/config/win-includes \ + $(top_srcdir)/storage/ndb/config/win-sources \ + $(top_srcdir)/storage/ndb/config/win-libraries + cat $(top_srcdir)/storage/ndb/config/win-lib.am > $@ + @$(top_srcdir)/storage/ndb/config/win-name $@ $(ndblib_LTLIBRARIES) + @$(top_srcdir)/storage/ndb/config/win-includes $@ $(INCLUDES) + @$(top_srcdir)/storage/ndb/config/win-sources $@ dummy.cpp + @$(top_srcdir)/storage/ndb/config/win-libraries $@ LIB $(libndbclient_la_LIBADD) + @touch dummy.cpp diff --git a/ndb/src/common/Makefile.am b/storage/ndb/src/common/Makefile.am similarity index 100% rename from ndb/src/common/Makefile.am rename to storage/ndb/src/common/Makefile.am diff --git a/ndb/src/common/debugger/BlockNames.cpp b/storage/ndb/src/common/debugger/BlockNames.cpp similarity index 100% rename from ndb/src/common/debugger/BlockNames.cpp rename to storage/ndb/src/common/debugger/BlockNames.cpp diff --git a/ndb/src/common/debugger/DebuggerNames.cpp b/storage/ndb/src/common/debugger/DebuggerNames.cpp similarity index 100% rename from ndb/src/common/debugger/DebuggerNames.cpp rename to storage/ndb/src/common/debugger/DebuggerNames.cpp diff --git a/ndb/src/common/debugger/EventLogger.cpp b/storage/ndb/src/common/debugger/EventLogger.cpp similarity index 100% rename from ndb/src/common/debugger/EventLogger.cpp rename to storage/ndb/src/common/debugger/EventLogger.cpp diff --git a/ndb/src/common/debugger/GrepError.cpp b/storage/ndb/src/common/debugger/GrepError.cpp similarity index 100% rename from ndb/src/common/debugger/GrepError.cpp rename to storage/ndb/src/common/debugger/GrepError.cpp diff --git a/storage/ndb/src/common/debugger/Makefile.am b/storage/ndb/src/common/debugger/Makefile.am new file mode 100644 index 00000000000..71b8ed55561 --- /dev/null +++ b/storage/ndb/src/common/debugger/Makefile.am @@ -0,0 +1,25 @@ +SUBDIRS = signaldata + +noinst_LTLIBRARIES = libtrace.la + +libtrace_la_SOURCES = SignalLoggerManager.cpp DebuggerNames.cpp BlockNames.cpp EventLogger.cpp GrepError.cpp + +include $(top_srcdir)/storage/ndb/config/common.mk.am +include $(top_srcdir)/storage/ndb/config/type_kernel.mk.am + +# Don't update the files from bitkeeper +%::SCCS/s.% + +windoze-dsp: libtrace.dsp + +libtrace.dsp: Makefile \ + $(top_srcdir)/storage/ndb/config/win-lib.am \ + $(top_srcdir)/storage/ndb/config/win-name \ + $(top_srcdir)/storage/ndb/config/win-includes \ + $(top_srcdir)/storage/ndb/config/win-sources \ + $(top_srcdir)/storage/ndb/config/win-libraries + cat $(top_srcdir)/storage/ndb/config/win-lib.am > $@ + @$(top_srcdir)/storage/ndb/config/win-name $@ $(noinst_LTLIBRARIES) + @$(top_srcdir)/storage/ndb/config/win-includes $@ $(INCLUDES) + @$(top_srcdir)/storage/ndb/config/win-sources $@ $(libtrace_la_SOURCES) + @$(top_srcdir)/storage/ndb/config/win-libraries $@ LIB $(LDADD) diff --git a/ndb/src/common/debugger/SignalLoggerManager.cpp b/storage/ndb/src/common/debugger/SignalLoggerManager.cpp similarity index 100% rename from ndb/src/common/debugger/SignalLoggerManager.cpp rename to storage/ndb/src/common/debugger/SignalLoggerManager.cpp diff --git a/ndb/src/common/debugger/signaldata/AccLock.cpp b/storage/ndb/src/common/debugger/signaldata/AccLock.cpp similarity index 100% rename from ndb/src/common/debugger/signaldata/AccLock.cpp rename to storage/ndb/src/common/debugger/signaldata/AccLock.cpp diff --git a/ndb/src/common/debugger/signaldata/AlterIndx.cpp b/storage/ndb/src/common/debugger/signaldata/AlterIndx.cpp similarity index 100% rename from ndb/src/common/debugger/signaldata/AlterIndx.cpp rename to storage/ndb/src/common/debugger/signaldata/AlterIndx.cpp diff --git a/ndb/src/common/debugger/signaldata/AlterTab.cpp b/storage/ndb/src/common/debugger/signaldata/AlterTab.cpp similarity index 100% rename from ndb/src/common/debugger/signaldata/AlterTab.cpp rename to storage/ndb/src/common/debugger/signaldata/AlterTab.cpp diff --git a/ndb/src/common/debugger/signaldata/AlterTable.cpp b/storage/ndb/src/common/debugger/signaldata/AlterTable.cpp similarity index 100% rename from ndb/src/common/debugger/signaldata/AlterTable.cpp rename to storage/ndb/src/common/debugger/signaldata/AlterTable.cpp diff --git a/ndb/src/common/debugger/signaldata/AlterTrig.cpp b/storage/ndb/src/common/debugger/signaldata/AlterTrig.cpp similarity index 100% rename from ndb/src/common/debugger/signaldata/AlterTrig.cpp rename to storage/ndb/src/common/debugger/signaldata/AlterTrig.cpp diff --git a/ndb/src/common/debugger/signaldata/BackupImpl.cpp b/storage/ndb/src/common/debugger/signaldata/BackupImpl.cpp similarity index 100% rename from ndb/src/common/debugger/signaldata/BackupImpl.cpp rename to storage/ndb/src/common/debugger/signaldata/BackupImpl.cpp diff --git a/ndb/src/common/debugger/signaldata/BackupSignalData.cpp b/storage/ndb/src/common/debugger/signaldata/BackupSignalData.cpp similarity index 100% rename from ndb/src/common/debugger/signaldata/BackupSignalData.cpp rename to storage/ndb/src/common/debugger/signaldata/BackupSignalData.cpp diff --git a/ndb/src/common/debugger/signaldata/CloseComReqConf.cpp b/storage/ndb/src/common/debugger/signaldata/CloseComReqConf.cpp similarity index 100% rename from ndb/src/common/debugger/signaldata/CloseComReqConf.cpp rename to storage/ndb/src/common/debugger/signaldata/CloseComReqConf.cpp diff --git a/ndb/src/common/debugger/signaldata/CntrStart.cpp b/storage/ndb/src/common/debugger/signaldata/CntrStart.cpp similarity index 100% rename from ndb/src/common/debugger/signaldata/CntrStart.cpp rename to storage/ndb/src/common/debugger/signaldata/CntrStart.cpp diff --git a/ndb/src/common/debugger/signaldata/ContinueB.cpp b/storage/ndb/src/common/debugger/signaldata/ContinueB.cpp similarity index 100% rename from ndb/src/common/debugger/signaldata/ContinueB.cpp rename to storage/ndb/src/common/debugger/signaldata/ContinueB.cpp diff --git a/ndb/src/common/debugger/signaldata/CopyGCI.cpp b/storage/ndb/src/common/debugger/signaldata/CopyGCI.cpp similarity index 100% rename from ndb/src/common/debugger/signaldata/CopyGCI.cpp rename to storage/ndb/src/common/debugger/signaldata/CopyGCI.cpp diff --git a/ndb/src/common/debugger/signaldata/CreateEvnt.cpp b/storage/ndb/src/common/debugger/signaldata/CreateEvnt.cpp similarity index 100% rename from ndb/src/common/debugger/signaldata/CreateEvnt.cpp rename to storage/ndb/src/common/debugger/signaldata/CreateEvnt.cpp diff --git a/ndb/src/common/debugger/signaldata/CreateFragmentation.cpp b/storage/ndb/src/common/debugger/signaldata/CreateFragmentation.cpp similarity index 100% rename from ndb/src/common/debugger/signaldata/CreateFragmentation.cpp rename to storage/ndb/src/common/debugger/signaldata/CreateFragmentation.cpp diff --git a/ndb/src/common/debugger/signaldata/CreateIndx.cpp b/storage/ndb/src/common/debugger/signaldata/CreateIndx.cpp similarity index 100% rename from ndb/src/common/debugger/signaldata/CreateIndx.cpp rename to storage/ndb/src/common/debugger/signaldata/CreateIndx.cpp diff --git a/ndb/src/common/debugger/signaldata/CreateTrig.cpp b/storage/ndb/src/common/debugger/signaldata/CreateTrig.cpp similarity index 100% rename from ndb/src/common/debugger/signaldata/CreateTrig.cpp rename to storage/ndb/src/common/debugger/signaldata/CreateTrig.cpp diff --git a/ndb/src/common/debugger/signaldata/DictTabInfo.cpp b/storage/ndb/src/common/debugger/signaldata/DictTabInfo.cpp similarity index 100% rename from ndb/src/common/debugger/signaldata/DictTabInfo.cpp rename to storage/ndb/src/common/debugger/signaldata/DictTabInfo.cpp diff --git a/ndb/src/common/debugger/signaldata/DihContinueB.cpp b/storage/ndb/src/common/debugger/signaldata/DihContinueB.cpp similarity index 100% rename from ndb/src/common/debugger/signaldata/DihContinueB.cpp rename to storage/ndb/src/common/debugger/signaldata/DihContinueB.cpp diff --git a/ndb/src/common/debugger/signaldata/DihSwitchReplicaReq.cpp b/storage/ndb/src/common/debugger/signaldata/DihSwitchReplicaReq.cpp similarity index 100% rename from ndb/src/common/debugger/signaldata/DihSwitchReplicaReq.cpp rename to storage/ndb/src/common/debugger/signaldata/DihSwitchReplicaReq.cpp diff --git a/ndb/src/common/debugger/signaldata/DisconnectRep.cpp b/storage/ndb/src/common/debugger/signaldata/DisconnectRep.cpp similarity index 100% rename from ndb/src/common/debugger/signaldata/DisconnectRep.cpp rename to storage/ndb/src/common/debugger/signaldata/DisconnectRep.cpp diff --git a/ndb/src/common/debugger/signaldata/DropIndx.cpp b/storage/ndb/src/common/debugger/signaldata/DropIndx.cpp similarity index 100% rename from ndb/src/common/debugger/signaldata/DropIndx.cpp rename to storage/ndb/src/common/debugger/signaldata/DropIndx.cpp diff --git a/ndb/src/common/debugger/signaldata/DropTab.cpp b/storage/ndb/src/common/debugger/signaldata/DropTab.cpp similarity index 100% rename from ndb/src/common/debugger/signaldata/DropTab.cpp rename to storage/ndb/src/common/debugger/signaldata/DropTab.cpp diff --git a/ndb/src/common/debugger/signaldata/DropTrig.cpp b/storage/ndb/src/common/debugger/signaldata/DropTrig.cpp similarity index 100% rename from ndb/src/common/debugger/signaldata/DropTrig.cpp rename to storage/ndb/src/common/debugger/signaldata/DropTrig.cpp diff --git a/ndb/src/common/debugger/signaldata/FailRep.cpp b/storage/ndb/src/common/debugger/signaldata/FailRep.cpp similarity index 100% rename from ndb/src/common/debugger/signaldata/FailRep.cpp rename to storage/ndb/src/common/debugger/signaldata/FailRep.cpp diff --git a/ndb/src/common/debugger/signaldata/FireTrigOrd.cpp b/storage/ndb/src/common/debugger/signaldata/FireTrigOrd.cpp similarity index 100% rename from ndb/src/common/debugger/signaldata/FireTrigOrd.cpp rename to storage/ndb/src/common/debugger/signaldata/FireTrigOrd.cpp diff --git a/ndb/src/common/debugger/signaldata/FsAppendReq.cpp b/storage/ndb/src/common/debugger/signaldata/FsAppendReq.cpp similarity index 100% rename from ndb/src/common/debugger/signaldata/FsAppendReq.cpp rename to storage/ndb/src/common/debugger/signaldata/FsAppendReq.cpp diff --git a/ndb/src/common/debugger/signaldata/FsCloseReq.cpp b/storage/ndb/src/common/debugger/signaldata/FsCloseReq.cpp similarity index 100% rename from ndb/src/common/debugger/signaldata/FsCloseReq.cpp rename to storage/ndb/src/common/debugger/signaldata/FsCloseReq.cpp diff --git a/ndb/src/common/debugger/signaldata/FsConf.cpp b/storage/ndb/src/common/debugger/signaldata/FsConf.cpp similarity index 100% rename from ndb/src/common/debugger/signaldata/FsConf.cpp rename to storage/ndb/src/common/debugger/signaldata/FsConf.cpp diff --git a/ndb/src/common/debugger/signaldata/FsOpenReq.cpp b/storage/ndb/src/common/debugger/signaldata/FsOpenReq.cpp similarity index 100% rename from ndb/src/common/debugger/signaldata/FsOpenReq.cpp rename to storage/ndb/src/common/debugger/signaldata/FsOpenReq.cpp diff --git a/ndb/src/common/debugger/signaldata/FsReadWriteReq.cpp b/storage/ndb/src/common/debugger/signaldata/FsReadWriteReq.cpp similarity index 100% rename from ndb/src/common/debugger/signaldata/FsReadWriteReq.cpp rename to storage/ndb/src/common/debugger/signaldata/FsReadWriteReq.cpp diff --git a/ndb/src/common/debugger/signaldata/FsRef.cpp b/storage/ndb/src/common/debugger/signaldata/FsRef.cpp similarity index 100% rename from ndb/src/common/debugger/signaldata/FsRef.cpp rename to storage/ndb/src/common/debugger/signaldata/FsRef.cpp diff --git a/ndb/src/common/debugger/signaldata/GCPSave.cpp b/storage/ndb/src/common/debugger/signaldata/GCPSave.cpp similarity index 100% rename from ndb/src/common/debugger/signaldata/GCPSave.cpp rename to storage/ndb/src/common/debugger/signaldata/GCPSave.cpp diff --git a/ndb/src/common/debugger/signaldata/IndxAttrInfo.cpp b/storage/ndb/src/common/debugger/signaldata/IndxAttrInfo.cpp similarity index 100% rename from ndb/src/common/debugger/signaldata/IndxAttrInfo.cpp rename to storage/ndb/src/common/debugger/signaldata/IndxAttrInfo.cpp diff --git a/ndb/src/common/debugger/signaldata/IndxKeyInfo.cpp b/storage/ndb/src/common/debugger/signaldata/IndxKeyInfo.cpp similarity index 100% rename from ndb/src/common/debugger/signaldata/IndxKeyInfo.cpp rename to storage/ndb/src/common/debugger/signaldata/IndxKeyInfo.cpp diff --git a/ndb/src/common/debugger/signaldata/LCP.cpp b/storage/ndb/src/common/debugger/signaldata/LCP.cpp similarity index 100% rename from ndb/src/common/debugger/signaldata/LCP.cpp rename to storage/ndb/src/common/debugger/signaldata/LCP.cpp diff --git a/ndb/src/common/debugger/signaldata/LqhFrag.cpp b/storage/ndb/src/common/debugger/signaldata/LqhFrag.cpp similarity index 100% rename from ndb/src/common/debugger/signaldata/LqhFrag.cpp rename to storage/ndb/src/common/debugger/signaldata/LqhFrag.cpp diff --git a/ndb/src/common/debugger/signaldata/LqhKey.cpp b/storage/ndb/src/common/debugger/signaldata/LqhKey.cpp similarity index 100% rename from ndb/src/common/debugger/signaldata/LqhKey.cpp rename to storage/ndb/src/common/debugger/signaldata/LqhKey.cpp diff --git a/ndb/src/common/debugger/signaldata/LqhTrans.cpp b/storage/ndb/src/common/debugger/signaldata/LqhTrans.cpp similarity index 100% rename from ndb/src/common/debugger/signaldata/LqhTrans.cpp rename to storage/ndb/src/common/debugger/signaldata/LqhTrans.cpp diff --git a/ndb/src/common/debugger/signaldata/Makefile.am b/storage/ndb/src/common/debugger/signaldata/Makefile.am similarity index 64% rename from ndb/src/common/debugger/signaldata/Makefile.am rename to storage/ndb/src/common/debugger/signaldata/Makefile.am index 9146d552568..af9d343de44 100644 --- a/ndb/src/common/debugger/signaldata/Makefile.am +++ b/storage/ndb/src/common/debugger/signaldata/Makefile.am @@ -26,8 +26,8 @@ libsignaldataprint_la_SOURCES = \ LqhTrans.cpp ReadNodesConf.cpp CntrStart.cpp \ ScanFrag.cpp -include $(top_srcdir)/ndb/config/common.mk.am -include $(top_srcdir)/ndb/config/type_ndbapi.mk.am +include $(top_srcdir)/storage/ndb/config/common.mk.am +include $(top_srcdir)/storage/ndb/config/type_ndbapi.mk.am # Don't update the files from bitkeeper %::SCCS/s.% @@ -35,13 +35,13 @@ include $(top_srcdir)/ndb/config/type_ndbapi.mk.am windoze-dsp: libsignaldataprint.dsp libsignaldataprint.dsp: Makefile \ - $(top_srcdir)/ndb/config/win-lib.am \ - $(top_srcdir)/ndb/config/win-name \ - $(top_srcdir)/ndb/config/win-includes \ - $(top_srcdir)/ndb/config/win-sources \ - $(top_srcdir)/ndb/config/win-libraries - cat $(top_srcdir)/ndb/config/win-lib.am > $@ - @$(top_srcdir)/ndb/config/win-name $@ $(noinst_LTLIBRARIES) - @$(top_srcdir)/ndb/config/win-includes $@ $(INCLUDES) - @$(top_srcdir)/ndb/config/win-sources $@ $(libsignaldataprint_la_SOURCES) - @$(top_srcdir)/ndb/config/win-libraries $@ LIB $(LDADD) + $(top_srcdir)/storage/ndb/config/win-lib.am \ + $(top_srcdir)/storage/ndb/config/win-name \ + $(top_srcdir)/storage/ndb/config/win-includes \ + $(top_srcdir)/storage/ndb/config/win-sources \ + $(top_srcdir)/storage/ndb/config/win-libraries + cat $(top_srcdir)/storage/ndb/config/win-lib.am > $@ + @$(top_srcdir)/storage/ndb/config/win-name $@ $(noinst_LTLIBRARIES) + @$(top_srcdir)/storage/ndb/config/win-includes $@ $(INCLUDES) + @$(top_srcdir)/storage/ndb/config/win-sources $@ $(libsignaldataprint_la_SOURCES) + @$(top_srcdir)/storage/ndb/config/win-libraries $@ LIB $(LDADD) diff --git a/ndb/src/common/debugger/signaldata/MasterLCP.cpp b/storage/ndb/src/common/debugger/signaldata/MasterLCP.cpp similarity index 100% rename from ndb/src/common/debugger/signaldata/MasterLCP.cpp rename to storage/ndb/src/common/debugger/signaldata/MasterLCP.cpp diff --git a/ndb/src/common/debugger/signaldata/NFCompleteRep.cpp b/storage/ndb/src/common/debugger/signaldata/NFCompleteRep.cpp similarity index 100% rename from ndb/src/common/debugger/signaldata/NFCompleteRep.cpp rename to storage/ndb/src/common/debugger/signaldata/NFCompleteRep.cpp diff --git a/ndb/src/common/debugger/signaldata/NdbSttor.cpp b/storage/ndb/src/common/debugger/signaldata/NdbSttor.cpp similarity index 100% rename from ndb/src/common/debugger/signaldata/NdbSttor.cpp rename to storage/ndb/src/common/debugger/signaldata/NdbSttor.cpp diff --git a/ndb/src/common/debugger/signaldata/NdbfsContinueB.cpp b/storage/ndb/src/common/debugger/signaldata/NdbfsContinueB.cpp similarity index 100% rename from ndb/src/common/debugger/signaldata/NdbfsContinueB.cpp rename to storage/ndb/src/common/debugger/signaldata/NdbfsContinueB.cpp diff --git a/ndb/src/common/debugger/signaldata/PackedSignal.cpp b/storage/ndb/src/common/debugger/signaldata/PackedSignal.cpp similarity index 100% rename from ndb/src/common/debugger/signaldata/PackedSignal.cpp rename to storage/ndb/src/common/debugger/signaldata/PackedSignal.cpp diff --git a/ndb/src/common/debugger/signaldata/PrepDropTab.cpp b/storage/ndb/src/common/debugger/signaldata/PrepDropTab.cpp similarity index 100% rename from ndb/src/common/debugger/signaldata/PrepDropTab.cpp rename to storage/ndb/src/common/debugger/signaldata/PrepDropTab.cpp diff --git a/ndb/src/common/debugger/signaldata/PrepFailReqRef.cpp b/storage/ndb/src/common/debugger/signaldata/PrepFailReqRef.cpp similarity index 100% rename from ndb/src/common/debugger/signaldata/PrepFailReqRef.cpp rename to storage/ndb/src/common/debugger/signaldata/PrepFailReqRef.cpp diff --git a/ndb/src/common/debugger/signaldata/ReadNodesConf.cpp b/storage/ndb/src/common/debugger/signaldata/ReadNodesConf.cpp similarity index 100% rename from ndb/src/common/debugger/signaldata/ReadNodesConf.cpp rename to storage/ndb/src/common/debugger/signaldata/ReadNodesConf.cpp diff --git a/ndb/src/common/debugger/signaldata/ScanFrag.cpp b/storage/ndb/src/common/debugger/signaldata/ScanFrag.cpp similarity index 100% rename from ndb/src/common/debugger/signaldata/ScanFrag.cpp rename to storage/ndb/src/common/debugger/signaldata/ScanFrag.cpp diff --git a/ndb/src/common/debugger/signaldata/ScanTab.cpp b/storage/ndb/src/common/debugger/signaldata/ScanTab.cpp similarity index 100% rename from ndb/src/common/debugger/signaldata/ScanTab.cpp rename to storage/ndb/src/common/debugger/signaldata/ScanTab.cpp diff --git a/ndb/src/common/debugger/signaldata/SignalDataPrint.cpp b/storage/ndb/src/common/debugger/signaldata/SignalDataPrint.cpp similarity index 100% rename from ndb/src/common/debugger/signaldata/SignalDataPrint.cpp rename to storage/ndb/src/common/debugger/signaldata/SignalDataPrint.cpp diff --git a/ndb/src/common/debugger/signaldata/SignalDroppedRep.cpp b/storage/ndb/src/common/debugger/signaldata/SignalDroppedRep.cpp similarity index 100% rename from ndb/src/common/debugger/signaldata/SignalDroppedRep.cpp rename to storage/ndb/src/common/debugger/signaldata/SignalDroppedRep.cpp diff --git a/ndb/src/common/debugger/signaldata/SignalNames.cpp b/storage/ndb/src/common/debugger/signaldata/SignalNames.cpp similarity index 100% rename from ndb/src/common/debugger/signaldata/SignalNames.cpp rename to storage/ndb/src/common/debugger/signaldata/SignalNames.cpp diff --git a/ndb/src/common/debugger/signaldata/StartRec.cpp b/storage/ndb/src/common/debugger/signaldata/StartRec.cpp similarity index 100% rename from ndb/src/common/debugger/signaldata/StartRec.cpp rename to storage/ndb/src/common/debugger/signaldata/StartRec.cpp diff --git a/ndb/src/common/debugger/signaldata/SumaImpl.cpp b/storage/ndb/src/common/debugger/signaldata/SumaImpl.cpp similarity index 100% rename from ndb/src/common/debugger/signaldata/SumaImpl.cpp rename to storage/ndb/src/common/debugger/signaldata/SumaImpl.cpp diff --git a/ndb/src/common/debugger/signaldata/SystemError.cpp b/storage/ndb/src/common/debugger/signaldata/SystemError.cpp similarity index 100% rename from ndb/src/common/debugger/signaldata/SystemError.cpp rename to storage/ndb/src/common/debugger/signaldata/SystemError.cpp diff --git a/ndb/src/common/debugger/signaldata/TcIndx.cpp b/storage/ndb/src/common/debugger/signaldata/TcIndx.cpp similarity index 100% rename from ndb/src/common/debugger/signaldata/TcIndx.cpp rename to storage/ndb/src/common/debugger/signaldata/TcIndx.cpp diff --git a/ndb/src/common/debugger/signaldata/TcKeyConf.cpp b/storage/ndb/src/common/debugger/signaldata/TcKeyConf.cpp similarity index 100% rename from ndb/src/common/debugger/signaldata/TcKeyConf.cpp rename to storage/ndb/src/common/debugger/signaldata/TcKeyConf.cpp diff --git a/ndb/src/common/debugger/signaldata/TcKeyRef.cpp b/storage/ndb/src/common/debugger/signaldata/TcKeyRef.cpp similarity index 100% rename from ndb/src/common/debugger/signaldata/TcKeyRef.cpp rename to storage/ndb/src/common/debugger/signaldata/TcKeyRef.cpp diff --git a/ndb/src/common/debugger/signaldata/TcKeyReq.cpp b/storage/ndb/src/common/debugger/signaldata/TcKeyReq.cpp similarity index 100% rename from ndb/src/common/debugger/signaldata/TcKeyReq.cpp rename to storage/ndb/src/common/debugger/signaldata/TcKeyReq.cpp diff --git a/ndb/src/common/debugger/signaldata/TcRollbackRep.cpp b/storage/ndb/src/common/debugger/signaldata/TcRollbackRep.cpp similarity index 100% rename from ndb/src/common/debugger/signaldata/TcRollbackRep.cpp rename to storage/ndb/src/common/debugger/signaldata/TcRollbackRep.cpp diff --git a/ndb/src/common/debugger/signaldata/TrigAttrInfo.cpp b/storage/ndb/src/common/debugger/signaldata/TrigAttrInfo.cpp similarity index 100% rename from ndb/src/common/debugger/signaldata/TrigAttrInfo.cpp rename to storage/ndb/src/common/debugger/signaldata/TrigAttrInfo.cpp diff --git a/ndb/src/common/debugger/signaldata/TupCommit.cpp b/storage/ndb/src/common/debugger/signaldata/TupCommit.cpp similarity index 100% rename from ndb/src/common/debugger/signaldata/TupCommit.cpp rename to storage/ndb/src/common/debugger/signaldata/TupCommit.cpp diff --git a/ndb/src/common/debugger/signaldata/TupKey.cpp b/storage/ndb/src/common/debugger/signaldata/TupKey.cpp similarity index 100% rename from ndb/src/common/debugger/signaldata/TupKey.cpp rename to storage/ndb/src/common/debugger/signaldata/TupKey.cpp diff --git a/ndb/src/common/debugger/signaldata/TuxMaint.cpp b/storage/ndb/src/common/debugger/signaldata/TuxMaint.cpp similarity index 100% rename from ndb/src/common/debugger/signaldata/TuxMaint.cpp rename to storage/ndb/src/common/debugger/signaldata/TuxMaint.cpp diff --git a/ndb/src/common/debugger/signaldata/UtilDelete.cpp b/storage/ndb/src/common/debugger/signaldata/UtilDelete.cpp similarity index 100% rename from ndb/src/common/debugger/signaldata/UtilDelete.cpp rename to storage/ndb/src/common/debugger/signaldata/UtilDelete.cpp diff --git a/ndb/src/common/debugger/signaldata/UtilExecute.cpp b/storage/ndb/src/common/debugger/signaldata/UtilExecute.cpp similarity index 100% rename from ndb/src/common/debugger/signaldata/UtilExecute.cpp rename to storage/ndb/src/common/debugger/signaldata/UtilExecute.cpp diff --git a/ndb/src/common/debugger/signaldata/UtilLock.cpp b/storage/ndb/src/common/debugger/signaldata/UtilLock.cpp similarity index 100% rename from ndb/src/common/debugger/signaldata/UtilLock.cpp rename to storage/ndb/src/common/debugger/signaldata/UtilLock.cpp diff --git a/ndb/src/common/debugger/signaldata/UtilPrepare.cpp b/storage/ndb/src/common/debugger/signaldata/UtilPrepare.cpp similarity index 100% rename from ndb/src/common/debugger/signaldata/UtilPrepare.cpp rename to storage/ndb/src/common/debugger/signaldata/UtilPrepare.cpp diff --git a/ndb/src/common/debugger/signaldata/UtilSequence.cpp b/storage/ndb/src/common/debugger/signaldata/UtilSequence.cpp similarity index 100% rename from ndb/src/common/debugger/signaldata/UtilSequence.cpp rename to storage/ndb/src/common/debugger/signaldata/UtilSequence.cpp diff --git a/ndb/src/common/debugger/signaldata/print.awk b/storage/ndb/src/common/debugger/signaldata/print.awk similarity index 100% rename from ndb/src/common/debugger/signaldata/print.awk rename to storage/ndb/src/common/debugger/signaldata/print.awk diff --git a/ndb/src/common/logger/ConsoleLogHandler.cpp b/storage/ndb/src/common/logger/ConsoleLogHandler.cpp similarity index 100% rename from ndb/src/common/logger/ConsoleLogHandler.cpp rename to storage/ndb/src/common/logger/ConsoleLogHandler.cpp diff --git a/ndb/src/common/logger/FileLogHandler.cpp b/storage/ndb/src/common/logger/FileLogHandler.cpp similarity index 100% rename from ndb/src/common/logger/FileLogHandler.cpp rename to storage/ndb/src/common/logger/FileLogHandler.cpp diff --git a/ndb/src/common/logger/LogHandler.cpp b/storage/ndb/src/common/logger/LogHandler.cpp similarity index 100% rename from ndb/src/common/logger/LogHandler.cpp rename to storage/ndb/src/common/logger/LogHandler.cpp diff --git a/ndb/src/common/logger/LogHandlerList.cpp b/storage/ndb/src/common/logger/LogHandlerList.cpp similarity index 100% rename from ndb/src/common/logger/LogHandlerList.cpp rename to storage/ndb/src/common/logger/LogHandlerList.cpp diff --git a/ndb/src/common/logger/LogHandlerList.hpp b/storage/ndb/src/common/logger/LogHandlerList.hpp similarity index 100% rename from ndb/src/common/logger/LogHandlerList.hpp rename to storage/ndb/src/common/logger/LogHandlerList.hpp diff --git a/ndb/src/common/logger/Logger.cpp b/storage/ndb/src/common/logger/Logger.cpp similarity index 100% rename from ndb/src/common/logger/Logger.cpp rename to storage/ndb/src/common/logger/Logger.cpp diff --git a/storage/ndb/src/common/logger/Makefile.am b/storage/ndb/src/common/logger/Makefile.am new file mode 100644 index 00000000000..8a26d4258f1 --- /dev/null +++ b/storage/ndb/src/common/logger/Makefile.am @@ -0,0 +1,25 @@ + +noinst_LTLIBRARIES = liblogger.la + +SOURCE_WIN = Logger.cpp LogHandlerList.cpp LogHandler.cpp \ + ConsoleLogHandler.cpp FileLogHandler.cpp +liblogger_la_SOURCES = $(SOURCE_WIN) SysLogHandler.cpp + +include $(top_srcdir)/storage/ndb/config/common.mk.am +include $(top_srcdir)/storage/ndb/config/type_ndbapi.mk.am + +# Don't update the files from bitkeeper +%::SCCS/s.% +windoze-dsp: liblogger.dsp + +liblogger.dsp: Makefile \ + $(top_srcdir)/storage/ndb/config/win-lib.am \ + $(top_srcdir)/storage/ndb/config/win-name \ + $(top_srcdir)/storage/ndb/config/win-includes \ + $(top_srcdir)/storage/ndb/config/win-sources \ + $(top_srcdir)/storage/ndb/config/win-libraries + cat $(top_srcdir)/storage/ndb/config/win-lib.am > $@ + @$(top_srcdir)/storage/ndb/config/win-name $@ $(noinst_LTLIBRARIES) + @$(top_srcdir)/storage/ndb/config/win-includes $@ $(INCLUDES) + @$(top_srcdir)/storage/ndb/config/win-sources $@ $(SOURCE_WIN) + @$(top_srcdir)/storage/ndb/config/win-libraries $@ LIB $(LDADD) diff --git a/ndb/src/common/logger/SysLogHandler.cpp b/storage/ndb/src/common/logger/SysLogHandler.cpp similarity index 100% rename from ndb/src/common/logger/SysLogHandler.cpp rename to storage/ndb/src/common/logger/SysLogHandler.cpp diff --git a/ndb/src/common/logger/listtest/LogHandlerListUnitTest.cpp b/storage/ndb/src/common/logger/listtest/LogHandlerListUnitTest.cpp similarity index 100% rename from ndb/src/common/logger/listtest/LogHandlerListUnitTest.cpp rename to storage/ndb/src/common/logger/listtest/LogHandlerListUnitTest.cpp diff --git a/ndb/src/common/logger/listtest/LogHandlerListUnitTest.hpp b/storage/ndb/src/common/logger/listtest/LogHandlerListUnitTest.hpp similarity index 100% rename from ndb/src/common/logger/listtest/LogHandlerListUnitTest.hpp rename to storage/ndb/src/common/logger/listtest/LogHandlerListUnitTest.hpp diff --git a/ndb/src/common/logger/listtest/Makefile b/storage/ndb/src/common/logger/listtest/Makefile similarity index 100% rename from ndb/src/common/logger/listtest/Makefile rename to storage/ndb/src/common/logger/listtest/Makefile diff --git a/ndb/src/common/logger/loggertest/LoggerUnitTest.cpp b/storage/ndb/src/common/logger/loggertest/LoggerUnitTest.cpp similarity index 100% rename from ndb/src/common/logger/loggertest/LoggerUnitTest.cpp rename to storage/ndb/src/common/logger/loggertest/LoggerUnitTest.cpp diff --git a/ndb/src/common/logger/loggertest/LoggerUnitTest.hpp b/storage/ndb/src/common/logger/loggertest/LoggerUnitTest.hpp similarity index 100% rename from ndb/src/common/logger/loggertest/LoggerUnitTest.hpp rename to storage/ndb/src/common/logger/loggertest/LoggerUnitTest.hpp diff --git a/ndb/src/common/logger/loggertest/Makefile b/storage/ndb/src/common/logger/loggertest/Makefile similarity index 100% rename from ndb/src/common/logger/loggertest/Makefile rename to storage/ndb/src/common/logger/loggertest/Makefile diff --git a/ndb/src/common/mgmcommon/ConfigRetriever.cpp b/storage/ndb/src/common/mgmcommon/ConfigRetriever.cpp similarity index 100% rename from ndb/src/common/mgmcommon/ConfigRetriever.cpp rename to storage/ndb/src/common/mgmcommon/ConfigRetriever.cpp diff --git a/ndb/src/common/mgmcommon/IPCConfig.cpp b/storage/ndb/src/common/mgmcommon/IPCConfig.cpp similarity index 100% rename from ndb/src/common/mgmcommon/IPCConfig.cpp rename to storage/ndb/src/common/mgmcommon/IPCConfig.cpp diff --git a/storage/ndb/src/common/mgmcommon/Makefile.am b/storage/ndb/src/common/mgmcommon/Makefile.am new file mode 100644 index 00000000000..0540ef012b8 --- /dev/null +++ b/storage/ndb/src/common/mgmcommon/Makefile.am @@ -0,0 +1,28 @@ +noinst_LTLIBRARIES = libmgmsrvcommon.la + +libmgmsrvcommon_la_SOURCES = \ + ConfigRetriever.cpp \ + IPCConfig.cpp + +INCLUDES_LOC = -I$(top_srcdir)/storage/ndb/src/mgmapi -I$(top_srcdir)/storage/ndb/src/mgmsrv + +include $(top_srcdir)/storage/ndb/config/common.mk.am +include $(top_srcdir)/storage/ndb/config/type_ndbapi.mk.am +include $(top_srcdir)/storage/ndb/config/type_mgmapiclient.mk.am + +# Don't update the files from bitkeeper +%::SCCS/s.% + +windoze-dsp: libmgmsrvcommon.dsp + +libmgmsrvcommon.dsp: Makefile \ + $(top_srcdir)/storage/ndb/config/win-lib.am \ + $(top_srcdir)/storage/ndb/config/win-name \ + $(top_srcdir)/storage/ndb/config/win-includes \ + $(top_srcdir)/storage/ndb/config/win-sources \ + $(top_srcdir)/storage/ndb/config/win-libraries + cat $(top_srcdir)/storage/ndb/config/win-lib.am > $@ + @$(top_srcdir)/storage/ndb/config/win-name $@ $(noinst_LTLIBRARIES) + @$(top_srcdir)/storage/ndb/config/win-includes $@ $(INCLUDES) + @$(top_srcdir)/storage/ndb/config/win-sources $@ $(libmgmsrvcommon_la_SOURCES) + @$(top_srcdir)/storage/ndb/config/win-libraries $@ LIB $(LDADD) diff --git a/ndb/src/common/mgmcommon/printConfig/Makefile b/storage/ndb/src/common/mgmcommon/printConfig/Makefile similarity index 100% rename from ndb/src/common/mgmcommon/printConfig/Makefile rename to storage/ndb/src/common/mgmcommon/printConfig/Makefile diff --git a/ndb/src/common/mgmcommon/printConfig/printConfig.cpp b/storage/ndb/src/common/mgmcommon/printConfig/printConfig.cpp similarity index 100% rename from ndb/src/common/mgmcommon/printConfig/printConfig.cpp rename to storage/ndb/src/common/mgmcommon/printConfig/printConfig.cpp diff --git a/ndb/src/common/portlib/Makefile.am b/storage/ndb/src/common/portlib/Makefile.am similarity index 51% rename from ndb/src/common/portlib/Makefile.am rename to storage/ndb/src/common/portlib/Makefile.am index 99138a7414e..cdefa46af50 100644 --- a/ndb/src/common/portlib/Makefile.am +++ b/storage/ndb/src/common/portlib/Makefile.am @@ -8,8 +8,8 @@ libportlib_la_SOURCES = \ NdbDaemon.c NdbMem.c \ NdbConfig.c -include $(top_srcdir)/ndb/config/common.mk.am -include $(top_srcdir)/ndb/config/type_util.mk.am +include $(top_srcdir)/storage/ndb/config/common.mk.am +include $(top_srcdir)/storage/ndb/config/type_util.mk.am EXTRA_PROGRAMS = memtest PortLibTest munmaptest @@ -31,13 +31,13 @@ WIN_src = win32/NdbCondition.c \ windoze-dsp: libportlib.dsp libportlib.dsp: Makefile \ - $(top_srcdir)/ndb/config/win-lib.am \ - $(top_srcdir)/ndb/config/win-name \ - $(top_srcdir)/ndb/config/win-includes \ - $(top_srcdir)/ndb/config/win-sources \ - $(top_srcdir)/ndb/config/win-libraries - cat $(top_srcdir)/ndb/config/win-lib.am > $@ - @$(top_srcdir)/ndb/config/win-name $@ $(noinst_LTLIBRARIES) - @$(top_srcdir)/ndb/config/win-includes $@ $(INCLUDES) - @$(top_srcdir)/ndb/config/win-sources $@ $(WIN_src) - @$(top_srcdir)/ndb/config/win-libraries $@ LIB $(LDADD) + $(top_srcdir)/storage/ndb/config/win-lib.am \ + $(top_srcdir)/storage/ndb/config/win-name \ + $(top_srcdir)/storage/ndb/config/win-includes \ + $(top_srcdir)/storage/ndb/config/win-sources \ + $(top_srcdir)/storage/ndb/config/win-libraries + cat $(top_srcdir)/storage/ndb/config/win-lib.am > $@ + @$(top_srcdir)/storage/ndb/config/win-name $@ $(noinst_LTLIBRARIES) + @$(top_srcdir)/storage/ndb/config/win-includes $@ $(INCLUDES) + @$(top_srcdir)/storage/ndb/config/win-sources $@ $(WIN_src) + @$(top_srcdir)/storage/ndb/config/win-libraries $@ LIB $(LDADD) diff --git a/ndb/src/common/portlib/NdbCondition.c b/storage/ndb/src/common/portlib/NdbCondition.c similarity index 100% rename from ndb/src/common/portlib/NdbCondition.c rename to storage/ndb/src/common/portlib/NdbCondition.c diff --git a/ndb/src/common/portlib/NdbConfig.c b/storage/ndb/src/common/portlib/NdbConfig.c similarity index 100% rename from ndb/src/common/portlib/NdbConfig.c rename to storage/ndb/src/common/portlib/NdbConfig.c diff --git a/ndb/src/common/portlib/NdbDaemon.c b/storage/ndb/src/common/portlib/NdbDaemon.c similarity index 100% rename from ndb/src/common/portlib/NdbDaemon.c rename to storage/ndb/src/common/portlib/NdbDaemon.c diff --git a/ndb/src/common/portlib/NdbEnv.c b/storage/ndb/src/common/portlib/NdbEnv.c similarity index 100% rename from ndb/src/common/portlib/NdbEnv.c rename to storage/ndb/src/common/portlib/NdbEnv.c diff --git a/ndb/src/common/portlib/NdbHost.c b/storage/ndb/src/common/portlib/NdbHost.c similarity index 100% rename from ndb/src/common/portlib/NdbHost.c rename to storage/ndb/src/common/portlib/NdbHost.c diff --git a/ndb/src/common/portlib/NdbMem.c b/storage/ndb/src/common/portlib/NdbMem.c similarity index 100% rename from ndb/src/common/portlib/NdbMem.c rename to storage/ndb/src/common/portlib/NdbMem.c diff --git a/ndb/src/common/portlib/NdbMutex.c b/storage/ndb/src/common/portlib/NdbMutex.c similarity index 100% rename from ndb/src/common/portlib/NdbMutex.c rename to storage/ndb/src/common/portlib/NdbMutex.c diff --git a/ndb/src/common/portlib/NdbPortLibTest.cpp b/storage/ndb/src/common/portlib/NdbPortLibTest.cpp similarity index 100% rename from ndb/src/common/portlib/NdbPortLibTest.cpp rename to storage/ndb/src/common/portlib/NdbPortLibTest.cpp diff --git a/ndb/src/common/portlib/NdbSleep.c b/storage/ndb/src/common/portlib/NdbSleep.c similarity index 100% rename from ndb/src/common/portlib/NdbSleep.c rename to storage/ndb/src/common/portlib/NdbSleep.c diff --git a/ndb/src/common/portlib/NdbTCP.cpp b/storage/ndb/src/common/portlib/NdbTCP.cpp similarity index 100% rename from ndb/src/common/portlib/NdbTCP.cpp rename to storage/ndb/src/common/portlib/NdbTCP.cpp diff --git a/ndb/src/common/portlib/NdbThread.c b/storage/ndb/src/common/portlib/NdbThread.c similarity index 100% rename from ndb/src/common/portlib/NdbThread.c rename to storage/ndb/src/common/portlib/NdbThread.c diff --git a/ndb/src/common/portlib/NdbTick.c b/storage/ndb/src/common/portlib/NdbTick.c similarity index 100% rename from ndb/src/common/portlib/NdbTick.c rename to storage/ndb/src/common/portlib/NdbTick.c diff --git a/ndb/src/common/portlib/gcc.cpp b/storage/ndb/src/common/portlib/gcc.cpp similarity index 100% rename from ndb/src/common/portlib/gcc.cpp rename to storage/ndb/src/common/portlib/gcc.cpp diff --git a/ndb/src/common/portlib/memtest.c b/storage/ndb/src/common/portlib/memtest.c similarity index 100% rename from ndb/src/common/portlib/memtest.c rename to storage/ndb/src/common/portlib/memtest.c diff --git a/ndb/src/common/portlib/mmslist.cpp b/storage/ndb/src/common/portlib/mmslist.cpp similarity index 100% rename from ndb/src/common/portlib/mmslist.cpp rename to storage/ndb/src/common/portlib/mmslist.cpp diff --git a/ndb/src/common/portlib/mmstest.cpp b/storage/ndb/src/common/portlib/mmstest.cpp similarity index 100% rename from ndb/src/common/portlib/mmstest.cpp rename to storage/ndb/src/common/portlib/mmstest.cpp diff --git a/ndb/src/common/portlib/munmaptest.cpp b/storage/ndb/src/common/portlib/munmaptest.cpp similarity index 100% rename from ndb/src/common/portlib/munmaptest.cpp rename to storage/ndb/src/common/portlib/munmaptest.cpp diff --git a/ndb/src/common/portlib/old_dirs/memtest/Makefile b/storage/ndb/src/common/portlib/old_dirs/memtest/Makefile similarity index 100% rename from ndb/src/common/portlib/old_dirs/memtest/Makefile rename to storage/ndb/src/common/portlib/old_dirs/memtest/Makefile diff --git a/ndb/src/common/portlib/old_dirs/memtest/munmaptest/Makefile b/storage/ndb/src/common/portlib/old_dirs/memtest/munmaptest/Makefile similarity index 100% rename from ndb/src/common/portlib/old_dirs/memtest/munmaptest/Makefile rename to storage/ndb/src/common/portlib/old_dirs/memtest/munmaptest/Makefile diff --git a/ndb/src/common/portlib/old_dirs/ose/Makefile b/storage/ndb/src/common/portlib/old_dirs/ose/Makefile similarity index 100% rename from ndb/src/common/portlib/old_dirs/ose/Makefile rename to storage/ndb/src/common/portlib/old_dirs/ose/Makefile diff --git a/ndb/src/common/portlib/old_dirs/ose/NdbCondition.c b/storage/ndb/src/common/portlib/old_dirs/ose/NdbCondition.c similarity index 100% rename from ndb/src/common/portlib/old_dirs/ose/NdbCondition.c rename to storage/ndb/src/common/portlib/old_dirs/ose/NdbCondition.c diff --git a/ndb/src/common/portlib/old_dirs/ose/NdbConditionOSE.h b/storage/ndb/src/common/portlib/old_dirs/ose/NdbConditionOSE.h similarity index 100% rename from ndb/src/common/portlib/old_dirs/ose/NdbConditionOSE.h rename to storage/ndb/src/common/portlib/old_dirs/ose/NdbConditionOSE.h diff --git a/ndb/src/common/portlib/old_dirs/ose/NdbEnv.c b/storage/ndb/src/common/portlib/old_dirs/ose/NdbEnv.c similarity index 100% rename from ndb/src/common/portlib/old_dirs/ose/NdbEnv.c rename to storage/ndb/src/common/portlib/old_dirs/ose/NdbEnv.c diff --git a/ndb/src/common/portlib/old_dirs/ose/NdbHost.c b/storage/ndb/src/common/portlib/old_dirs/ose/NdbHost.c similarity index 100% rename from ndb/src/common/portlib/old_dirs/ose/NdbHost.c rename to storage/ndb/src/common/portlib/old_dirs/ose/NdbHost.c diff --git a/ndb/src/common/portlib/old_dirs/ose/NdbMem.c b/storage/ndb/src/common/portlib/old_dirs/ose/NdbMem.c similarity index 100% rename from ndb/src/common/portlib/old_dirs/ose/NdbMem.c rename to storage/ndb/src/common/portlib/old_dirs/ose/NdbMem.c diff --git a/ndb/src/common/portlib/old_dirs/ose/NdbMem_SoftOse.cpp b/storage/ndb/src/common/portlib/old_dirs/ose/NdbMem_SoftOse.cpp similarity index 100% rename from ndb/src/common/portlib/old_dirs/ose/NdbMem_SoftOse.cpp rename to storage/ndb/src/common/portlib/old_dirs/ose/NdbMem_SoftOse.cpp diff --git a/ndb/src/common/portlib/old_dirs/ose/NdbMutex.c b/storage/ndb/src/common/portlib/old_dirs/ose/NdbMutex.c similarity index 100% rename from ndb/src/common/portlib/old_dirs/ose/NdbMutex.c rename to storage/ndb/src/common/portlib/old_dirs/ose/NdbMutex.c diff --git a/ndb/src/common/portlib/old_dirs/ose/NdbOut.cpp b/storage/ndb/src/common/portlib/old_dirs/ose/NdbOut.cpp similarity index 100% rename from ndb/src/common/portlib/old_dirs/ose/NdbOut.cpp rename to storage/ndb/src/common/portlib/old_dirs/ose/NdbOut.cpp diff --git a/ndb/src/common/portlib/old_dirs/ose/NdbSleep.c b/storage/ndb/src/common/portlib/old_dirs/ose/NdbSleep.c similarity index 100% rename from ndb/src/common/portlib/old_dirs/ose/NdbSleep.c rename to storage/ndb/src/common/portlib/old_dirs/ose/NdbSleep.c diff --git a/ndb/src/common/portlib/old_dirs/ose/NdbTCP.c b/storage/ndb/src/common/portlib/old_dirs/ose/NdbTCP.c similarity index 100% rename from ndb/src/common/portlib/old_dirs/ose/NdbTCP.c rename to storage/ndb/src/common/portlib/old_dirs/ose/NdbTCP.c diff --git a/ndb/src/common/portlib/old_dirs/ose/NdbThread.c b/storage/ndb/src/common/portlib/old_dirs/ose/NdbThread.c similarity index 100% rename from ndb/src/common/portlib/old_dirs/ose/NdbThread.c rename to storage/ndb/src/common/portlib/old_dirs/ose/NdbThread.c diff --git a/ndb/src/common/portlib/old_dirs/ose/NdbTick.c b/storage/ndb/src/common/portlib/old_dirs/ose/NdbTick.c similarity index 100% rename from ndb/src/common/portlib/old_dirs/ose/NdbTick.c rename to storage/ndb/src/common/portlib/old_dirs/ose/NdbTick.c diff --git a/ndb/src/common/portlib/old_dirs/test/Makefile b/storage/ndb/src/common/portlib/old_dirs/test/Makefile similarity index 100% rename from ndb/src/common/portlib/old_dirs/test/Makefile rename to storage/ndb/src/common/portlib/old_dirs/test/Makefile diff --git a/ndb/src/common/portlib/old_dirs/win32/Makefile b/storage/ndb/src/common/portlib/old_dirs/win32/Makefile similarity index 100% rename from ndb/src/common/portlib/old_dirs/win32/Makefile rename to storage/ndb/src/common/portlib/old_dirs/win32/Makefile diff --git a/ndb/src/common/portlib/old_dirs/win32/NdbCondition.c b/storage/ndb/src/common/portlib/old_dirs/win32/NdbCondition.c similarity index 100% rename from ndb/src/common/portlib/old_dirs/win32/NdbCondition.c rename to storage/ndb/src/common/portlib/old_dirs/win32/NdbCondition.c diff --git a/ndb/src/common/portlib/old_dirs/win32/NdbDaemon.c b/storage/ndb/src/common/portlib/old_dirs/win32/NdbDaemon.c similarity index 100% rename from ndb/src/common/portlib/old_dirs/win32/NdbDaemon.c rename to storage/ndb/src/common/portlib/old_dirs/win32/NdbDaemon.c diff --git a/ndb/src/common/portlib/old_dirs/win32/NdbEnv.c b/storage/ndb/src/common/portlib/old_dirs/win32/NdbEnv.c similarity index 100% rename from ndb/src/common/portlib/old_dirs/win32/NdbEnv.c rename to storage/ndb/src/common/portlib/old_dirs/win32/NdbEnv.c diff --git a/ndb/src/common/portlib/old_dirs/win32/NdbHost.c b/storage/ndb/src/common/portlib/old_dirs/win32/NdbHost.c similarity index 100% rename from ndb/src/common/portlib/old_dirs/win32/NdbHost.c rename to storage/ndb/src/common/portlib/old_dirs/win32/NdbHost.c diff --git a/ndb/src/common/portlib/old_dirs/win32/NdbMem.c b/storage/ndb/src/common/portlib/old_dirs/win32/NdbMem.c similarity index 100% rename from ndb/src/common/portlib/old_dirs/win32/NdbMem.c rename to storage/ndb/src/common/portlib/old_dirs/win32/NdbMem.c diff --git a/ndb/src/common/portlib/old_dirs/win32/NdbMutex.c b/storage/ndb/src/common/portlib/old_dirs/win32/NdbMutex.c similarity index 100% rename from ndb/src/common/portlib/old_dirs/win32/NdbMutex.c rename to storage/ndb/src/common/portlib/old_dirs/win32/NdbMutex.c diff --git a/ndb/src/common/portlib/old_dirs/win32/NdbSleep.c b/storage/ndb/src/common/portlib/old_dirs/win32/NdbSleep.c similarity index 100% rename from ndb/src/common/portlib/old_dirs/win32/NdbSleep.c rename to storage/ndb/src/common/portlib/old_dirs/win32/NdbSleep.c diff --git a/ndb/src/common/portlib/old_dirs/win32/NdbTCP.c b/storage/ndb/src/common/portlib/old_dirs/win32/NdbTCP.c similarity index 100% rename from ndb/src/common/portlib/old_dirs/win32/NdbTCP.c rename to storage/ndb/src/common/portlib/old_dirs/win32/NdbTCP.c diff --git a/ndb/src/common/portlib/old_dirs/win32/NdbThread.c b/storage/ndb/src/common/portlib/old_dirs/win32/NdbThread.c similarity index 100% rename from ndb/src/common/portlib/old_dirs/win32/NdbThread.c rename to storage/ndb/src/common/portlib/old_dirs/win32/NdbThread.c diff --git a/ndb/src/common/portlib/old_dirs/win32/NdbTick.c b/storage/ndb/src/common/portlib/old_dirs/win32/NdbTick.c similarity index 100% rename from ndb/src/common/portlib/old_dirs/win32/NdbTick.c rename to storage/ndb/src/common/portlib/old_dirs/win32/NdbTick.c diff --git a/ndb/src/common/portlib/win32/NdbCondition.c b/storage/ndb/src/common/portlib/win32/NdbCondition.c similarity index 100% rename from ndb/src/common/portlib/win32/NdbCondition.c rename to storage/ndb/src/common/portlib/win32/NdbCondition.c diff --git a/ndb/src/common/portlib/win32/NdbDaemon.c b/storage/ndb/src/common/portlib/win32/NdbDaemon.c similarity index 100% rename from ndb/src/common/portlib/win32/NdbDaemon.c rename to storage/ndb/src/common/portlib/win32/NdbDaemon.c diff --git a/ndb/src/common/portlib/win32/NdbEnv.c b/storage/ndb/src/common/portlib/win32/NdbEnv.c similarity index 100% rename from ndb/src/common/portlib/win32/NdbEnv.c rename to storage/ndb/src/common/portlib/win32/NdbEnv.c diff --git a/ndb/src/common/portlib/win32/NdbHost.c b/storage/ndb/src/common/portlib/win32/NdbHost.c similarity index 100% rename from ndb/src/common/portlib/win32/NdbHost.c rename to storage/ndb/src/common/portlib/win32/NdbHost.c diff --git a/ndb/src/common/portlib/win32/NdbMem.c b/storage/ndb/src/common/portlib/win32/NdbMem.c similarity index 100% rename from ndb/src/common/portlib/win32/NdbMem.c rename to storage/ndb/src/common/portlib/win32/NdbMem.c diff --git a/ndb/src/common/portlib/win32/NdbMutex.c b/storage/ndb/src/common/portlib/win32/NdbMutex.c similarity index 100% rename from ndb/src/common/portlib/win32/NdbMutex.c rename to storage/ndb/src/common/portlib/win32/NdbMutex.c diff --git a/ndb/src/common/portlib/win32/NdbSleep.c b/storage/ndb/src/common/portlib/win32/NdbSleep.c similarity index 100% rename from ndb/src/common/portlib/win32/NdbSleep.c rename to storage/ndb/src/common/portlib/win32/NdbSleep.c diff --git a/ndb/src/common/portlib/win32/NdbTCP.c b/storage/ndb/src/common/portlib/win32/NdbTCP.c similarity index 100% rename from ndb/src/common/portlib/win32/NdbTCP.c rename to storage/ndb/src/common/portlib/win32/NdbTCP.c diff --git a/ndb/src/common/portlib/win32/NdbThread.c b/storage/ndb/src/common/portlib/win32/NdbThread.c similarity index 100% rename from ndb/src/common/portlib/win32/NdbThread.c rename to storage/ndb/src/common/portlib/win32/NdbThread.c diff --git a/ndb/src/common/portlib/win32/NdbTick.c b/storage/ndb/src/common/portlib/win32/NdbTick.c similarity index 100% rename from ndb/src/common/portlib/win32/NdbTick.c rename to storage/ndb/src/common/portlib/win32/NdbTick.c diff --git a/storage/ndb/src/common/transporter/Makefile.am b/storage/ndb/src/common/transporter/Makefile.am new file mode 100644 index 00000000000..bf7b64af186 --- /dev/null +++ b/storage/ndb/src/common/transporter/Makefile.am @@ -0,0 +1,36 @@ + +noinst_LTLIBRARIES = libtransporter.la + +libtransporter_la_SOURCES = \ + Transporter.cpp \ + SendBuffer.cpp \ + TCP_Transporter.cpp \ + TransporterRegistry.cpp \ + Packer.cpp + +EXTRA_libtransporter_la_SOURCES = SHM_Transporter.cpp SHM_Transporter.unix.cpp SCI_Transporter.cpp + +libtransporter_la_LIBADD = @ndb_transporter_opt_objs@ +libtransporter_la_DEPENDENCIES = @ndb_transporter_opt_objs@ + +INCLUDES_LOC = -I$(top_srcdir)/storage/ndb/include/mgmapi -I$(top_srcdir)/storage/ndb/src/mgmapi -I$(top_srcdir)/storage/ndb/include/debugger -I$(top_srcdir)/storage/ndb/include/kernel -I$(top_srcdir)/storage/ndb/include/transporter @NDB_SCI_INCLUDES@ + +include $(top_srcdir)/storage/ndb/config/common.mk.am +include $(top_srcdir)/storage/ndb/config/type_util.mk.am + +# Don't update the files from bitkeeper +%::SCCS/s.% + +windoze-dsp: libtransporter.dsp + +libtransporter.dsp: Makefile \ + $(top_srcdir)/storage/ndb/config/win-lib.am \ + $(top_srcdir)/storage/ndb/config/win-name \ + $(top_srcdir)/storage/ndb/config/win-includes \ + $(top_srcdir)/storage/ndb/config/win-sources \ + $(top_srcdir)/storage/ndb/config/win-libraries + cat $(top_srcdir)/storage/ndb/config/win-lib.am > $@ + @$(top_srcdir)/storage/ndb/config/win-name $@ $(noinst_LTLIBRARIES) + @$(top_srcdir)/storage/ndb/config/win-includes $@ $(INCLUDES) + @$(top_srcdir)/storage/ndb/config/win-sources $@ $(libtransporter_la_SOURCES) + @$(top_srcdir)/storage/ndb/config/win-libraries $@ LIB $(LDADD) diff --git a/ndb/src/common/transporter/OSE_Receiver.cpp b/storage/ndb/src/common/transporter/OSE_Receiver.cpp similarity index 100% rename from ndb/src/common/transporter/OSE_Receiver.cpp rename to storage/ndb/src/common/transporter/OSE_Receiver.cpp diff --git a/ndb/src/common/transporter/OSE_Receiver.hpp b/storage/ndb/src/common/transporter/OSE_Receiver.hpp similarity index 100% rename from ndb/src/common/transporter/OSE_Receiver.hpp rename to storage/ndb/src/common/transporter/OSE_Receiver.hpp diff --git a/ndb/src/common/transporter/OSE_Signals.hpp b/storage/ndb/src/common/transporter/OSE_Signals.hpp similarity index 100% rename from ndb/src/common/transporter/OSE_Signals.hpp rename to storage/ndb/src/common/transporter/OSE_Signals.hpp diff --git a/ndb/src/common/transporter/OSE_Transporter.cpp b/storage/ndb/src/common/transporter/OSE_Transporter.cpp similarity index 100% rename from ndb/src/common/transporter/OSE_Transporter.cpp rename to storage/ndb/src/common/transporter/OSE_Transporter.cpp diff --git a/ndb/src/common/transporter/OSE_Transporter.hpp b/storage/ndb/src/common/transporter/OSE_Transporter.hpp similarity index 100% rename from ndb/src/common/transporter/OSE_Transporter.hpp rename to storage/ndb/src/common/transporter/OSE_Transporter.hpp diff --git a/ndb/src/common/transporter/Packer.cpp b/storage/ndb/src/common/transporter/Packer.cpp similarity index 100% rename from ndb/src/common/transporter/Packer.cpp rename to storage/ndb/src/common/transporter/Packer.cpp diff --git a/ndb/src/common/transporter/Packer.hpp b/storage/ndb/src/common/transporter/Packer.hpp similarity index 100% rename from ndb/src/common/transporter/Packer.hpp rename to storage/ndb/src/common/transporter/Packer.hpp diff --git a/ndb/src/common/transporter/SCI_Transporter.cpp b/storage/ndb/src/common/transporter/SCI_Transporter.cpp similarity index 100% rename from ndb/src/common/transporter/SCI_Transporter.cpp rename to storage/ndb/src/common/transporter/SCI_Transporter.cpp diff --git a/ndb/src/common/transporter/SCI_Transporter.hpp b/storage/ndb/src/common/transporter/SCI_Transporter.hpp similarity index 100% rename from ndb/src/common/transporter/SCI_Transporter.hpp rename to storage/ndb/src/common/transporter/SCI_Transporter.hpp diff --git a/ndb/src/common/transporter/SHM_Buffer.hpp b/storage/ndb/src/common/transporter/SHM_Buffer.hpp similarity index 100% rename from ndb/src/common/transporter/SHM_Buffer.hpp rename to storage/ndb/src/common/transporter/SHM_Buffer.hpp diff --git a/ndb/src/common/transporter/SHM_Transporter.cpp b/storage/ndb/src/common/transporter/SHM_Transporter.cpp similarity index 100% rename from ndb/src/common/transporter/SHM_Transporter.cpp rename to storage/ndb/src/common/transporter/SHM_Transporter.cpp diff --git a/ndb/src/common/transporter/SHM_Transporter.hpp b/storage/ndb/src/common/transporter/SHM_Transporter.hpp similarity index 100% rename from ndb/src/common/transporter/SHM_Transporter.hpp rename to storage/ndb/src/common/transporter/SHM_Transporter.hpp diff --git a/ndb/src/common/transporter/SHM_Transporter.unix.cpp b/storage/ndb/src/common/transporter/SHM_Transporter.unix.cpp similarity index 100% rename from ndb/src/common/transporter/SHM_Transporter.unix.cpp rename to storage/ndb/src/common/transporter/SHM_Transporter.unix.cpp diff --git a/ndb/src/common/transporter/SHM_Transporter.win32.cpp b/storage/ndb/src/common/transporter/SHM_Transporter.win32.cpp similarity index 100% rename from ndb/src/common/transporter/SHM_Transporter.win32.cpp rename to storage/ndb/src/common/transporter/SHM_Transporter.win32.cpp diff --git a/ndb/src/common/transporter/SendBuffer.cpp b/storage/ndb/src/common/transporter/SendBuffer.cpp similarity index 100% rename from ndb/src/common/transporter/SendBuffer.cpp rename to storage/ndb/src/common/transporter/SendBuffer.cpp diff --git a/ndb/src/common/transporter/SendBuffer.hpp b/storage/ndb/src/common/transporter/SendBuffer.hpp similarity index 100% rename from ndb/src/common/transporter/SendBuffer.hpp rename to storage/ndb/src/common/transporter/SendBuffer.hpp diff --git a/ndb/src/common/transporter/TCP_Transporter.cpp b/storage/ndb/src/common/transporter/TCP_Transporter.cpp similarity index 100% rename from ndb/src/common/transporter/TCP_Transporter.cpp rename to storage/ndb/src/common/transporter/TCP_Transporter.cpp diff --git a/ndb/src/common/transporter/TCP_Transporter.hpp b/storage/ndb/src/common/transporter/TCP_Transporter.hpp similarity index 100% rename from ndb/src/common/transporter/TCP_Transporter.hpp rename to storage/ndb/src/common/transporter/TCP_Transporter.hpp diff --git a/ndb/src/common/transporter/Transporter.cpp b/storage/ndb/src/common/transporter/Transporter.cpp similarity index 100% rename from ndb/src/common/transporter/Transporter.cpp rename to storage/ndb/src/common/transporter/Transporter.cpp diff --git a/ndb/src/common/transporter/Transporter.hpp b/storage/ndb/src/common/transporter/Transporter.hpp similarity index 100% rename from ndb/src/common/transporter/Transporter.hpp rename to storage/ndb/src/common/transporter/Transporter.hpp diff --git a/ndb/src/common/transporter/TransporterInternalDefinitions.hpp b/storage/ndb/src/common/transporter/TransporterInternalDefinitions.hpp similarity index 100% rename from ndb/src/common/transporter/TransporterInternalDefinitions.hpp rename to storage/ndb/src/common/transporter/TransporterInternalDefinitions.hpp diff --git a/ndb/src/common/transporter/TransporterRegistry.cpp b/storage/ndb/src/common/transporter/TransporterRegistry.cpp similarity index 100% rename from ndb/src/common/transporter/TransporterRegistry.cpp rename to storage/ndb/src/common/transporter/TransporterRegistry.cpp diff --git a/ndb/src/common/transporter/basictest/Makefile b/storage/ndb/src/common/transporter/basictest/Makefile similarity index 100% rename from ndb/src/common/transporter/basictest/Makefile rename to storage/ndb/src/common/transporter/basictest/Makefile diff --git a/ndb/src/common/transporter/basictest/basicTransporterTest.cpp b/storage/ndb/src/common/transporter/basictest/basicTransporterTest.cpp similarity index 100% rename from ndb/src/common/transporter/basictest/basicTransporterTest.cpp rename to storage/ndb/src/common/transporter/basictest/basicTransporterTest.cpp diff --git a/ndb/src/common/transporter/buddy.cpp b/storage/ndb/src/common/transporter/buddy.cpp similarity index 100% rename from ndb/src/common/transporter/buddy.cpp rename to storage/ndb/src/common/transporter/buddy.cpp diff --git a/ndb/src/common/transporter/buddy.hpp b/storage/ndb/src/common/transporter/buddy.hpp similarity index 100% rename from ndb/src/common/transporter/buddy.hpp rename to storage/ndb/src/common/transporter/buddy.hpp diff --git a/ndb/src/common/transporter/failoverSCI/Makefile b/storage/ndb/src/common/transporter/failoverSCI/Makefile similarity index 100% rename from ndb/src/common/transporter/failoverSCI/Makefile rename to storage/ndb/src/common/transporter/failoverSCI/Makefile diff --git a/ndb/src/common/transporter/failoverSCI/failoverSCI.cpp b/storage/ndb/src/common/transporter/failoverSCI/failoverSCI.cpp similarity index 100% rename from ndb/src/common/transporter/failoverSCI/failoverSCI.cpp rename to storage/ndb/src/common/transporter/failoverSCI/failoverSCI.cpp diff --git a/ndb/src/common/transporter/perftest/Makefile b/storage/ndb/src/common/transporter/perftest/Makefile similarity index 100% rename from ndb/src/common/transporter/perftest/Makefile rename to storage/ndb/src/common/transporter/perftest/Makefile diff --git a/ndb/src/common/transporter/perftest/perfTransporterTest.cpp b/storage/ndb/src/common/transporter/perftest/perfTransporterTest.cpp similarity index 100% rename from ndb/src/common/transporter/perftest/perfTransporterTest.cpp rename to storage/ndb/src/common/transporter/perftest/perfTransporterTest.cpp diff --git a/ndb/src/common/transporter/priotest/Makefile b/storage/ndb/src/common/transporter/priotest/Makefile similarity index 100% rename from ndb/src/common/transporter/priotest/Makefile rename to storage/ndb/src/common/transporter/priotest/Makefile diff --git a/ndb/src/common/transporter/priotest/prioOSE/Makefile b/storage/ndb/src/common/transporter/priotest/prioOSE/Makefile similarity index 100% rename from ndb/src/common/transporter/priotest/prioOSE/Makefile rename to storage/ndb/src/common/transporter/priotest/prioOSE/Makefile diff --git a/ndb/src/common/transporter/priotest/prioSCI/Makefile b/storage/ndb/src/common/transporter/priotest/prioSCI/Makefile similarity index 100% rename from ndb/src/common/transporter/priotest/prioSCI/Makefile rename to storage/ndb/src/common/transporter/priotest/prioSCI/Makefile diff --git a/ndb/src/common/transporter/priotest/prioSCI/prioSCI.cpp b/storage/ndb/src/common/transporter/priotest/prioSCI/prioSCI.cpp similarity index 100% rename from ndb/src/common/transporter/priotest/prioSCI/prioSCI.cpp rename to storage/ndb/src/common/transporter/priotest/prioSCI/prioSCI.cpp diff --git a/ndb/src/common/transporter/priotest/prioSHM/Makefile b/storage/ndb/src/common/transporter/priotest/prioSHM/Makefile similarity index 100% rename from ndb/src/common/transporter/priotest/prioSHM/Makefile rename to storage/ndb/src/common/transporter/priotest/prioSHM/Makefile diff --git a/ndb/src/common/transporter/priotest/prioSHM/prioSHM.cpp b/storage/ndb/src/common/transporter/priotest/prioSHM/prioSHM.cpp similarity index 100% rename from ndb/src/common/transporter/priotest/prioSHM/prioSHM.cpp rename to storage/ndb/src/common/transporter/priotest/prioSHM/prioSHM.cpp diff --git a/ndb/src/common/transporter/priotest/prioTCP/Makefile b/storage/ndb/src/common/transporter/priotest/prioTCP/Makefile similarity index 100% rename from ndb/src/common/transporter/priotest/prioTCP/Makefile rename to storage/ndb/src/common/transporter/priotest/prioTCP/Makefile diff --git a/ndb/src/common/transporter/priotest/prioTCP/prioTCP.cpp b/storage/ndb/src/common/transporter/priotest/prioTCP/prioTCP.cpp similarity index 100% rename from ndb/src/common/transporter/priotest/prioTCP/prioTCP.cpp rename to storage/ndb/src/common/transporter/priotest/prioTCP/prioTCP.cpp diff --git a/ndb/src/common/transporter/priotest/prioTransporterTest.cpp b/storage/ndb/src/common/transporter/priotest/prioTransporterTest.cpp similarity index 100% rename from ndb/src/common/transporter/priotest/prioTransporterTest.cpp rename to storage/ndb/src/common/transporter/priotest/prioTransporterTest.cpp diff --git a/ndb/src/common/transporter/priotest/prioTransporterTest.hpp b/storage/ndb/src/common/transporter/priotest/prioTransporterTest.hpp similarity index 100% rename from ndb/src/common/transporter/priotest/prioTransporterTest.hpp rename to storage/ndb/src/common/transporter/priotest/prioTransporterTest.hpp diff --git a/ndb/src/common/util/Base64.cpp b/storage/ndb/src/common/util/Base64.cpp similarity index 100% rename from ndb/src/common/util/Base64.cpp rename to storage/ndb/src/common/util/Base64.cpp diff --git a/ndb/src/common/util/BaseString.cpp b/storage/ndb/src/common/util/BaseString.cpp similarity index 100% rename from ndb/src/common/util/BaseString.cpp rename to storage/ndb/src/common/util/BaseString.cpp diff --git a/ndb/src/common/util/Bitmask.cpp b/storage/ndb/src/common/util/Bitmask.cpp similarity index 100% rename from ndb/src/common/util/Bitmask.cpp rename to storage/ndb/src/common/util/Bitmask.cpp diff --git a/ndb/src/common/util/ConfigValues.cpp b/storage/ndb/src/common/util/ConfigValues.cpp similarity index 100% rename from ndb/src/common/util/ConfigValues.cpp rename to storage/ndb/src/common/util/ConfigValues.cpp diff --git a/ndb/src/common/util/File.cpp b/storage/ndb/src/common/util/File.cpp similarity index 100% rename from ndb/src/common/util/File.cpp rename to storage/ndb/src/common/util/File.cpp diff --git a/ndb/src/common/util/InputStream.cpp b/storage/ndb/src/common/util/InputStream.cpp similarity index 100% rename from ndb/src/common/util/InputStream.cpp rename to storage/ndb/src/common/util/InputStream.cpp diff --git a/ndb/src/common/util/Makefile.am b/storage/ndb/src/common/util/Makefile.am similarity index 56% rename from ndb/src/common/util/Makefile.am rename to storage/ndb/src/common/util/Makefile.am index 2719d14ee92..7ba3ef941c5 100644 --- a/ndb/src/common/util/Makefile.am +++ b/storage/ndb/src/common/util/Makefile.am @@ -15,7 +15,7 @@ libgeneral_la_SOURCES = \ EXTRA_PROGRAMS = testBitmask testBitmask_SOURCES = testBitmask.cpp testBitmask_LDFLAGS = @ndb_bin_am_ldflags@ \ - $(top_builddir)/ndb/src/libndbclient.la \ + $(top_builddir)/storage/ndb/src/libndbclient.la \ $(top_builddir)/dbug/libdbug.a \ $(top_builddir)/mysys/libmysys.a \ $(top_builddir)/strings/libmystrings.a @@ -28,8 +28,8 @@ testBitmask.o: $(testBitmask_SOURCES) $(CXXCOMPILE) -c $(INCLUDES) -D__TEST_BITMASK__ $< -include $(top_srcdir)/ndb/config/common.mk.am -include $(top_srcdir)/ndb/config/type_util.mk.am +include $(top_srcdir)/storage/ndb/config/common.mk.am +include $(top_srcdir)/storage/ndb/config/type_util.mk.am # Don't update the files from bitkeeper %::SCCS/s.% @@ -37,13 +37,13 @@ include $(top_srcdir)/ndb/config/type_util.mk.am windoze-dsp: libgeneral.dsp libgeneral.dsp: Makefile \ - $(top_srcdir)/ndb/config/win-lib.am \ - $(top_srcdir)/ndb/config/win-name \ - $(top_srcdir)/ndb/config/win-includes \ - $(top_srcdir)/ndb/config/win-sources \ - $(top_srcdir)/ndb/config/win-libraries - cat $(top_srcdir)/ndb/config/win-lib.am > $@ - @$(top_srcdir)/ndb/config/win-name $@ $(noinst_LTLIBRARIES) - @$(top_srcdir)/ndb/config/win-includes $@ $(INCLUDES) - @$(top_srcdir)/ndb/config/win-sources $@ $(libgeneral_la_SOURCES) - @$(top_srcdir)/ndb/config/win-libraries $@ LIB $(LDADD) + $(top_srcdir)/storage/ndb/config/win-lib.am \ + $(top_srcdir)/storage/ndb/config/win-name \ + $(top_srcdir)/storage/ndb/config/win-includes \ + $(top_srcdir)/storage/ndb/config/win-sources \ + $(top_srcdir)/storage/ndb/config/win-libraries + cat $(top_srcdir)/storage/ndb/config/win-lib.am > $@ + @$(top_srcdir)/storage/ndb/config/win-name $@ $(noinst_LTLIBRARIES) + @$(top_srcdir)/storage/ndb/config/win-includes $@ $(INCLUDES) + @$(top_srcdir)/storage/ndb/config/win-sources $@ $(libgeneral_la_SOURCES) + @$(top_srcdir)/storage/ndb/config/win-libraries $@ LIB $(LDADD) diff --git a/ndb/src/common/util/NdbErrHnd.cpp b/storage/ndb/src/common/util/NdbErrHnd.cpp similarity index 100% rename from ndb/src/common/util/NdbErrHnd.cpp rename to storage/ndb/src/common/util/NdbErrHnd.cpp diff --git a/ndb/src/common/util/NdbOut.cpp b/storage/ndb/src/common/util/NdbOut.cpp similarity index 100% rename from ndb/src/common/util/NdbOut.cpp rename to storage/ndb/src/common/util/NdbOut.cpp diff --git a/ndb/src/common/util/NdbSqlUtil.cpp b/storage/ndb/src/common/util/NdbSqlUtil.cpp similarity index 100% rename from ndb/src/common/util/NdbSqlUtil.cpp rename to storage/ndb/src/common/util/NdbSqlUtil.cpp diff --git a/ndb/src/common/util/OutputStream.cpp b/storage/ndb/src/common/util/OutputStream.cpp similarity index 100% rename from ndb/src/common/util/OutputStream.cpp rename to storage/ndb/src/common/util/OutputStream.cpp diff --git a/ndb/src/common/util/Parser.cpp b/storage/ndb/src/common/util/Parser.cpp similarity index 100% rename from ndb/src/common/util/Parser.cpp rename to storage/ndb/src/common/util/Parser.cpp diff --git a/ndb/src/common/util/Properties.cpp b/storage/ndb/src/common/util/Properties.cpp similarity index 100% rename from ndb/src/common/util/Properties.cpp rename to storage/ndb/src/common/util/Properties.cpp diff --git a/ndb/src/common/util/SimpleProperties.cpp b/storage/ndb/src/common/util/SimpleProperties.cpp similarity index 100% rename from ndb/src/common/util/SimpleProperties.cpp rename to storage/ndb/src/common/util/SimpleProperties.cpp diff --git a/ndb/src/common/util/SocketAuthenticator.cpp b/storage/ndb/src/common/util/SocketAuthenticator.cpp similarity index 100% rename from ndb/src/common/util/SocketAuthenticator.cpp rename to storage/ndb/src/common/util/SocketAuthenticator.cpp diff --git a/ndb/src/common/util/SocketClient.cpp b/storage/ndb/src/common/util/SocketClient.cpp similarity index 100% rename from ndb/src/common/util/SocketClient.cpp rename to storage/ndb/src/common/util/SocketClient.cpp diff --git a/ndb/src/common/util/SocketServer.cpp b/storage/ndb/src/common/util/SocketServer.cpp similarity index 100% rename from ndb/src/common/util/SocketServer.cpp rename to storage/ndb/src/common/util/SocketServer.cpp diff --git a/ndb/src/common/util/basestring_vsnprintf.c b/storage/ndb/src/common/util/basestring_vsnprintf.c similarity index 100% rename from ndb/src/common/util/basestring_vsnprintf.c rename to storage/ndb/src/common/util/basestring_vsnprintf.c diff --git a/ndb/src/common/util/filetest/FileUnitTest.cpp b/storage/ndb/src/common/util/filetest/FileUnitTest.cpp similarity index 100% rename from ndb/src/common/util/filetest/FileUnitTest.cpp rename to storage/ndb/src/common/util/filetest/FileUnitTest.cpp diff --git a/ndb/src/common/util/filetest/FileUnitTest.hpp b/storage/ndb/src/common/util/filetest/FileUnitTest.hpp similarity index 100% rename from ndb/src/common/util/filetest/FileUnitTest.hpp rename to storage/ndb/src/common/util/filetest/FileUnitTest.hpp diff --git a/ndb/src/common/util/filetest/Makefile b/storage/ndb/src/common/util/filetest/Makefile similarity index 100% rename from ndb/src/common/util/filetest/Makefile rename to storage/ndb/src/common/util/filetest/Makefile diff --git a/ndb/src/common/util/getarg.cat3 b/storage/ndb/src/common/util/getarg.cat3 similarity index 100% rename from ndb/src/common/util/getarg.cat3 rename to storage/ndb/src/common/util/getarg.cat3 diff --git a/ndb/src/common/util/md5_hash.cpp b/storage/ndb/src/common/util/md5_hash.cpp similarity index 100% rename from ndb/src/common/util/md5_hash.cpp rename to storage/ndb/src/common/util/md5_hash.cpp diff --git a/ndb/src/common/util/ndb_init.c b/storage/ndb/src/common/util/ndb_init.c similarity index 100% rename from ndb/src/common/util/ndb_init.c rename to storage/ndb/src/common/util/ndb_init.c diff --git a/ndb/src/common/util/new.cpp b/storage/ndb/src/common/util/new.cpp similarity index 100% rename from ndb/src/common/util/new.cpp rename to storage/ndb/src/common/util/new.cpp diff --git a/ndb/src/common/util/random.c b/storage/ndb/src/common/util/random.c similarity index 100% rename from ndb/src/common/util/random.c rename to storage/ndb/src/common/util/random.c diff --git a/ndb/src/common/util/socket_io.cpp b/storage/ndb/src/common/util/socket_io.cpp similarity index 100% rename from ndb/src/common/util/socket_io.cpp rename to storage/ndb/src/common/util/socket_io.cpp diff --git a/ndb/src/common/util/strdup.c b/storage/ndb/src/common/util/strdup.c similarity index 100% rename from ndb/src/common/util/strdup.c rename to storage/ndb/src/common/util/strdup.c diff --git a/ndb/src/common/util/testConfigValues/Makefile b/storage/ndb/src/common/util/testConfigValues/Makefile similarity index 100% rename from ndb/src/common/util/testConfigValues/Makefile rename to storage/ndb/src/common/util/testConfigValues/Makefile diff --git a/ndb/src/common/util/testConfigValues/testConfigValues.cpp b/storage/ndb/src/common/util/testConfigValues/testConfigValues.cpp similarity index 100% rename from ndb/src/common/util/testConfigValues/testConfigValues.cpp rename to storage/ndb/src/common/util/testConfigValues/testConfigValues.cpp diff --git a/ndb/src/common/util/testProperties/Makefile b/storage/ndb/src/common/util/testProperties/Makefile similarity index 100% rename from ndb/src/common/util/testProperties/Makefile rename to storage/ndb/src/common/util/testProperties/Makefile diff --git a/ndb/src/common/util/testProperties/testProperties.cpp b/storage/ndb/src/common/util/testProperties/testProperties.cpp similarity index 100% rename from ndb/src/common/util/testProperties/testProperties.cpp rename to storage/ndb/src/common/util/testProperties/testProperties.cpp diff --git a/ndb/src/common/util/testSimpleProperties/Makefile b/storage/ndb/src/common/util/testSimpleProperties/Makefile similarity index 100% rename from ndb/src/common/util/testSimpleProperties/Makefile rename to storage/ndb/src/common/util/testSimpleProperties/Makefile diff --git a/ndb/src/common/util/testSimpleProperties/sp_test.cpp b/storage/ndb/src/common/util/testSimpleProperties/sp_test.cpp similarity index 100% rename from ndb/src/common/util/testSimpleProperties/sp_test.cpp rename to storage/ndb/src/common/util/testSimpleProperties/sp_test.cpp diff --git a/ndb/src/common/util/uucode.c b/storage/ndb/src/common/util/uucode.c similarity index 100% rename from ndb/src/common/util/uucode.c rename to storage/ndb/src/common/util/uucode.c diff --git a/ndb/src/common/util/version.c b/storage/ndb/src/common/util/version.c similarity index 100% rename from ndb/src/common/util/version.c rename to storage/ndb/src/common/util/version.c diff --git a/ndb/src/cw/Makefile.am b/storage/ndb/src/cw/Makefile.am similarity index 100% rename from ndb/src/cw/Makefile.am rename to storage/ndb/src/cw/Makefile.am diff --git a/ndb/src/cw/cpcc-win32/C++/CPC_GUI.cpp b/storage/ndb/src/cw/cpcc-win32/C++/CPC_GUI.cpp similarity index 100% rename from ndb/src/cw/cpcc-win32/C++/CPC_GUI.cpp rename to storage/ndb/src/cw/cpcc-win32/C++/CPC_GUI.cpp diff --git a/ndb/src/cw/cpcc-win32/C++/CPC_GUI.dsp b/storage/ndb/src/cw/cpcc-win32/C++/CPC_GUI.dsp similarity index 100% rename from ndb/src/cw/cpcc-win32/C++/CPC_GUI.dsp rename to storage/ndb/src/cw/cpcc-win32/C++/CPC_GUI.dsp diff --git a/ndb/src/cw/cpcc-win32/C++/CPC_GUI.dsw b/storage/ndb/src/cw/cpcc-win32/C++/CPC_GUI.dsw similarity index 100% rename from ndb/src/cw/cpcc-win32/C++/CPC_GUI.dsw rename to storage/ndb/src/cw/cpcc-win32/C++/CPC_GUI.dsw diff --git a/ndb/src/cw/cpcc-win32/C++/CPC_GUI.h b/storage/ndb/src/cw/cpcc-win32/C++/CPC_GUI.h similarity index 100% rename from ndb/src/cw/cpcc-win32/C++/CPC_GUI.h rename to storage/ndb/src/cw/cpcc-win32/C++/CPC_GUI.h diff --git a/ndb/src/cw/cpcc-win32/C++/CPC_GUI.ico b/storage/ndb/src/cw/cpcc-win32/C++/CPC_GUI.ico similarity index 100% rename from ndb/src/cw/cpcc-win32/C++/CPC_GUI.ico rename to storage/ndb/src/cw/cpcc-win32/C++/CPC_GUI.ico diff --git a/ndb/src/cw/cpcc-win32/C++/CPC_GUI.rc b/storage/ndb/src/cw/cpcc-win32/C++/CPC_GUI.rc similarity index 100% rename from ndb/src/cw/cpcc-win32/C++/CPC_GUI.rc rename to storage/ndb/src/cw/cpcc-win32/C++/CPC_GUI.rc diff --git a/ndb/src/cw/cpcc-win32/C++/CPC_GUI.sln b/storage/ndb/src/cw/cpcc-win32/C++/CPC_GUI.sln similarity index 100% rename from ndb/src/cw/cpcc-win32/C++/CPC_GUI.sln rename to storage/ndb/src/cw/cpcc-win32/C++/CPC_GUI.sln diff --git a/ndb/src/cw/cpcc-win32/C++/CPC_GUI.suo b/storage/ndb/src/cw/cpcc-win32/C++/CPC_GUI.suo similarity index 100% rename from ndb/src/cw/cpcc-win32/C++/CPC_GUI.suo rename to storage/ndb/src/cw/cpcc-win32/C++/CPC_GUI.suo diff --git a/ndb/src/cw/cpcc-win32/C++/CPC_GUI.vcproj b/storage/ndb/src/cw/cpcc-win32/C++/CPC_GUI.vcproj similarity index 100% rename from ndb/src/cw/cpcc-win32/C++/CPC_GUI.vcproj rename to storage/ndb/src/cw/cpcc-win32/C++/CPC_GUI.vcproj diff --git a/ndb/src/cw/cpcc-win32/C++/Closed.ICO b/storage/ndb/src/cw/cpcc-win32/C++/Closed.ICO similarity index 100% rename from ndb/src/cw/cpcc-win32/C++/Closed.ICO rename to storage/ndb/src/cw/cpcc-win32/C++/Closed.ICO diff --git a/ndb/src/cw/cpcc-win32/C++/NdbControls.cpp b/storage/ndb/src/cw/cpcc-win32/C++/NdbControls.cpp similarity index 100% rename from ndb/src/cw/cpcc-win32/C++/NdbControls.cpp rename to storage/ndb/src/cw/cpcc-win32/C++/NdbControls.cpp diff --git a/ndb/src/cw/cpcc-win32/C++/Open.ICO b/storage/ndb/src/cw/cpcc-win32/C++/Open.ICO similarity index 100% rename from ndb/src/cw/cpcc-win32/C++/Open.ICO rename to storage/ndb/src/cw/cpcc-win32/C++/Open.ICO diff --git a/ndb/src/cw/cpcc-win32/C++/StdAfx.cpp b/storage/ndb/src/cw/cpcc-win32/C++/StdAfx.cpp similarity index 100% rename from ndb/src/cw/cpcc-win32/C++/StdAfx.cpp rename to storage/ndb/src/cw/cpcc-win32/C++/StdAfx.cpp diff --git a/ndb/src/cw/cpcc-win32/C++/StdAfx.h b/storage/ndb/src/cw/cpcc-win32/C++/StdAfx.h similarity index 100% rename from ndb/src/cw/cpcc-win32/C++/StdAfx.h rename to storage/ndb/src/cw/cpcc-win32/C++/StdAfx.h diff --git a/ndb/src/cw/cpcc-win32/C++/TreeView.cpp b/storage/ndb/src/cw/cpcc-win32/C++/TreeView.cpp similarity index 100% rename from ndb/src/cw/cpcc-win32/C++/TreeView.cpp rename to storage/ndb/src/cw/cpcc-win32/C++/TreeView.cpp diff --git a/ndb/src/cw/cpcc-win32/C++/TreeView.h b/storage/ndb/src/cw/cpcc-win32/C++/TreeView.h similarity index 100% rename from ndb/src/cw/cpcc-win32/C++/TreeView.h rename to storage/ndb/src/cw/cpcc-win32/C++/TreeView.h diff --git a/ndb/src/cw/cpcc-win32/C++/bmp00001.bmp b/storage/ndb/src/cw/cpcc-win32/C++/bmp00001.bmp similarity index 100% rename from ndb/src/cw/cpcc-win32/C++/bmp00001.bmp rename to storage/ndb/src/cw/cpcc-win32/C++/bmp00001.bmp diff --git a/ndb/src/cw/cpcc-win32/C++/resource.h b/storage/ndb/src/cw/cpcc-win32/C++/resource.h similarity index 100% rename from ndb/src/cw/cpcc-win32/C++/resource.h rename to storage/ndb/src/cw/cpcc-win32/C++/resource.h diff --git a/ndb/src/cw/cpcc-win32/C++/small.ico b/storage/ndb/src/cw/cpcc-win32/C++/small.ico similarity index 100% rename from ndb/src/cw/cpcc-win32/C++/small.ico rename to storage/ndb/src/cw/cpcc-win32/C++/small.ico diff --git a/ndb/src/cw/cpcc-win32/C++/toolbar.bmp b/storage/ndb/src/cw/cpcc-win32/C++/toolbar.bmp similarity index 100% rename from ndb/src/cw/cpcc-win32/C++/toolbar.bmp rename to storage/ndb/src/cw/cpcc-win32/C++/toolbar.bmp diff --git a/ndb/src/cw/cpcc-win32/csharp/App.ico b/storage/ndb/src/cw/cpcc-win32/csharp/App.ico similarity index 100% rename from ndb/src/cw/cpcc-win32/csharp/App.ico rename to storage/ndb/src/cw/cpcc-win32/csharp/App.ico diff --git a/ndb/src/cw/cpcc-win32/csharp/CPC_Form.cs b/storage/ndb/src/cw/cpcc-win32/csharp/CPC_Form.cs similarity index 100% rename from ndb/src/cw/cpcc-win32/csharp/CPC_Form.cs rename to storage/ndb/src/cw/cpcc-win32/csharp/CPC_Form.cs diff --git a/ndb/src/cw/cpcc-win32/csharp/Computer.cs b/storage/ndb/src/cw/cpcc-win32/csharp/Computer.cs similarity index 100% rename from ndb/src/cw/cpcc-win32/csharp/Computer.cs rename to storage/ndb/src/cw/cpcc-win32/csharp/Computer.cs diff --git a/ndb/src/cw/cpcc-win32/csharp/ComputerAddDialog.cs b/storage/ndb/src/cw/cpcc-win32/csharp/ComputerAddDialog.cs similarity index 100% rename from ndb/src/cw/cpcc-win32/csharp/ComputerAddDialog.cs rename to storage/ndb/src/cw/cpcc-win32/csharp/ComputerAddDialog.cs diff --git a/ndb/src/cw/cpcc-win32/csharp/ComputerRemoveDialog.cs b/storage/ndb/src/cw/cpcc-win32/csharp/ComputerRemoveDialog.cs similarity index 100% rename from ndb/src/cw/cpcc-win32/csharp/ComputerRemoveDialog.cs rename to storage/ndb/src/cw/cpcc-win32/csharp/ComputerRemoveDialog.cs diff --git a/ndb/src/cw/cpcc-win32/csharp/DATABASE.ICO b/storage/ndb/src/cw/cpcc-win32/csharp/DATABASE.ICO similarity index 100% rename from ndb/src/cw/cpcc-win32/csharp/DATABASE.ICO rename to storage/ndb/src/cw/cpcc-win32/csharp/DATABASE.ICO diff --git a/ndb/src/cw/cpcc-win32/csharp/Database.cs b/storage/ndb/src/cw/cpcc-win32/csharp/Database.cs similarity index 100% rename from ndb/src/cw/cpcc-win32/csharp/Database.cs rename to storage/ndb/src/cw/cpcc-win32/csharp/Database.cs diff --git a/ndb/src/cw/cpcc-win32/csharp/NDB_CPC.csproj b/storage/ndb/src/cw/cpcc-win32/csharp/NDB_CPC.csproj similarity index 100% rename from ndb/src/cw/cpcc-win32/csharp/NDB_CPC.csproj rename to storage/ndb/src/cw/cpcc-win32/csharp/NDB_CPC.csproj diff --git a/ndb/src/cw/cpcc-win32/csharp/NDB_CPC.csproj.user b/storage/ndb/src/cw/cpcc-win32/csharp/NDB_CPC.csproj.user similarity index 100% rename from ndb/src/cw/cpcc-win32/csharp/NDB_CPC.csproj.user rename to storage/ndb/src/cw/cpcc-win32/csharp/NDB_CPC.csproj.user diff --git a/ndb/src/cw/cpcc-win32/csharp/NDB_CPC.ncb b/storage/ndb/src/cw/cpcc-win32/csharp/NDB_CPC.ncb similarity index 100% rename from ndb/src/cw/cpcc-win32/csharp/NDB_CPC.ncb rename to storage/ndb/src/cw/cpcc-win32/csharp/NDB_CPC.ncb diff --git a/ndb/src/cw/cpcc-win32/csharp/NDB_CPC.sln b/storage/ndb/src/cw/cpcc-win32/csharp/NDB_CPC.sln similarity index 100% rename from ndb/src/cw/cpcc-win32/csharp/NDB_CPC.sln rename to storage/ndb/src/cw/cpcc-win32/csharp/NDB_CPC.sln diff --git a/ndb/src/cw/cpcc-win32/csharp/PanelWizard.cs b/storage/ndb/src/cw/cpcc-win32/csharp/PanelWizard.cs similarity index 100% rename from ndb/src/cw/cpcc-win32/csharp/PanelWizard.cs rename to storage/ndb/src/cw/cpcc-win32/csharp/PanelWizard.cs diff --git a/ndb/src/cw/cpcc-win32/csharp/Process.cs b/storage/ndb/src/cw/cpcc-win32/csharp/Process.cs similarity index 100% rename from ndb/src/cw/cpcc-win32/csharp/Process.cs rename to storage/ndb/src/cw/cpcc-win32/csharp/Process.cs diff --git a/ndb/src/cw/cpcc-win32/csharp/ProcessDefineDialog.cs b/storage/ndb/src/cw/cpcc-win32/csharp/ProcessDefineDialog.cs similarity index 100% rename from ndb/src/cw/cpcc-win32/csharp/ProcessDefineDialog.cs rename to storage/ndb/src/cw/cpcc-win32/csharp/ProcessDefineDialog.cs diff --git a/ndb/src/cw/cpcc-win32/csharp/fileaccess/FileMgmt.cs b/storage/ndb/src/cw/cpcc-win32/csharp/fileaccess/FileMgmt.cs similarity index 100% rename from ndb/src/cw/cpcc-win32/csharp/fileaccess/FileMgmt.cs rename to storage/ndb/src/cw/cpcc-win32/csharp/fileaccess/FileMgmt.cs diff --git a/ndb/src/cw/cpcc-win32/csharp/simpleparser/SimpleCPCParser.cs b/storage/ndb/src/cw/cpcc-win32/csharp/simpleparser/SimpleCPCParser.cs similarity index 100% rename from ndb/src/cw/cpcc-win32/csharp/simpleparser/SimpleCPCParser.cs rename to storage/ndb/src/cw/cpcc-win32/csharp/simpleparser/SimpleCPCParser.cs diff --git a/ndb/src/cw/cpcc-win32/csharp/socketcomm/SocketComm.cs b/storage/ndb/src/cw/cpcc-win32/csharp/socketcomm/SocketComm.cs similarity index 100% rename from ndb/src/cw/cpcc-win32/csharp/socketcomm/SocketComm.cs rename to storage/ndb/src/cw/cpcc-win32/csharp/socketcomm/SocketComm.cs diff --git a/ndb/src/cw/cpcc-win32/csharp/socketcomm/myTcpClient.cs b/storage/ndb/src/cw/cpcc-win32/csharp/socketcomm/myTcpClient.cs similarity index 100% rename from ndb/src/cw/cpcc-win32/csharp/socketcomm/myTcpClient.cs rename to storage/ndb/src/cw/cpcc-win32/csharp/socketcomm/myTcpClient.cs diff --git a/ndb/src/cw/cpcc-win32/csharp/startDatabaseDlg.cs b/storage/ndb/src/cw/cpcc-win32/csharp/startDatabaseDlg.cs similarity index 100% rename from ndb/src/cw/cpcc-win32/csharp/startDatabaseDlg.cs rename to storage/ndb/src/cw/cpcc-win32/csharp/startDatabaseDlg.cs diff --git a/ndb/src/cw/cpcc-win32/csharp/telnetclient/telnetClient.cs b/storage/ndb/src/cw/cpcc-win32/csharp/telnetclient/telnetClient.cs similarity index 100% rename from ndb/src/cw/cpcc-win32/csharp/telnetclient/telnetClient.cs rename to storage/ndb/src/cw/cpcc-win32/csharp/telnetclient/telnetClient.cs diff --git a/ndb/src/cw/cpcc-win32/vb6/Computer.cls b/storage/ndb/src/cw/cpcc-win32/vb6/Computer.cls similarity index 100% rename from ndb/src/cw/cpcc-win32/vb6/Computer.cls rename to storage/ndb/src/cw/cpcc-win32/vb6/Computer.cls diff --git a/ndb/src/cw/cpcc-win32/vb6/Database.cls b/storage/ndb/src/cw/cpcc-win32/vb6/Database.cls similarity index 100% rename from ndb/src/cw/cpcc-win32/vb6/Database.cls rename to storage/ndb/src/cw/cpcc-win32/vb6/Database.cls diff --git a/ndb/src/cw/cpcc-win32/vb6/Icon 110.ico b/storage/ndb/src/cw/cpcc-win32/vb6/Icon 110.ico similarity index 100% rename from ndb/src/cw/cpcc-win32/vb6/Icon 110.ico rename to storage/ndb/src/cw/cpcc-win32/vb6/Icon 110.ico diff --git a/ndb/src/cw/cpcc-win32/vb6/Icon 231.ico b/storage/ndb/src/cw/cpcc-win32/vb6/Icon 231.ico similarity index 100% rename from ndb/src/cw/cpcc-win32/vb6/Icon 231.ico rename to storage/ndb/src/cw/cpcc-win32/vb6/Icon 231.ico diff --git a/ndb/src/cw/cpcc-win32/vb6/Icon 237.ico b/storage/ndb/src/cw/cpcc-win32/vb6/Icon 237.ico similarity index 100% rename from ndb/src/cw/cpcc-win32/vb6/Icon 237.ico rename to storage/ndb/src/cw/cpcc-win32/vb6/Icon 237.ico diff --git a/ndb/src/cw/cpcc-win32/vb6/Icon 241.ico b/storage/ndb/src/cw/cpcc-win32/vb6/Icon 241.ico similarity index 100% rename from ndb/src/cw/cpcc-win32/vb6/Icon 241.ico rename to storage/ndb/src/cw/cpcc-win32/vb6/Icon 241.ico diff --git a/ndb/src/cw/cpcc-win32/vb6/Icon 242.ico b/storage/ndb/src/cw/cpcc-win32/vb6/Icon 242.ico similarity index 100% rename from ndb/src/cw/cpcc-win32/vb6/Icon 242.ico rename to storage/ndb/src/cw/cpcc-win32/vb6/Icon 242.ico diff --git a/ndb/src/cw/cpcc-win32/vb6/Icon 270.ico b/storage/ndb/src/cw/cpcc-win32/vb6/Icon 270.ico similarity index 100% rename from ndb/src/cw/cpcc-win32/vb6/Icon 270.ico rename to storage/ndb/src/cw/cpcc-win32/vb6/Icon 270.ico diff --git a/ndb/src/cw/cpcc-win32/vb6/Icon 271.ico b/storage/ndb/src/cw/cpcc-win32/vb6/Icon 271.ico similarity index 100% rename from ndb/src/cw/cpcc-win32/vb6/Icon 271.ico rename to storage/ndb/src/cw/cpcc-win32/vb6/Icon 271.ico diff --git a/ndb/src/cw/cpcc-win32/vb6/Icon 273.ico b/storage/ndb/src/cw/cpcc-win32/vb6/Icon 273.ico similarity index 100% rename from ndb/src/cw/cpcc-win32/vb6/Icon 273.ico rename to storage/ndb/src/cw/cpcc-win32/vb6/Icon 273.ico diff --git a/ndb/src/cw/cpcc-win32/vb6/Icon 31.ico b/storage/ndb/src/cw/cpcc-win32/vb6/Icon 31.ico similarity index 100% rename from ndb/src/cw/cpcc-win32/vb6/Icon 31.ico rename to storage/ndb/src/cw/cpcc-win32/vb6/Icon 31.ico diff --git a/ndb/src/cw/cpcc-win32/vb6/Icon 337.ico b/storage/ndb/src/cw/cpcc-win32/vb6/Icon 337.ico similarity index 100% rename from ndb/src/cw/cpcc-win32/vb6/Icon 337.ico rename to storage/ndb/src/cw/cpcc-win32/vb6/Icon 337.ico diff --git a/ndb/src/cw/cpcc-win32/vb6/Icon 338.ico b/storage/ndb/src/cw/cpcc-win32/vb6/Icon 338.ico similarity index 100% rename from ndb/src/cw/cpcc-win32/vb6/Icon 338.ico rename to storage/ndb/src/cw/cpcc-win32/vb6/Icon 338.ico diff --git a/ndb/src/cw/cpcc-win32/vb6/Icon 339.ico b/storage/ndb/src/cw/cpcc-win32/vb6/Icon 339.ico similarity index 100% rename from ndb/src/cw/cpcc-win32/vb6/Icon 339.ico rename to storage/ndb/src/cw/cpcc-win32/vb6/Icon 339.ico diff --git a/ndb/src/cw/cpcc-win32/vb6/MSSCCPRJ.SCC b/storage/ndb/src/cw/cpcc-win32/vb6/MSSCCPRJ.SCC similarity index 100% rename from ndb/src/cw/cpcc-win32/vb6/MSSCCPRJ.SCC rename to storage/ndb/src/cw/cpcc-win32/vb6/MSSCCPRJ.SCC diff --git a/ndb/src/cw/cpcc-win32/vb6/Module1.bas b/storage/ndb/src/cw/cpcc-win32/vb6/Module1.bas similarity index 100% rename from ndb/src/cw/cpcc-win32/vb6/Module1.bas rename to storage/ndb/src/cw/cpcc-win32/vb6/Module1.bas diff --git a/ndb/src/cw/cpcc-win32/vb6/NdbCPC.vbp b/storage/ndb/src/cw/cpcc-win32/vb6/NdbCPC.vbp similarity index 100% rename from ndb/src/cw/cpcc-win32/vb6/NdbCPC.vbp rename to storage/ndb/src/cw/cpcc-win32/vb6/NdbCPC.vbp diff --git a/ndb/src/cw/cpcc-win32/vb6/NdbCPC.vbw b/storage/ndb/src/cw/cpcc-win32/vb6/NdbCPC.vbw similarity index 100% rename from ndb/src/cw/cpcc-win32/vb6/NdbCPC.vbw rename to storage/ndb/src/cw/cpcc-win32/vb6/NdbCPC.vbw diff --git a/ndb/src/cw/cpcc-win32/vb6/Process.cls b/storage/ndb/src/cw/cpcc-win32/vb6/Process.cls similarity index 100% rename from ndb/src/cw/cpcc-win32/vb6/Process.cls rename to storage/ndb/src/cw/cpcc-win32/vb6/Process.cls diff --git a/ndb/src/cw/cpcc-win32/vb6/closed folder.ico b/storage/ndb/src/cw/cpcc-win32/vb6/closed folder.ico similarity index 100% rename from ndb/src/cw/cpcc-win32/vb6/closed folder.ico rename to storage/ndb/src/cw/cpcc-win32/vb6/closed folder.ico diff --git a/ndb/src/cw/cpcc-win32/vb6/computer.ico b/storage/ndb/src/cw/cpcc-win32/vb6/computer.ico similarity index 100% rename from ndb/src/cw/cpcc-win32/vb6/computer.ico rename to storage/ndb/src/cw/cpcc-win32/vb6/computer.ico diff --git a/ndb/src/cw/cpcc-win32/vb6/frmAbout.frm b/storage/ndb/src/cw/cpcc-win32/vb6/frmAbout.frm similarity index 100% rename from ndb/src/cw/cpcc-win32/vb6/frmAbout.frm rename to storage/ndb/src/cw/cpcc-win32/vb6/frmAbout.frm diff --git a/ndb/src/cw/cpcc-win32/vb6/frmLogin.frm b/storage/ndb/src/cw/cpcc-win32/vb6/frmLogin.frm similarity index 100% rename from ndb/src/cw/cpcc-win32/vb6/frmLogin.frm rename to storage/ndb/src/cw/cpcc-win32/vb6/frmLogin.frm diff --git a/ndb/src/cw/cpcc-win32/vb6/frmMain.frm b/storage/ndb/src/cw/cpcc-win32/vb6/frmMain.frm similarity index 100% rename from ndb/src/cw/cpcc-win32/vb6/frmMain.frm rename to storage/ndb/src/cw/cpcc-win32/vb6/frmMain.frm diff --git a/ndb/src/cw/cpcc-win32/vb6/frmNewComputer.frm b/storage/ndb/src/cw/cpcc-win32/vb6/frmNewComputer.frm similarity index 100% rename from ndb/src/cw/cpcc-win32/vb6/frmNewComputer.frm rename to storage/ndb/src/cw/cpcc-win32/vb6/frmNewComputer.frm diff --git a/ndb/src/cw/cpcc-win32/vb6/frmNewComputer.frx b/storage/ndb/src/cw/cpcc-win32/vb6/frmNewComputer.frx similarity index 100% rename from ndb/src/cw/cpcc-win32/vb6/frmNewComputer.frx rename to storage/ndb/src/cw/cpcc-win32/vb6/frmNewComputer.frx diff --git a/ndb/src/cw/cpcc-win32/vb6/frmNewDatabase.frx b/storage/ndb/src/cw/cpcc-win32/vb6/frmNewDatabase.frx similarity index 100% rename from ndb/src/cw/cpcc-win32/vb6/frmNewDatabase.frx rename to storage/ndb/src/cw/cpcc-win32/vb6/frmNewDatabase.frx diff --git a/ndb/src/cw/cpcc-win32/vb6/frmNewDatabase1.frm b/storage/ndb/src/cw/cpcc-win32/vb6/frmNewDatabase1.frm similarity index 100% rename from ndb/src/cw/cpcc-win32/vb6/frmNewDatabase1.frm rename to storage/ndb/src/cw/cpcc-win32/vb6/frmNewDatabase1.frm diff --git a/ndb/src/cw/cpcc-win32/vb6/frmNewDatabase2.frm b/storage/ndb/src/cw/cpcc-win32/vb6/frmNewDatabase2.frm similarity index 100% rename from ndb/src/cw/cpcc-win32/vb6/frmNewDatabase2.frm rename to storage/ndb/src/cw/cpcc-win32/vb6/frmNewDatabase2.frm diff --git a/ndb/src/cw/cpcc-win32/vb6/frmNewDatabase2.log b/storage/ndb/src/cw/cpcc-win32/vb6/frmNewDatabase2.log similarity index 100% rename from ndb/src/cw/cpcc-win32/vb6/frmNewDatabase2.log rename to storage/ndb/src/cw/cpcc-win32/vb6/frmNewDatabase2.log diff --git a/ndb/src/cw/cpcc-win32/vb6/frmNewDatabase3.frm b/storage/ndb/src/cw/cpcc-win32/vb6/frmNewDatabase3.frm similarity index 100% rename from ndb/src/cw/cpcc-win32/vb6/frmNewDatabase3.frm rename to storage/ndb/src/cw/cpcc-win32/vb6/frmNewDatabase3.frm diff --git a/ndb/src/cw/cpcc-win32/vb6/frmOptions.frm b/storage/ndb/src/cw/cpcc-win32/vb6/frmOptions.frm similarity index 100% rename from ndb/src/cw/cpcc-win32/vb6/frmOptions.frm rename to storage/ndb/src/cw/cpcc-win32/vb6/frmOptions.frm diff --git a/ndb/src/cw/cpcc-win32/vb6/frmSplash.frx b/storage/ndb/src/cw/cpcc-win32/vb6/frmSplash.frx similarity index 100% rename from ndb/src/cw/cpcc-win32/vb6/frmSplash.frx rename to storage/ndb/src/cw/cpcc-win32/vb6/frmSplash.frx diff --git a/ndb/src/cw/cpcc-win32/vb6/networking.ico b/storage/ndb/src/cw/cpcc-win32/vb6/networking.ico similarity index 100% rename from ndb/src/cw/cpcc-win32/vb6/networking.ico rename to storage/ndb/src/cw/cpcc-win32/vb6/networking.ico diff --git a/ndb/src/cw/cpcc-win32/vb6/open folder.ico b/storage/ndb/src/cw/cpcc-win32/vb6/open folder.ico similarity index 100% rename from ndb/src/cw/cpcc-win32/vb6/open folder.ico rename to storage/ndb/src/cw/cpcc-win32/vb6/open folder.ico diff --git a/ndb/src/cw/cpcd/APIService.cpp b/storage/ndb/src/cw/cpcd/APIService.cpp similarity index 100% rename from ndb/src/cw/cpcd/APIService.cpp rename to storage/ndb/src/cw/cpcd/APIService.cpp diff --git a/ndb/src/cw/cpcd/APIService.hpp b/storage/ndb/src/cw/cpcd/APIService.hpp similarity index 100% rename from ndb/src/cw/cpcd/APIService.hpp rename to storage/ndb/src/cw/cpcd/APIService.hpp diff --git a/ndb/src/cw/cpcd/CPCD.cpp b/storage/ndb/src/cw/cpcd/CPCD.cpp similarity index 100% rename from ndb/src/cw/cpcd/CPCD.cpp rename to storage/ndb/src/cw/cpcd/CPCD.cpp diff --git a/ndb/src/cw/cpcd/CPCD.hpp b/storage/ndb/src/cw/cpcd/CPCD.hpp similarity index 100% rename from ndb/src/cw/cpcd/CPCD.hpp rename to storage/ndb/src/cw/cpcd/CPCD.hpp diff --git a/ndb/src/cw/cpcd/Makefile.am b/storage/ndb/src/cw/cpcd/Makefile.am similarity index 69% rename from ndb/src/cw/cpcd/Makefile.am rename to storage/ndb/src/cw/cpcd/Makefile.am index 75f557b2af7..e0b22be6b8d 100644 --- a/ndb/src/cw/cpcd/Makefile.am +++ b/storage/ndb/src/cw/cpcd/Makefile.am @@ -4,13 +4,13 @@ ndbbin_PROGRAMS = ndb_cpcd ndb_cpcd_SOURCES = main.cpp CPCD.cpp Process.cpp APIService.cpp Monitor.cpp common.cpp LDADD_LOC = \ - $(top_builddir)/ndb/src/libndbclient.la \ + $(top_builddir)/storage/ndb/src/libndbclient.la \ $(top_builddir)/dbug/libdbug.a \ $(top_builddir)/mysys/libmysys.a \ $(top_builddir)/strings/libmystrings.a @NDB_SCI_LIBS@ -include $(top_srcdir)/ndb/config/common.mk.am -include $(top_srcdir)/ndb/config/type_util.mk.am +include $(top_srcdir)/storage/ndb/config/common.mk.am +include $(top_srcdir)/storage/ndb/config/type_util.mk.am ndb_cpcd_LDFLAGS = @ndb_bin_am_ldflags@ diff --git a/ndb/src/cw/cpcd/Monitor.cpp b/storage/ndb/src/cw/cpcd/Monitor.cpp similarity index 100% rename from ndb/src/cw/cpcd/Monitor.cpp rename to storage/ndb/src/cw/cpcd/Monitor.cpp diff --git a/ndb/src/cw/cpcd/Process.cpp b/storage/ndb/src/cw/cpcd/Process.cpp similarity index 100% rename from ndb/src/cw/cpcd/Process.cpp rename to storage/ndb/src/cw/cpcd/Process.cpp diff --git a/ndb/src/cw/cpcd/common.cpp b/storage/ndb/src/cw/cpcd/common.cpp similarity index 100% rename from ndb/src/cw/cpcd/common.cpp rename to storage/ndb/src/cw/cpcd/common.cpp diff --git a/ndb/src/cw/cpcd/common.hpp b/storage/ndb/src/cw/cpcd/common.hpp similarity index 100% rename from ndb/src/cw/cpcd/common.hpp rename to storage/ndb/src/cw/cpcd/common.hpp diff --git a/ndb/src/cw/cpcd/main.cpp b/storage/ndb/src/cw/cpcd/main.cpp similarity index 100% rename from ndb/src/cw/cpcd/main.cpp rename to storage/ndb/src/cw/cpcd/main.cpp diff --git a/ndb/src/cw/test/socketclient/Makefile b/storage/ndb/src/cw/test/socketclient/Makefile similarity index 100% rename from ndb/src/cw/test/socketclient/Makefile rename to storage/ndb/src/cw/test/socketclient/Makefile diff --git a/ndb/src/cw/test/socketclient/socketClientTest.cpp b/storage/ndb/src/cw/test/socketclient/socketClientTest.cpp similarity index 100% rename from ndb/src/cw/test/socketclient/socketClientTest.cpp rename to storage/ndb/src/cw/test/socketclient/socketClientTest.cpp diff --git a/ndb/src/cw/util/ClientInterface.cpp b/storage/ndb/src/cw/util/ClientInterface.cpp similarity index 100% rename from ndb/src/cw/util/ClientInterface.cpp rename to storage/ndb/src/cw/util/ClientInterface.cpp diff --git a/ndb/src/cw/util/ClientInterface.hpp b/storage/ndb/src/cw/util/ClientInterface.hpp similarity index 100% rename from ndb/src/cw/util/ClientInterface.hpp rename to storage/ndb/src/cw/util/ClientInterface.hpp diff --git a/ndb/src/cw/util/Makefile b/storage/ndb/src/cw/util/Makefile similarity index 100% rename from ndb/src/cw/util/Makefile rename to storage/ndb/src/cw/util/Makefile diff --git a/ndb/src/cw/util/SocketRegistry.cpp b/storage/ndb/src/cw/util/SocketRegistry.cpp similarity index 100% rename from ndb/src/cw/util/SocketRegistry.cpp rename to storage/ndb/src/cw/util/SocketRegistry.cpp diff --git a/ndb/src/cw/util/SocketRegistry.hpp b/storage/ndb/src/cw/util/SocketRegistry.hpp similarity index 100% rename from ndb/src/cw/util/SocketRegistry.hpp rename to storage/ndb/src/cw/util/SocketRegistry.hpp diff --git a/ndb/src/cw/util/SocketService.cpp b/storage/ndb/src/cw/util/SocketService.cpp similarity index 100% rename from ndb/src/cw/util/SocketService.cpp rename to storage/ndb/src/cw/util/SocketService.cpp diff --git a/ndb/src/cw/util/SocketService.hpp b/storage/ndb/src/cw/util/SocketService.hpp similarity index 100% rename from ndb/src/cw/util/SocketService.hpp rename to storage/ndb/src/cw/util/SocketService.hpp diff --git a/ndb/src/external/WIN32.x86/sci/lib/SISCI_LIBRARY_WIN32.TXT b/storage/ndb/src/external/WIN32.x86/sci/lib/SISCI_LIBRARY_WIN32.TXT similarity index 100% rename from ndb/src/external/WIN32.x86/sci/lib/SISCI_LIBRARY_WIN32.TXT rename to storage/ndb/src/external/WIN32.x86/sci/lib/SISCI_LIBRARY_WIN32.TXT diff --git a/ndb/src/external/WIN32.x86/sci/lib/scilib.lib b/storage/ndb/src/external/WIN32.x86/sci/lib/scilib.lib similarity index 100% rename from ndb/src/external/WIN32.x86/sci/lib/scilib.lib rename to storage/ndb/src/external/WIN32.x86/sci/lib/scilib.lib diff --git a/ndb/src/external/WIN32.x86/sci/lib/scilib_md.lib b/storage/ndb/src/external/WIN32.x86/sci/lib/scilib_md.lib similarity index 100% rename from ndb/src/external/WIN32.x86/sci/lib/scilib_md.lib rename to storage/ndb/src/external/WIN32.x86/sci/lib/scilib_md.lib diff --git a/ndb/src/external/WIN32.x86/sci/lib/scilib_mt.lib b/storage/ndb/src/external/WIN32.x86/sci/lib/scilib_mt.lib similarity index 100% rename from ndb/src/external/WIN32.x86/sci/lib/scilib_mt.lib rename to storage/ndb/src/external/WIN32.x86/sci/lib/scilib_mt.lib diff --git a/ndb/src/external/WIN32.x86/sci/lib/sisci_api.lib b/storage/ndb/src/external/WIN32.x86/sci/lib/sisci_api.lib similarity index 100% rename from ndb/src/external/WIN32.x86/sci/lib/sisci_api.lib rename to storage/ndb/src/external/WIN32.x86/sci/lib/sisci_api.lib diff --git a/ndb/src/external/WIN32.x86/sci/lib/sisci_api_md.lib b/storage/ndb/src/external/WIN32.x86/sci/lib/sisci_api_md.lib similarity index 100% rename from ndb/src/external/WIN32.x86/sci/lib/sisci_api_md.lib rename to storage/ndb/src/external/WIN32.x86/sci/lib/sisci_api_md.lib diff --git a/ndb/src/external/WIN32.x86/sci/lib/sisci_api_mt.lib b/storage/ndb/src/external/WIN32.x86/sci/lib/sisci_api_mt.lib similarity index 100% rename from ndb/src/external/WIN32.x86/sci/lib/sisci_api_mt.lib rename to storage/ndb/src/external/WIN32.x86/sci/lib/sisci_api_mt.lib diff --git a/ndb/src/kernel/Makefile.am b/storage/ndb/src/kernel/Makefile.am similarity index 52% rename from ndb/src/kernel/Makefile.am rename to storage/ndb/src/kernel/Makefile.am index 55d3c5a578f..6e3664f0997 100644 --- a/ndb/src/kernel/Makefile.am +++ b/storage/ndb/src/kernel/Makefile.am @@ -1,12 +1,12 @@ SUBDIRS = error blocks vm -include $(top_srcdir)/ndb/config/common.mk.am +include $(top_srcdir)/storage/ndb/config/common.mk.am ndbbin_PROGRAMS = ndbd ndbd_SOURCES = main.cpp SimBlockList.cpp -include $(top_srcdir)/ndb/config/type_kernel.mk.am +include $(top_srcdir)/storage/ndb/config/type_kernel.mk.am INCLUDES += \ -Iblocks/cmvmi \ @@ -45,14 +45,14 @@ LDADD += \ blocks/dbtux/libdbtux.a \ vm/libkernel.a \ error/liberror.a \ - $(top_builddir)/ndb/src/common/transporter/libtransporter.la \ - $(top_builddir)/ndb/src/common/debugger/libtrace.la \ - $(top_builddir)/ndb/src/common/debugger/signaldata/libsignaldataprint.la \ - $(top_builddir)/ndb/src/common/logger/liblogger.la \ - $(top_builddir)/ndb/src/common/mgmcommon/libmgmsrvcommon.la \ - $(top_builddir)/ndb/src/mgmapi/libmgmapi.la \ - $(top_builddir)/ndb/src/common/portlib/libportlib.la \ - $(top_builddir)/ndb/src/common/util/libgeneral.la \ + $(top_builddir)/storage/ndb/src/common/transporter/libtransporter.la \ + $(top_builddir)/storage/ndb/src/common/debugger/libtrace.la \ + $(top_builddir)/storage/ndb/src/common/debugger/signaldata/libsignaldataprint.la \ + $(top_builddir)/storage/ndb/src/common/logger/liblogger.la \ + $(top_builddir)/storage/ndb/src/common/mgmcommon/libmgmsrvcommon.la \ + $(top_builddir)/storage/ndb/src/mgmapi/libmgmapi.la \ + $(top_builddir)/storage/ndb/src/common/portlib/libportlib.la \ + $(top_builddir)/storage/ndb/src/common/util/libgeneral.la \ $(top_builddir)/dbug/libdbug.a \ $(top_builddir)/mysys/libmysys.a \ $(top_builddir)/strings/libmystrings.a @NDB_SCI_LIBS@ @@ -62,14 +62,14 @@ LDADD += \ windoze-dsp: ndbd.dsp -ndbd.dsp: Makefile \ - $(top_srcdir)/ndb/config/win-prg.am \ - $(top_srcdir)/ndb/config/win-name \ - $(top_srcdir)/ndb/config/win-includes \ - $(top_srcdir)/ndb/config/win-sources \ - $(top_srcdir)/ndb/config/win-libraries - cat $(top_srcdir)/ndb/config/win-prg.am > $@ - @$(top_srcdir)/ndb/config/win-name $@ $(ndbbin_PROGRAMS) - @$(top_srcdir)/ndb/config/win-includes $@ $(INCLUDES) - @$(top_srcdir)/ndb/config/win-sources $@ $(ndbd_SOURCES) - @$(top_srcdir)/ndb/config/win-libraries $@ LINK $(LDADD) +storage/ndbd.dsp: Makefile \ + $(top_srcdir)/storage/ndb/config/win-prg.am \ + $(top_srcdir)/storage/ndb/config/win-name \ + $(top_srcdir)/storage/ndb/config/win-includes \ + $(top_srcdir)/storage/ndb/config/win-sources \ + $(top_srcdir)/storage/ndb/config/win-libraries + cat $(top_srcdir)/storage/ndb/config/win-prg.am > $@ + @$(top_srcdir)/storage/ndb/config/win-name $@ $(ndbbin_PROGRAMS) + @$(top_srcdir)/storage/ndb/config/win-includes $@ $(INCLUDES) + @$(top_srcdir)/storage/ndb/config/win-sources $@ $(ndbd_SOURCES) + @$(top_srcdir)/storage/ndb/config/win-libraries $@ LINK $(LDADD) diff --git a/ndb/src/kernel/SimBlockList.cpp b/storage/ndb/src/kernel/SimBlockList.cpp similarity index 100% rename from ndb/src/kernel/SimBlockList.cpp rename to storage/ndb/src/kernel/SimBlockList.cpp diff --git a/ndb/src/kernel/blocks/ERROR_codes.txt b/storage/ndb/src/kernel/blocks/ERROR_codes.txt similarity index 100% rename from ndb/src/kernel/blocks/ERROR_codes.txt rename to storage/ndb/src/kernel/blocks/ERROR_codes.txt diff --git a/ndb/src/kernel/blocks/Makefile.am b/storage/ndb/src/kernel/blocks/Makefile.am similarity index 100% rename from ndb/src/kernel/blocks/Makefile.am rename to storage/ndb/src/kernel/blocks/Makefile.am diff --git a/ndb/src/kernel/blocks/NodeRestart.new.txt b/storage/ndb/src/kernel/blocks/NodeRestart.new.txt similarity index 100% rename from ndb/src/kernel/blocks/NodeRestart.new.txt rename to storage/ndb/src/kernel/blocks/NodeRestart.new.txt diff --git a/ndb/src/kernel/blocks/NodeRestart.txt b/storage/ndb/src/kernel/blocks/NodeRestart.txt similarity index 100% rename from ndb/src/kernel/blocks/NodeRestart.txt rename to storage/ndb/src/kernel/blocks/NodeRestart.txt diff --git a/ndb/src/kernel/blocks/Start.txt b/storage/ndb/src/kernel/blocks/Start.txt similarity index 100% rename from ndb/src/kernel/blocks/Start.txt rename to storage/ndb/src/kernel/blocks/Start.txt diff --git a/ndb/src/kernel/blocks/SystemRestart.new.txt b/storage/ndb/src/kernel/blocks/SystemRestart.new.txt similarity index 100% rename from ndb/src/kernel/blocks/SystemRestart.new.txt rename to storage/ndb/src/kernel/blocks/SystemRestart.new.txt diff --git a/ndb/src/kernel/blocks/SystemRestart.txt b/storage/ndb/src/kernel/blocks/SystemRestart.txt similarity index 100% rename from ndb/src/kernel/blocks/SystemRestart.txt rename to storage/ndb/src/kernel/blocks/SystemRestart.txt diff --git a/ndb/src/kernel/blocks/backup/Backup.cpp b/storage/ndb/src/kernel/blocks/backup/Backup.cpp similarity index 100% rename from ndb/src/kernel/blocks/backup/Backup.cpp rename to storage/ndb/src/kernel/blocks/backup/Backup.cpp diff --git a/ndb/src/kernel/blocks/backup/Backup.hpp b/storage/ndb/src/kernel/blocks/backup/Backup.hpp similarity index 100% rename from ndb/src/kernel/blocks/backup/Backup.hpp rename to storage/ndb/src/kernel/blocks/backup/Backup.hpp diff --git a/ndb/src/kernel/blocks/backup/Backup.txt b/storage/ndb/src/kernel/blocks/backup/Backup.txt similarity index 100% rename from ndb/src/kernel/blocks/backup/Backup.txt rename to storage/ndb/src/kernel/blocks/backup/Backup.txt diff --git a/ndb/src/kernel/blocks/backup/BackupFormat.hpp b/storage/ndb/src/kernel/blocks/backup/BackupFormat.hpp similarity index 100% rename from ndb/src/kernel/blocks/backup/BackupFormat.hpp rename to storage/ndb/src/kernel/blocks/backup/BackupFormat.hpp diff --git a/ndb/src/kernel/blocks/backup/BackupInit.cpp b/storage/ndb/src/kernel/blocks/backup/BackupInit.cpp similarity index 100% rename from ndb/src/kernel/blocks/backup/BackupInit.cpp rename to storage/ndb/src/kernel/blocks/backup/BackupInit.cpp diff --git a/ndb/src/kernel/blocks/backup/FsBuffer.hpp b/storage/ndb/src/kernel/blocks/backup/FsBuffer.hpp similarity index 100% rename from ndb/src/kernel/blocks/backup/FsBuffer.hpp rename to storage/ndb/src/kernel/blocks/backup/FsBuffer.hpp diff --git a/storage/ndb/src/kernel/blocks/backup/Makefile.am b/storage/ndb/src/kernel/blocks/backup/Makefile.am new file mode 100644 index 00000000000..8d1df032514 --- /dev/null +++ b/storage/ndb/src/kernel/blocks/backup/Makefile.am @@ -0,0 +1,24 @@ + +noinst_LIBRARIES = libbackup.a + +libbackup_a_SOURCES = Backup.cpp BackupInit.cpp + +include $(top_srcdir)/storage/ndb/config/common.mk.am +include $(top_srcdir)/storage/ndb/config/type_kernel.mk.am + +# Don't update the files from bitkeeper +%::SCCS/s.% + +windoze-dsp: libbackup.dsp + +libbackup.dsp: Makefile \ + $(top_srcdir)/storage/ndb/config/win-lib.am \ + $(top_srcdir)/storage/ndb/config/win-name \ + $(top_srcdir)/storage/ndb/config/win-includes \ + $(top_srcdir)/storage/ndb/config/win-sources \ + $(top_srcdir)/storage/ndb/config/win-libraries + cat $(top_srcdir)/storage/ndb/config/win-lib.am > $@ + @$(top_srcdir)/storage/ndb/config/win-name $@ $(noinst_LIBRARIES) + @$(top_srcdir)/storage/ndb/config/win-includes $@ $(INCLUDES) + @$(top_srcdir)/storage/ndb/config/win-sources $@ $(libbackup_a_SOURCES) + @$(top_srcdir)/storage/ndb/config/win-libraries $@ LIB $(LDADD) diff --git a/ndb/src/kernel/blocks/backup/read.cpp b/storage/ndb/src/kernel/blocks/backup/read.cpp similarity index 100% rename from ndb/src/kernel/blocks/backup/read.cpp rename to storage/ndb/src/kernel/blocks/backup/read.cpp diff --git a/ndb/src/kernel/blocks/cmvmi/Cmvmi.cpp b/storage/ndb/src/kernel/blocks/cmvmi/Cmvmi.cpp similarity index 100% rename from ndb/src/kernel/blocks/cmvmi/Cmvmi.cpp rename to storage/ndb/src/kernel/blocks/cmvmi/Cmvmi.cpp diff --git a/ndb/src/kernel/blocks/cmvmi/Cmvmi.hpp b/storage/ndb/src/kernel/blocks/cmvmi/Cmvmi.hpp similarity index 100% rename from ndb/src/kernel/blocks/cmvmi/Cmvmi.hpp rename to storage/ndb/src/kernel/blocks/cmvmi/Cmvmi.hpp diff --git a/storage/ndb/src/kernel/blocks/cmvmi/Makefile.am b/storage/ndb/src/kernel/blocks/cmvmi/Makefile.am new file mode 100644 index 00000000000..c9a105dc613 --- /dev/null +++ b/storage/ndb/src/kernel/blocks/cmvmi/Makefile.am @@ -0,0 +1,24 @@ + +noinst_LIBRARIES = libcmvmi.a + +libcmvmi_a_SOURCES = Cmvmi.cpp + +include $(top_srcdir)/storage/ndb/config/common.mk.am +include $(top_srcdir)/storage/ndb/config/type_kernel.mk.am + +# Don't update the files from bitkeeper +%::SCCS/s.% + +windoze-dsp: libcmvmi.dsp + +libcmvmi.dsp: Makefile \ + $(top_srcdir)/storage/ndb/config/win-lib.am \ + $(top_srcdir)/storage/ndb/config/win-name \ + $(top_srcdir)/storage/ndb/config/win-includes \ + $(top_srcdir)/storage/ndb/config/win-sources \ + $(top_srcdir)/storage/ndb/config/win-libraries + cat $(top_srcdir)/storage/ndb/config/win-lib.am > $@ + @$(top_srcdir)/storage/ndb/config/win-name $@ $(noinst_LIBRARIES) + @$(top_srcdir)/storage/ndb/config/win-includes $@ $(INCLUDES) + @$(top_srcdir)/storage/ndb/config/win-sources $@ $(libcmvmi_a_SOURCES) + @$(top_srcdir)/storage/ndb/config/win-libraries $@ LIB $(LDADD) diff --git a/ndb/src/kernel/blocks/dbacc/Dbacc.hpp b/storage/ndb/src/kernel/blocks/dbacc/Dbacc.hpp similarity index 100% rename from ndb/src/kernel/blocks/dbacc/Dbacc.hpp rename to storage/ndb/src/kernel/blocks/dbacc/Dbacc.hpp diff --git a/ndb/src/kernel/blocks/dbacc/DbaccInit.cpp b/storage/ndb/src/kernel/blocks/dbacc/DbaccInit.cpp similarity index 100% rename from ndb/src/kernel/blocks/dbacc/DbaccInit.cpp rename to storage/ndb/src/kernel/blocks/dbacc/DbaccInit.cpp diff --git a/ndb/src/kernel/blocks/dbacc/DbaccMain.cpp b/storage/ndb/src/kernel/blocks/dbacc/DbaccMain.cpp similarity index 100% rename from ndb/src/kernel/blocks/dbacc/DbaccMain.cpp rename to storage/ndb/src/kernel/blocks/dbacc/DbaccMain.cpp diff --git a/storage/ndb/src/kernel/blocks/dbacc/Makefile.am b/storage/ndb/src/kernel/blocks/dbacc/Makefile.am new file mode 100644 index 00000000000..75a457da5bb --- /dev/null +++ b/storage/ndb/src/kernel/blocks/dbacc/Makefile.am @@ -0,0 +1,26 @@ + +noinst_LIBRARIES = libdbacc.a + +libdbacc_a_SOURCES = DbaccInit.cpp DbaccMain.cpp + +INCLUDES_LOC = -I$(top_srcdir)/storage/ndb/src/kernel/blocks/dbtup + +include $(top_srcdir)/storage/ndb/config/common.mk.am +include $(top_srcdir)/storage/ndb/config/type_kernel.mk.am + +# Don't update the files from bitkeeper +%::SCCS/s.% + +windoze-dsp: libdbacc.dsp + +libdbacc.dsp: Makefile \ + $(top_srcdir)/storage/ndb/config/win-lib.am \ + $(top_srcdir)/storage/ndb/config/win-name \ + $(top_srcdir)/storage/ndb/config/win-includes \ + $(top_srcdir)/storage/ndb/config/win-sources \ + $(top_srcdir)/storage/ndb/config/win-libraries + cat $(top_srcdir)/storage/ndb/config/win-lib.am > $@ + @$(top_srcdir)/storage/ndb/config/win-name $@ $(noinst_LIBRARIES) + @$(top_srcdir)/storage/ndb/config/win-includes $@ $(INCLUDES) + @$(top_srcdir)/storage/ndb/config/win-sources $@ $(libdbacc_a_SOURCES) + @$(top_srcdir)/storage/ndb/config/win-libraries $@ LIB $(LDADD) diff --git a/ndb/src/kernel/blocks/dbdict/CreateIndex.txt b/storage/ndb/src/kernel/blocks/dbdict/CreateIndex.txt similarity index 100% rename from ndb/src/kernel/blocks/dbdict/CreateIndex.txt rename to storage/ndb/src/kernel/blocks/dbdict/CreateIndex.txt diff --git a/ndb/src/kernel/blocks/dbdict/CreateTable.new.txt b/storage/ndb/src/kernel/blocks/dbdict/CreateTable.new.txt similarity index 100% rename from ndb/src/kernel/blocks/dbdict/CreateTable.new.txt rename to storage/ndb/src/kernel/blocks/dbdict/CreateTable.new.txt diff --git a/ndb/src/kernel/blocks/dbdict/CreateTable.txt b/storage/ndb/src/kernel/blocks/dbdict/CreateTable.txt similarity index 100% rename from ndb/src/kernel/blocks/dbdict/CreateTable.txt rename to storage/ndb/src/kernel/blocks/dbdict/CreateTable.txt diff --git a/ndb/src/kernel/blocks/dbdict/Dbdict.cpp b/storage/ndb/src/kernel/blocks/dbdict/Dbdict.cpp similarity index 100% rename from ndb/src/kernel/blocks/dbdict/Dbdict.cpp rename to storage/ndb/src/kernel/blocks/dbdict/Dbdict.cpp diff --git a/ndb/src/kernel/blocks/dbdict/Dbdict.hpp b/storage/ndb/src/kernel/blocks/dbdict/Dbdict.hpp similarity index 100% rename from ndb/src/kernel/blocks/dbdict/Dbdict.hpp rename to storage/ndb/src/kernel/blocks/dbdict/Dbdict.hpp diff --git a/ndb/src/kernel/blocks/dbdict/Dbdict.txt b/storage/ndb/src/kernel/blocks/dbdict/Dbdict.txt similarity index 100% rename from ndb/src/kernel/blocks/dbdict/Dbdict.txt rename to storage/ndb/src/kernel/blocks/dbdict/Dbdict.txt diff --git a/ndb/src/kernel/blocks/dbdict/DropTable.txt b/storage/ndb/src/kernel/blocks/dbdict/DropTable.txt similarity index 100% rename from ndb/src/kernel/blocks/dbdict/DropTable.txt rename to storage/ndb/src/kernel/blocks/dbdict/DropTable.txt diff --git a/ndb/src/kernel/blocks/dbdict/Event.txt b/storage/ndb/src/kernel/blocks/dbdict/Event.txt similarity index 100% rename from ndb/src/kernel/blocks/dbdict/Event.txt rename to storage/ndb/src/kernel/blocks/dbdict/Event.txt diff --git a/storage/ndb/src/kernel/blocks/dbdict/Makefile.am b/storage/ndb/src/kernel/blocks/dbdict/Makefile.am new file mode 100644 index 00000000000..0c22e06b855 --- /dev/null +++ b/storage/ndb/src/kernel/blocks/dbdict/Makefile.am @@ -0,0 +1,25 @@ +#SUBDIRS = printSchemafile + +noinst_LIBRARIES = libdbdict.a + +libdbdict_a_SOURCES = Dbdict.cpp + +include $(top_srcdir)/storage/ndb/config/common.mk.am +include $(top_srcdir)/storage/ndb/config/type_kernel.mk.am + +# Don't update the files from bitkeeper +%::SCCS/s.% + +windoze-dsp: libdbdict.dsp + +libdbdict.dsp: Makefile \ + $(top_srcdir)/storage/ndb/config/win-lib.am \ + $(top_srcdir)/storage/ndb/config/win-name \ + $(top_srcdir)/storage/ndb/config/win-includes \ + $(top_srcdir)/storage/ndb/config/win-sources \ + $(top_srcdir)/storage/ndb/config/win-libraries + cat $(top_srcdir)/storage/ndb/config/win-lib.am > $@ + @$(top_srcdir)/storage/ndb/config/win-name $@ $(noinst_LIBRARIES) + @$(top_srcdir)/storage/ndb/config/win-includes $@ $(INCLUDES) + @$(top_srcdir)/storage/ndb/config/win-sources $@ $(libdbdict_a_SOURCES) + @$(top_srcdir)/storage/ndb/config/win-libraries $@ LIB $(LDADD) diff --git a/ndb/src/kernel/blocks/dbdict/Master_AddTable.sfl b/storage/ndb/src/kernel/blocks/dbdict/Master_AddTable.sfl similarity index 100% rename from ndb/src/kernel/blocks/dbdict/Master_AddTable.sfl rename to storage/ndb/src/kernel/blocks/dbdict/Master_AddTable.sfl diff --git a/ndb/src/kernel/blocks/dbdict/SchemaFile.hpp b/storage/ndb/src/kernel/blocks/dbdict/SchemaFile.hpp similarity index 100% rename from ndb/src/kernel/blocks/dbdict/SchemaFile.hpp rename to storage/ndb/src/kernel/blocks/dbdict/SchemaFile.hpp diff --git a/ndb/src/kernel/blocks/dbdict/Slave_AddTable.sfl b/storage/ndb/src/kernel/blocks/dbdict/Slave_AddTable.sfl similarity index 100% rename from ndb/src/kernel/blocks/dbdict/Slave_AddTable.sfl rename to storage/ndb/src/kernel/blocks/dbdict/Slave_AddTable.sfl diff --git a/ndb/src/kernel/blocks/dbdict/printSchemaFile.cpp b/storage/ndb/src/kernel/blocks/dbdict/printSchemaFile.cpp similarity index 100% rename from ndb/src/kernel/blocks/dbdict/printSchemaFile.cpp rename to storage/ndb/src/kernel/blocks/dbdict/printSchemaFile.cpp diff --git a/ndb/src/kernel/blocks/dbdih/Dbdih.hpp b/storage/ndb/src/kernel/blocks/dbdih/Dbdih.hpp similarity index 100% rename from ndb/src/kernel/blocks/dbdih/Dbdih.hpp rename to storage/ndb/src/kernel/blocks/dbdih/Dbdih.hpp diff --git a/ndb/src/kernel/blocks/dbdih/DbdihInit.cpp b/storage/ndb/src/kernel/blocks/dbdih/DbdihInit.cpp similarity index 100% rename from ndb/src/kernel/blocks/dbdih/DbdihInit.cpp rename to storage/ndb/src/kernel/blocks/dbdih/DbdihInit.cpp diff --git a/ndb/src/kernel/blocks/dbdih/DbdihMain.cpp b/storage/ndb/src/kernel/blocks/dbdih/DbdihMain.cpp similarity index 100% rename from ndb/src/kernel/blocks/dbdih/DbdihMain.cpp rename to storage/ndb/src/kernel/blocks/dbdih/DbdihMain.cpp diff --git a/ndb/src/kernel/blocks/dbdih/LCP.txt b/storage/ndb/src/kernel/blocks/dbdih/LCP.txt similarity index 100% rename from ndb/src/kernel/blocks/dbdih/LCP.txt rename to storage/ndb/src/kernel/blocks/dbdih/LCP.txt diff --git a/storage/ndb/src/kernel/blocks/dbdih/Makefile.am b/storage/ndb/src/kernel/blocks/dbdih/Makefile.am new file mode 100644 index 00000000000..0b35884a586 --- /dev/null +++ b/storage/ndb/src/kernel/blocks/dbdih/Makefile.am @@ -0,0 +1,23 @@ +noinst_LIBRARIES = libdbdih.a + +libdbdih_a_SOURCES = DbdihInit.cpp DbdihMain.cpp + +include $(top_srcdir)/storage/ndb/config/common.mk.am +include $(top_srcdir)/storage/ndb/config/type_kernel.mk.am + +# Don't update the files from bitkeeper +%::SCCS/s.% + +windoze-dsp: libdbdih.dsp + +libdbdih.dsp: Makefile \ + $(top_srcdir)/storage/ndb/config/win-lib.am \ + $(top_srcdir)/storage/ndb/config/win-name \ + $(top_srcdir)/storage/ndb/config/win-includes \ + $(top_srcdir)/storage/ndb/config/win-sources \ + $(top_srcdir)/storage/ndb/config/win-libraries + cat $(top_srcdir)/storage/ndb/config/win-lib.am > $@ + @$(top_srcdir)/storage/ndb/config/win-name $@ $(noinst_LIBRARIES) + @$(top_srcdir)/storage/ndb/config/win-includes $@ $(INCLUDES) + @$(top_srcdir)/storage/ndb/config/win-sources $@ $(libdbdih_a_SOURCES) + @$(top_srcdir)/storage/ndb/config/win-libraries $@ LIB $(LDADD) diff --git a/ndb/src/kernel/blocks/dbdih/Sysfile.hpp b/storage/ndb/src/kernel/blocks/dbdih/Sysfile.hpp similarity index 100% rename from ndb/src/kernel/blocks/dbdih/Sysfile.hpp rename to storage/ndb/src/kernel/blocks/dbdih/Sysfile.hpp diff --git a/ndb/src/kernel/blocks/dbdih/printSysfile/Makefile b/storage/ndb/src/kernel/blocks/dbdih/printSysfile/Makefile similarity index 100% rename from ndb/src/kernel/blocks/dbdih/printSysfile/Makefile rename to storage/ndb/src/kernel/blocks/dbdih/printSysfile/Makefile diff --git a/ndb/src/kernel/blocks/dbdih/printSysfile/printSysfile.cpp b/storage/ndb/src/kernel/blocks/dbdih/printSysfile/printSysfile.cpp similarity index 100% rename from ndb/src/kernel/blocks/dbdih/printSysfile/printSysfile.cpp rename to storage/ndb/src/kernel/blocks/dbdih/printSysfile/printSysfile.cpp diff --git a/ndb/src/kernel/blocks/dblqh/Dblqh.hpp b/storage/ndb/src/kernel/blocks/dblqh/Dblqh.hpp similarity index 100% rename from ndb/src/kernel/blocks/dblqh/Dblqh.hpp rename to storage/ndb/src/kernel/blocks/dblqh/Dblqh.hpp diff --git a/ndb/src/kernel/blocks/dblqh/DblqhInit.cpp b/storage/ndb/src/kernel/blocks/dblqh/DblqhInit.cpp similarity index 100% rename from ndb/src/kernel/blocks/dblqh/DblqhInit.cpp rename to storage/ndb/src/kernel/blocks/dblqh/DblqhInit.cpp diff --git a/ndb/src/kernel/blocks/dblqh/DblqhMain.cpp b/storage/ndb/src/kernel/blocks/dblqh/DblqhMain.cpp similarity index 100% rename from ndb/src/kernel/blocks/dblqh/DblqhMain.cpp rename to storage/ndb/src/kernel/blocks/dblqh/DblqhMain.cpp diff --git a/storage/ndb/src/kernel/blocks/dblqh/Makefile.am b/storage/ndb/src/kernel/blocks/dblqh/Makefile.am new file mode 100644 index 00000000000..4807a8ec5d0 --- /dev/null +++ b/storage/ndb/src/kernel/blocks/dblqh/Makefile.am @@ -0,0 +1,25 @@ +#SUBDIRS = redoLogReader + +noinst_LIBRARIES = libdblqh.a + +libdblqh_a_SOURCES = DblqhInit.cpp DblqhMain.cpp + +include $(top_srcdir)/storage/ndb/config/common.mk.am +include $(top_srcdir)/storage/ndb/config/type_kernel.mk.am + +# Don't update the files from bitkeeper +%::SCCS/s.% + +windoze-dsp: libdblqh.dsp + +libdblqh.dsp: Makefile \ + $(top_srcdir)/storage/ndb/config/win-lib.am \ + $(top_srcdir)/storage/ndb/config/win-name \ + $(top_srcdir)/storage/ndb/config/win-includes \ + $(top_srcdir)/storage/ndb/config/win-sources \ + $(top_srcdir)/storage/ndb/config/win-libraries + cat $(top_srcdir)/storage/ndb/config/win-lib.am > $@ + @$(top_srcdir)/storage/ndb/config/win-name $@ $(noinst_LIBRARIES) + @$(top_srcdir)/storage/ndb/config/win-includes $@ $(INCLUDES) + @$(top_srcdir)/storage/ndb/config/win-sources $@ $(libdblqh_a_SOURCES) + @$(top_srcdir)/storage/ndb/config/win-libraries $@ LIB $(LDADD) diff --git a/ndb/src/kernel/blocks/dblqh/redoLogReader/Makefile b/storage/ndb/src/kernel/blocks/dblqh/redoLogReader/Makefile similarity index 100% rename from ndb/src/kernel/blocks/dblqh/redoLogReader/Makefile rename to storage/ndb/src/kernel/blocks/dblqh/redoLogReader/Makefile diff --git a/ndb/src/kernel/blocks/dblqh/redoLogReader/records.cpp b/storage/ndb/src/kernel/blocks/dblqh/redoLogReader/records.cpp similarity index 100% rename from ndb/src/kernel/blocks/dblqh/redoLogReader/records.cpp rename to storage/ndb/src/kernel/blocks/dblqh/redoLogReader/records.cpp diff --git a/ndb/src/kernel/blocks/dblqh/redoLogReader/records.hpp b/storage/ndb/src/kernel/blocks/dblqh/redoLogReader/records.hpp similarity index 100% rename from ndb/src/kernel/blocks/dblqh/redoLogReader/records.hpp rename to storage/ndb/src/kernel/blocks/dblqh/redoLogReader/records.hpp diff --git a/ndb/src/kernel/blocks/dblqh/redoLogReader/redoLogFileReader.cpp b/storage/ndb/src/kernel/blocks/dblqh/redoLogReader/redoLogFileReader.cpp similarity index 100% rename from ndb/src/kernel/blocks/dblqh/redoLogReader/redoLogFileReader.cpp rename to storage/ndb/src/kernel/blocks/dblqh/redoLogReader/redoLogFileReader.cpp diff --git a/ndb/src/kernel/blocks/dbtc/Dbtc.hpp b/storage/ndb/src/kernel/blocks/dbtc/Dbtc.hpp similarity index 100% rename from ndb/src/kernel/blocks/dbtc/Dbtc.hpp rename to storage/ndb/src/kernel/blocks/dbtc/Dbtc.hpp diff --git a/ndb/src/kernel/blocks/dbtc/DbtcInit.cpp b/storage/ndb/src/kernel/blocks/dbtc/DbtcInit.cpp similarity index 100% rename from ndb/src/kernel/blocks/dbtc/DbtcInit.cpp rename to storage/ndb/src/kernel/blocks/dbtc/DbtcInit.cpp diff --git a/ndb/src/kernel/blocks/dbtc/DbtcMain.cpp b/storage/ndb/src/kernel/blocks/dbtc/DbtcMain.cpp similarity index 100% rename from ndb/src/kernel/blocks/dbtc/DbtcMain.cpp rename to storage/ndb/src/kernel/blocks/dbtc/DbtcMain.cpp diff --git a/storage/ndb/src/kernel/blocks/dbtc/Makefile.am b/storage/ndb/src/kernel/blocks/dbtc/Makefile.am new file mode 100644 index 00000000000..4b3b102d8ac --- /dev/null +++ b/storage/ndb/src/kernel/blocks/dbtc/Makefile.am @@ -0,0 +1,23 @@ +noinst_LIBRARIES = libdbtc.a + +libdbtc_a_SOURCES = DbtcInit.cpp DbtcMain.cpp + +include $(top_srcdir)/storage/ndb/config/common.mk.am +include $(top_srcdir)/storage/ndb/config/type_kernel.mk.am + +# Don't update the files from bitkeeper +%::SCCS/s.% + +windoze-dsp: libdbtc.dsp + +libdbtc.dsp: Makefile \ + $(top_srcdir)/storage/ndb/config/win-lib.am \ + $(top_srcdir)/storage/ndb/config/win-name \ + $(top_srcdir)/storage/ndb/config/win-includes \ + $(top_srcdir)/storage/ndb/config/win-sources \ + $(top_srcdir)/storage/ndb/config/win-libraries + cat $(top_srcdir)/storage/ndb/config/win-lib.am > $@ + @$(top_srcdir)/storage/ndb/config/win-name $@ $(noinst_LIBRARIES) + @$(top_srcdir)/storage/ndb/config/win-includes $@ $(INCLUDES) + @$(top_srcdir)/storage/ndb/config/win-sources $@ $(libdbtc_a_SOURCES) + @$(top_srcdir)/storage/ndb/config/win-libraries $@ LIB $(LDADD) diff --git a/ndb/src/kernel/blocks/dbtup/AttributeOffset.hpp b/storage/ndb/src/kernel/blocks/dbtup/AttributeOffset.hpp similarity index 100% rename from ndb/src/kernel/blocks/dbtup/AttributeOffset.hpp rename to storage/ndb/src/kernel/blocks/dbtup/AttributeOffset.hpp diff --git a/ndb/src/kernel/blocks/dbtup/Dbtup.hpp b/storage/ndb/src/kernel/blocks/dbtup/Dbtup.hpp similarity index 100% rename from ndb/src/kernel/blocks/dbtup/Dbtup.hpp rename to storage/ndb/src/kernel/blocks/dbtup/Dbtup.hpp diff --git a/ndb/src/kernel/blocks/dbtup/DbtupAbort.cpp b/storage/ndb/src/kernel/blocks/dbtup/DbtupAbort.cpp similarity index 100% rename from ndb/src/kernel/blocks/dbtup/DbtupAbort.cpp rename to storage/ndb/src/kernel/blocks/dbtup/DbtupAbort.cpp diff --git a/ndb/src/kernel/blocks/dbtup/DbtupBuffer.cpp b/storage/ndb/src/kernel/blocks/dbtup/DbtupBuffer.cpp similarity index 100% rename from ndb/src/kernel/blocks/dbtup/DbtupBuffer.cpp rename to storage/ndb/src/kernel/blocks/dbtup/DbtupBuffer.cpp diff --git a/ndb/src/kernel/blocks/dbtup/DbtupCommit.cpp b/storage/ndb/src/kernel/blocks/dbtup/DbtupCommit.cpp similarity index 100% rename from ndb/src/kernel/blocks/dbtup/DbtupCommit.cpp rename to storage/ndb/src/kernel/blocks/dbtup/DbtupCommit.cpp diff --git a/ndb/src/kernel/blocks/dbtup/DbtupDebug.cpp b/storage/ndb/src/kernel/blocks/dbtup/DbtupDebug.cpp similarity index 100% rename from ndb/src/kernel/blocks/dbtup/DbtupDebug.cpp rename to storage/ndb/src/kernel/blocks/dbtup/DbtupDebug.cpp diff --git a/ndb/src/kernel/blocks/dbtup/DbtupExecQuery.cpp b/storage/ndb/src/kernel/blocks/dbtup/DbtupExecQuery.cpp similarity index 100% rename from ndb/src/kernel/blocks/dbtup/DbtupExecQuery.cpp rename to storage/ndb/src/kernel/blocks/dbtup/DbtupExecQuery.cpp diff --git a/ndb/src/kernel/blocks/dbtup/DbtupFixAlloc.cpp b/storage/ndb/src/kernel/blocks/dbtup/DbtupFixAlloc.cpp similarity index 100% rename from ndb/src/kernel/blocks/dbtup/DbtupFixAlloc.cpp rename to storage/ndb/src/kernel/blocks/dbtup/DbtupFixAlloc.cpp diff --git a/ndb/src/kernel/blocks/dbtup/DbtupGen.cpp b/storage/ndb/src/kernel/blocks/dbtup/DbtupGen.cpp similarity index 100% rename from ndb/src/kernel/blocks/dbtup/DbtupGen.cpp rename to storage/ndb/src/kernel/blocks/dbtup/DbtupGen.cpp diff --git a/ndb/src/kernel/blocks/dbtup/DbtupIndex.cpp b/storage/ndb/src/kernel/blocks/dbtup/DbtupIndex.cpp similarity index 100% rename from ndb/src/kernel/blocks/dbtup/DbtupIndex.cpp rename to storage/ndb/src/kernel/blocks/dbtup/DbtupIndex.cpp diff --git a/ndb/src/kernel/blocks/dbtup/DbtupLCP.cpp b/storage/ndb/src/kernel/blocks/dbtup/DbtupLCP.cpp similarity index 100% rename from ndb/src/kernel/blocks/dbtup/DbtupLCP.cpp rename to storage/ndb/src/kernel/blocks/dbtup/DbtupLCP.cpp diff --git a/ndb/src/kernel/blocks/dbtup/DbtupMeta.cpp b/storage/ndb/src/kernel/blocks/dbtup/DbtupMeta.cpp similarity index 100% rename from ndb/src/kernel/blocks/dbtup/DbtupMeta.cpp rename to storage/ndb/src/kernel/blocks/dbtup/DbtupMeta.cpp diff --git a/ndb/src/kernel/blocks/dbtup/DbtupPagMan.cpp b/storage/ndb/src/kernel/blocks/dbtup/DbtupPagMan.cpp similarity index 100% rename from ndb/src/kernel/blocks/dbtup/DbtupPagMan.cpp rename to storage/ndb/src/kernel/blocks/dbtup/DbtupPagMan.cpp diff --git a/ndb/src/kernel/blocks/dbtup/DbtupPageMap.cpp b/storage/ndb/src/kernel/blocks/dbtup/DbtupPageMap.cpp similarity index 100% rename from ndb/src/kernel/blocks/dbtup/DbtupPageMap.cpp rename to storage/ndb/src/kernel/blocks/dbtup/DbtupPageMap.cpp diff --git a/ndb/src/kernel/blocks/dbtup/DbtupRoutines.cpp b/storage/ndb/src/kernel/blocks/dbtup/DbtupRoutines.cpp similarity index 100% rename from ndb/src/kernel/blocks/dbtup/DbtupRoutines.cpp rename to storage/ndb/src/kernel/blocks/dbtup/DbtupRoutines.cpp diff --git a/ndb/src/kernel/blocks/dbtup/DbtupStoredProcDef.cpp b/storage/ndb/src/kernel/blocks/dbtup/DbtupStoredProcDef.cpp similarity index 100% rename from ndb/src/kernel/blocks/dbtup/DbtupStoredProcDef.cpp rename to storage/ndb/src/kernel/blocks/dbtup/DbtupStoredProcDef.cpp diff --git a/ndb/src/kernel/blocks/dbtup/DbtupSystemRestart.cpp b/storage/ndb/src/kernel/blocks/dbtup/DbtupSystemRestart.cpp similarity index 100% rename from ndb/src/kernel/blocks/dbtup/DbtupSystemRestart.cpp rename to storage/ndb/src/kernel/blocks/dbtup/DbtupSystemRestart.cpp diff --git a/ndb/src/kernel/blocks/dbtup/DbtupTabDesMan.cpp b/storage/ndb/src/kernel/blocks/dbtup/DbtupTabDesMan.cpp similarity index 100% rename from ndb/src/kernel/blocks/dbtup/DbtupTabDesMan.cpp rename to storage/ndb/src/kernel/blocks/dbtup/DbtupTabDesMan.cpp diff --git a/ndb/src/kernel/blocks/dbtup/DbtupTrigger.cpp b/storage/ndb/src/kernel/blocks/dbtup/DbtupTrigger.cpp similarity index 100% rename from ndb/src/kernel/blocks/dbtup/DbtupTrigger.cpp rename to storage/ndb/src/kernel/blocks/dbtup/DbtupTrigger.cpp diff --git a/ndb/src/kernel/blocks/dbtup/DbtupUndoLog.cpp b/storage/ndb/src/kernel/blocks/dbtup/DbtupUndoLog.cpp similarity index 100% rename from ndb/src/kernel/blocks/dbtup/DbtupUndoLog.cpp rename to storage/ndb/src/kernel/blocks/dbtup/DbtupUndoLog.cpp diff --git a/storage/ndb/src/kernel/blocks/dbtup/Makefile.am b/storage/ndb/src/kernel/blocks/dbtup/Makefile.am new file mode 100644 index 00000000000..4fc83476733 --- /dev/null +++ b/storage/ndb/src/kernel/blocks/dbtup/Makefile.am @@ -0,0 +1,41 @@ +noinst_LIBRARIES = libdbtup.a + +libdbtup_a_SOURCES = \ + DbtupExecQuery.cpp \ + DbtupBuffer.cpp \ + DbtupRoutines.cpp \ + DbtupCommit.cpp \ + DbtupFixAlloc.cpp \ + DbtupTrigger.cpp \ + DbtupAbort.cpp \ + DbtupLCP.cpp \ + DbtupUndoLog.cpp \ + DbtupPageMap.cpp \ + DbtupPagMan.cpp \ + DbtupStoredProcDef.cpp \ + DbtupMeta.cpp \ + DbtupTabDesMan.cpp \ + DbtupGen.cpp \ + DbtupSystemRestart.cpp \ + DbtupIndex.cpp \ + DbtupDebug.cpp + +include $(top_srcdir)/storage/ndb/config/common.mk.am +include $(top_srcdir)/storage/ndb/config/type_kernel.mk.am + +# Don't update the files from bitkeeper +%::SCCS/s.% + +windoze-dsp: libdbtup.dsp + +libdbtup.dsp: Makefile \ + $(top_srcdir)/storage/ndb/config/win-lib.am \ + $(top_srcdir)/storage/ndb/config/win-name \ + $(top_srcdir)/storage/ndb/config/win-includes \ + $(top_srcdir)/storage/ndb/config/win-sources \ + $(top_srcdir)/storage/ndb/config/win-libraries + cat $(top_srcdir)/storage/ndb/config/win-lib.am > $@ + @$(top_srcdir)/storage/ndb/config/win-name $@ $(noinst_LIBRARIES) + @$(top_srcdir)/storage/ndb/config/win-includes $@ $(INCLUDES) + @$(top_srcdir)/storage/ndb/config/win-sources $@ $(libdbtup_a_SOURCES) + @$(top_srcdir)/storage/ndb/config/win-libraries $@ LIB $(LDADD) diff --git a/ndb/src/kernel/blocks/dbtup/Notes.txt b/storage/ndb/src/kernel/blocks/dbtup/Notes.txt similarity index 100% rename from ndb/src/kernel/blocks/dbtup/Notes.txt rename to storage/ndb/src/kernel/blocks/dbtup/Notes.txt diff --git a/ndb/src/kernel/blocks/dbtux/Dbtux.hpp b/storage/ndb/src/kernel/blocks/dbtux/Dbtux.hpp similarity index 100% rename from ndb/src/kernel/blocks/dbtux/Dbtux.hpp rename to storage/ndb/src/kernel/blocks/dbtux/Dbtux.hpp diff --git a/ndb/src/kernel/blocks/dbtux/DbtuxCmp.cpp b/storage/ndb/src/kernel/blocks/dbtux/DbtuxCmp.cpp similarity index 100% rename from ndb/src/kernel/blocks/dbtux/DbtuxCmp.cpp rename to storage/ndb/src/kernel/blocks/dbtux/DbtuxCmp.cpp diff --git a/ndb/src/kernel/blocks/dbtux/DbtuxDebug.cpp b/storage/ndb/src/kernel/blocks/dbtux/DbtuxDebug.cpp similarity index 100% rename from ndb/src/kernel/blocks/dbtux/DbtuxDebug.cpp rename to storage/ndb/src/kernel/blocks/dbtux/DbtuxDebug.cpp diff --git a/ndb/src/kernel/blocks/dbtux/DbtuxGen.cpp b/storage/ndb/src/kernel/blocks/dbtux/DbtuxGen.cpp similarity index 100% rename from ndb/src/kernel/blocks/dbtux/DbtuxGen.cpp rename to storage/ndb/src/kernel/blocks/dbtux/DbtuxGen.cpp diff --git a/ndb/src/kernel/blocks/dbtux/DbtuxMaint.cpp b/storage/ndb/src/kernel/blocks/dbtux/DbtuxMaint.cpp similarity index 100% rename from ndb/src/kernel/blocks/dbtux/DbtuxMaint.cpp rename to storage/ndb/src/kernel/blocks/dbtux/DbtuxMaint.cpp diff --git a/ndb/src/kernel/blocks/dbtux/DbtuxMeta.cpp b/storage/ndb/src/kernel/blocks/dbtux/DbtuxMeta.cpp similarity index 100% rename from ndb/src/kernel/blocks/dbtux/DbtuxMeta.cpp rename to storage/ndb/src/kernel/blocks/dbtux/DbtuxMeta.cpp diff --git a/ndb/src/kernel/blocks/dbtux/DbtuxNode.cpp b/storage/ndb/src/kernel/blocks/dbtux/DbtuxNode.cpp similarity index 100% rename from ndb/src/kernel/blocks/dbtux/DbtuxNode.cpp rename to storage/ndb/src/kernel/blocks/dbtux/DbtuxNode.cpp diff --git a/ndb/src/kernel/blocks/dbtux/DbtuxScan.cpp b/storage/ndb/src/kernel/blocks/dbtux/DbtuxScan.cpp similarity index 100% rename from ndb/src/kernel/blocks/dbtux/DbtuxScan.cpp rename to storage/ndb/src/kernel/blocks/dbtux/DbtuxScan.cpp diff --git a/ndb/src/kernel/blocks/dbtux/DbtuxSearch.cpp b/storage/ndb/src/kernel/blocks/dbtux/DbtuxSearch.cpp similarity index 100% rename from ndb/src/kernel/blocks/dbtux/DbtuxSearch.cpp rename to storage/ndb/src/kernel/blocks/dbtux/DbtuxSearch.cpp diff --git a/ndb/src/kernel/blocks/dbtux/DbtuxTree.cpp b/storage/ndb/src/kernel/blocks/dbtux/DbtuxTree.cpp similarity index 100% rename from ndb/src/kernel/blocks/dbtux/DbtuxTree.cpp rename to storage/ndb/src/kernel/blocks/dbtux/DbtuxTree.cpp diff --git a/storage/ndb/src/kernel/blocks/dbtux/Makefile.am b/storage/ndb/src/kernel/blocks/dbtux/Makefile.am new file mode 100644 index 00000000000..12d450e8632 --- /dev/null +++ b/storage/ndb/src/kernel/blocks/dbtux/Makefile.am @@ -0,0 +1,34 @@ +noinst_LIBRARIES = libdbtux.a + +libdbtux_a_SOURCES = \ + DbtuxGen.cpp \ + DbtuxMeta.cpp \ + DbtuxMaint.cpp \ + DbtuxNode.cpp \ + DbtuxTree.cpp \ + DbtuxScan.cpp \ + DbtuxSearch.cpp \ + DbtuxCmp.cpp \ + DbtuxDebug.cpp + +INCLUDES_LOC = -I$(top_srcdir)/storage/ndb/src/kernel/blocks/dbtup + +include $(top_srcdir)/storage/ndb/config/common.mk.am +include $(top_srcdir)/storage/ndb/config/type_kernel.mk.am + +# Don't update the files from bitkeeper +%::SCCS/s.% + +windoze-dsp: libdbtux.dsp + +libdbtux.dsp: Makefile \ + $(top_srcdir)/storage/ndb/config/win-lib.am \ + $(top_srcdir)/storage/ndb/config/win-name \ + $(top_srcdir)/storage/ndb/config/win-includes \ + $(top_srcdir)/storage/ndb/config/win-sources \ + $(top_srcdir)/storage/ndb/config/win-libraries + cat $(top_srcdir)/storage/ndb/config/win-lib.am > $@ + @$(top_srcdir)/storage/ndb/config/win-name $@ $(noinst_LIBRARIES) + @$(top_srcdir)/storage/ndb/config/win-includes $@ $(INCLUDES) + @$(top_srcdir)/storage/ndb/config/win-sources $@ $(libdbtux_a_SOURCES) + @$(top_srcdir)/storage/ndb/config/win-libraries $@ LIB $(LDADD) diff --git a/ndb/src/kernel/blocks/dbtux/Times.txt b/storage/ndb/src/kernel/blocks/dbtux/Times.txt similarity index 100% rename from ndb/src/kernel/blocks/dbtux/Times.txt rename to storage/ndb/src/kernel/blocks/dbtux/Times.txt diff --git a/ndb/src/kernel/blocks/dbtux/tuxstatus.html b/storage/ndb/src/kernel/blocks/dbtux/tuxstatus.html similarity index 100% rename from ndb/src/kernel/blocks/dbtux/tuxstatus.html rename to storage/ndb/src/kernel/blocks/dbtux/tuxstatus.html diff --git a/ndb/src/kernel/blocks/dbutil/DbUtil.cpp b/storage/ndb/src/kernel/blocks/dbutil/DbUtil.cpp similarity index 100% rename from ndb/src/kernel/blocks/dbutil/DbUtil.cpp rename to storage/ndb/src/kernel/blocks/dbutil/DbUtil.cpp diff --git a/ndb/src/kernel/blocks/dbutil/DbUtil.hpp b/storage/ndb/src/kernel/blocks/dbutil/DbUtil.hpp similarity index 100% rename from ndb/src/kernel/blocks/dbutil/DbUtil.hpp rename to storage/ndb/src/kernel/blocks/dbutil/DbUtil.hpp diff --git a/ndb/src/kernel/blocks/dbutil/DbUtil.txt b/storage/ndb/src/kernel/blocks/dbutil/DbUtil.txt similarity index 100% rename from ndb/src/kernel/blocks/dbutil/DbUtil.txt rename to storage/ndb/src/kernel/blocks/dbutil/DbUtil.txt diff --git a/storage/ndb/src/kernel/blocks/dbutil/Makefile.am b/storage/ndb/src/kernel/blocks/dbutil/Makefile.am new file mode 100644 index 00000000000..4a0b180283e --- /dev/null +++ b/storage/ndb/src/kernel/blocks/dbutil/Makefile.am @@ -0,0 +1,23 @@ +noinst_LIBRARIES = libdbutil.a + +libdbutil_a_SOURCES = DbUtil.cpp + +include $(top_srcdir)/storage/ndb/config/common.mk.am +include $(top_srcdir)/storage/ndb/config/type_kernel.mk.am + +# Don't update the files from bitkeeper +%::SCCS/s.% + +windoze-dsp: libdbutil.dsp + +libdbutil.dsp: Makefile \ + $(top_srcdir)/storage/ndb/config/win-lib.am \ + $(top_srcdir)/storage/ndb/config/win-name \ + $(top_srcdir)/storage/ndb/config/win-includes \ + $(top_srcdir)/storage/ndb/config/win-sources \ + $(top_srcdir)/storage/ndb/config/win-libraries + cat $(top_srcdir)/storage/ndb/config/win-lib.am > $@ + @$(top_srcdir)/storage/ndb/config/win-name $@ $(noinst_LIBRARIES) + @$(top_srcdir)/storage/ndb/config/win-includes $@ $(INCLUDES) + @$(top_srcdir)/storage/ndb/config/win-sources $@ $(libdbutil_a_SOURCES) + @$(top_srcdir)/storage/ndb/config/win-libraries $@ LIB $(LDADD) diff --git a/ndb/src/kernel/blocks/grep/Grep.cpp b/storage/ndb/src/kernel/blocks/grep/Grep.cpp similarity index 100% rename from ndb/src/kernel/blocks/grep/Grep.cpp rename to storage/ndb/src/kernel/blocks/grep/Grep.cpp diff --git a/ndb/src/kernel/blocks/grep/Grep.hpp b/storage/ndb/src/kernel/blocks/grep/Grep.hpp similarity index 100% rename from ndb/src/kernel/blocks/grep/Grep.hpp rename to storage/ndb/src/kernel/blocks/grep/Grep.hpp diff --git a/ndb/src/kernel/blocks/grep/GrepInit.cpp b/storage/ndb/src/kernel/blocks/grep/GrepInit.cpp similarity index 100% rename from ndb/src/kernel/blocks/grep/GrepInit.cpp rename to storage/ndb/src/kernel/blocks/grep/GrepInit.cpp diff --git a/storage/ndb/src/kernel/blocks/grep/Makefile.am b/storage/ndb/src/kernel/blocks/grep/Makefile.am new file mode 100644 index 00000000000..92d75d002a5 --- /dev/null +++ b/storage/ndb/src/kernel/blocks/grep/Makefile.am @@ -0,0 +1,23 @@ +noinst_LIBRARIES = libgrep.a + +libgrep_a_SOURCES = Grep.cpp GrepInit.cpp + +include $(top_srcdir)/storage/ndb/config/common.mk.am +include $(top_srcdir)/storage/ndb/config/type_kernel.mk.am + +# Don't update the files from bitkeeper +%::SCCS/s.% + +windoze-dsp: libgrep.dsp + +libgrep.dsp: Makefile \ + $(top_srcdir)/storage/ndb/config/win-lib.am \ + $(top_srcdir)/storage/ndb/config/win-name \ + $(top_srcdir)/storage/ndb/config/win-includes \ + $(top_srcdir)/storage/ndb/config/win-sources \ + $(top_srcdir)/storage/ndb/config/win-libraries + cat $(top_srcdir)/storage/ndb/config/win-lib.am > $@ + @$(top_srcdir)/storage/ndb/config/win-name $@ $(noinst_LIBRARIES) + @$(top_srcdir)/storage/ndb/config/win-includes $@ $(INCLUDES) + @$(top_srcdir)/storage/ndb/config/win-sources $@ $(libgrep_a_SOURCES) + @$(top_srcdir)/storage/ndb/config/win-libraries $@ LIB $(LDADD) diff --git a/ndb/src/kernel/blocks/grep/systab_test/Makefile b/storage/ndb/src/kernel/blocks/grep/systab_test/Makefile similarity index 100% rename from ndb/src/kernel/blocks/grep/systab_test/Makefile rename to storage/ndb/src/kernel/blocks/grep/systab_test/Makefile diff --git a/ndb/src/kernel/blocks/grep/systab_test/grep_systab_test.cpp b/storage/ndb/src/kernel/blocks/grep/systab_test/grep_systab_test.cpp similarity index 100% rename from ndb/src/kernel/blocks/grep/systab_test/grep_systab_test.cpp rename to storage/ndb/src/kernel/blocks/grep/systab_test/grep_systab_test.cpp diff --git a/ndb/src/kernel/blocks/mutexes.hpp b/storage/ndb/src/kernel/blocks/mutexes.hpp similarity index 100% rename from ndb/src/kernel/blocks/mutexes.hpp rename to storage/ndb/src/kernel/blocks/mutexes.hpp diff --git a/storage/ndb/src/kernel/blocks/ndbcntr/Makefile.am b/storage/ndb/src/kernel/blocks/ndbcntr/Makefile.am new file mode 100644 index 00000000000..7bdcf046a19 --- /dev/null +++ b/storage/ndb/src/kernel/blocks/ndbcntr/Makefile.am @@ -0,0 +1,26 @@ +noinst_LIBRARIES = libndbcntr.a + +libndbcntr_a_SOURCES = \ + NdbcntrInit.cpp \ + NdbcntrSysTable.cpp \ + NdbcntrMain.cpp + +include $(top_srcdir)/storage/ndb/config/common.mk.am +include $(top_srcdir)/storage/ndb/config/type_kernel.mk.am + +# Don't update the files from bitkeeper +%::SCCS/s.% + +windoze-dsp: libndbcntr.dsp + +libndbcntr.dsp: Makefile \ + $(top_srcdir)/storage/ndb/config/win-lib.am \ + $(top_srcdir)/storage/ndb/config/win-name \ + $(top_srcdir)/storage/ndb/config/win-includes \ + $(top_srcdir)/storage/ndb/config/win-sources \ + $(top_srcdir)/storage/ndb/config/win-libraries + cat $(top_srcdir)/storage/ndb/config/win-lib.am > $@ + @$(top_srcdir)/storage/ndb/config/win-name $@ $(noinst_LIBRARIES) + @$(top_srcdir)/storage/ndb/config/win-includes $@ $(INCLUDES) + @$(top_srcdir)/storage/ndb/config/win-sources $@ $(libstorage/ndbcntr_a_SOURCES) + @$(top_srcdir)/storage/ndb/config/win-libraries $@ LIB $(LDADD) diff --git a/ndb/src/kernel/blocks/ndbcntr/Ndbcntr.hpp b/storage/ndb/src/kernel/blocks/ndbcntr/Ndbcntr.hpp similarity index 100% rename from ndb/src/kernel/blocks/ndbcntr/Ndbcntr.hpp rename to storage/ndb/src/kernel/blocks/ndbcntr/Ndbcntr.hpp diff --git a/ndb/src/kernel/blocks/ndbcntr/NdbcntrInit.cpp b/storage/ndb/src/kernel/blocks/ndbcntr/NdbcntrInit.cpp similarity index 100% rename from ndb/src/kernel/blocks/ndbcntr/NdbcntrInit.cpp rename to storage/ndb/src/kernel/blocks/ndbcntr/NdbcntrInit.cpp diff --git a/ndb/src/kernel/blocks/ndbcntr/NdbcntrMain.cpp b/storage/ndb/src/kernel/blocks/ndbcntr/NdbcntrMain.cpp similarity index 100% rename from ndb/src/kernel/blocks/ndbcntr/NdbcntrMain.cpp rename to storage/ndb/src/kernel/blocks/ndbcntr/NdbcntrMain.cpp diff --git a/ndb/src/kernel/blocks/ndbcntr/NdbcntrSysTable.cpp b/storage/ndb/src/kernel/blocks/ndbcntr/NdbcntrSysTable.cpp similarity index 100% rename from ndb/src/kernel/blocks/ndbcntr/NdbcntrSysTable.cpp rename to storage/ndb/src/kernel/blocks/ndbcntr/NdbcntrSysTable.cpp diff --git a/ndb/src/kernel/blocks/ndbfs/AsyncFile.cpp b/storage/ndb/src/kernel/blocks/ndbfs/AsyncFile.cpp similarity index 100% rename from ndb/src/kernel/blocks/ndbfs/AsyncFile.cpp rename to storage/ndb/src/kernel/blocks/ndbfs/AsyncFile.cpp diff --git a/ndb/src/kernel/blocks/ndbfs/AsyncFile.hpp b/storage/ndb/src/kernel/blocks/ndbfs/AsyncFile.hpp similarity index 100% rename from ndb/src/kernel/blocks/ndbfs/AsyncFile.hpp rename to storage/ndb/src/kernel/blocks/ndbfs/AsyncFile.hpp diff --git a/ndb/src/kernel/blocks/ndbfs/AsyncFileTest/AsyncFileTest.cpp b/storage/ndb/src/kernel/blocks/ndbfs/AsyncFileTest/AsyncFileTest.cpp similarity index 100% rename from ndb/src/kernel/blocks/ndbfs/AsyncFileTest/AsyncFileTest.cpp rename to storage/ndb/src/kernel/blocks/ndbfs/AsyncFileTest/AsyncFileTest.cpp diff --git a/ndb/src/kernel/blocks/ndbfs/AsyncFileTest/Makefile b/storage/ndb/src/kernel/blocks/ndbfs/AsyncFileTest/Makefile similarity index 100% rename from ndb/src/kernel/blocks/ndbfs/AsyncFileTest/Makefile rename to storage/ndb/src/kernel/blocks/ndbfs/AsyncFileTest/Makefile diff --git a/ndb/src/kernel/blocks/ndbfs/CircularIndex.cpp b/storage/ndb/src/kernel/blocks/ndbfs/CircularIndex.cpp similarity index 100% rename from ndb/src/kernel/blocks/ndbfs/CircularIndex.cpp rename to storage/ndb/src/kernel/blocks/ndbfs/CircularIndex.cpp diff --git a/ndb/src/kernel/blocks/ndbfs/CircularIndex.hpp b/storage/ndb/src/kernel/blocks/ndbfs/CircularIndex.hpp similarity index 100% rename from ndb/src/kernel/blocks/ndbfs/CircularIndex.hpp rename to storage/ndb/src/kernel/blocks/ndbfs/CircularIndex.hpp diff --git a/ndb/src/kernel/blocks/ndbfs/Filename.cpp b/storage/ndb/src/kernel/blocks/ndbfs/Filename.cpp similarity index 100% rename from ndb/src/kernel/blocks/ndbfs/Filename.cpp rename to storage/ndb/src/kernel/blocks/ndbfs/Filename.cpp diff --git a/ndb/src/kernel/blocks/ndbfs/Filename.hpp b/storage/ndb/src/kernel/blocks/ndbfs/Filename.hpp similarity index 100% rename from ndb/src/kernel/blocks/ndbfs/Filename.hpp rename to storage/ndb/src/kernel/blocks/ndbfs/Filename.hpp diff --git a/storage/ndb/src/kernel/blocks/ndbfs/Makefile.am b/storage/ndb/src/kernel/blocks/ndbfs/Makefile.am new file mode 100644 index 00000000000..b4233720003 --- /dev/null +++ b/storage/ndb/src/kernel/blocks/ndbfs/Makefile.am @@ -0,0 +1,27 @@ +noinst_LIBRARIES = libndbfs.a + +libndbfs_a_SOURCES = \ + AsyncFile.cpp \ + Ndbfs.cpp VoidFs.cpp \ + Filename.cpp \ + CircularIndex.cpp + +include $(top_srcdir)/storage/ndb/config/common.mk.am +include $(top_srcdir)/storage/ndb/config/type_kernel.mk.am + +# Don't update the files from bitkeeper +%::SCCS/s.% + +windoze-dsp: libndbfs.dsp + +libndbfs.dsp: Makefile \ + $(top_srcdir)/storage/ndb/config/win-lib.am \ + $(top_srcdir)/storage/ndb/config/win-name \ + $(top_srcdir)/storage/ndb/config/win-includes \ + $(top_srcdir)/storage/ndb/config/win-sources \ + $(top_srcdir)/storage/ndb/config/win-libraries + cat $(top_srcdir)/storage/ndb/config/win-lib.am > $@ + @$(top_srcdir)/storage/ndb/config/win-name $@ $(noinst_LIBRARIES) + @$(top_srcdir)/storage/ndb/config/win-includes $@ $(INCLUDES) + @$(top_srcdir)/storage/ndb/config/win-sources $@ $(libstorage/ndbfs_a_SOURCES) + @$(top_srcdir)/storage/ndb/config/win-libraries $@ LIB $(LDADD) diff --git a/ndb/src/kernel/blocks/ndbfs/MemoryChannel.cpp b/storage/ndb/src/kernel/blocks/ndbfs/MemoryChannel.cpp similarity index 100% rename from ndb/src/kernel/blocks/ndbfs/MemoryChannel.cpp rename to storage/ndb/src/kernel/blocks/ndbfs/MemoryChannel.cpp diff --git a/ndb/src/kernel/blocks/ndbfs/MemoryChannel.hpp b/storage/ndb/src/kernel/blocks/ndbfs/MemoryChannel.hpp similarity index 100% rename from ndb/src/kernel/blocks/ndbfs/MemoryChannel.hpp rename to storage/ndb/src/kernel/blocks/ndbfs/MemoryChannel.hpp diff --git a/ndb/src/kernel/blocks/ndbfs/MemoryChannelOSE.hpp b/storage/ndb/src/kernel/blocks/ndbfs/MemoryChannelOSE.hpp similarity index 100% rename from ndb/src/kernel/blocks/ndbfs/MemoryChannelOSE.hpp rename to storage/ndb/src/kernel/blocks/ndbfs/MemoryChannelOSE.hpp diff --git a/ndb/src/kernel/blocks/ndbfs/MemoryChannelTest/Makefile b/storage/ndb/src/kernel/blocks/ndbfs/MemoryChannelTest/Makefile similarity index 100% rename from ndb/src/kernel/blocks/ndbfs/MemoryChannelTest/Makefile rename to storage/ndb/src/kernel/blocks/ndbfs/MemoryChannelTest/Makefile diff --git a/ndb/src/kernel/blocks/ndbfs/MemoryChannelTest/MemoryChannelTest.cpp b/storage/ndb/src/kernel/blocks/ndbfs/MemoryChannelTest/MemoryChannelTest.cpp similarity index 100% rename from ndb/src/kernel/blocks/ndbfs/MemoryChannelTest/MemoryChannelTest.cpp rename to storage/ndb/src/kernel/blocks/ndbfs/MemoryChannelTest/MemoryChannelTest.cpp diff --git a/ndb/src/kernel/blocks/ndbfs/Ndbfs.cpp b/storage/ndb/src/kernel/blocks/ndbfs/Ndbfs.cpp similarity index 100% rename from ndb/src/kernel/blocks/ndbfs/Ndbfs.cpp rename to storage/ndb/src/kernel/blocks/ndbfs/Ndbfs.cpp diff --git a/ndb/src/kernel/blocks/ndbfs/Ndbfs.hpp b/storage/ndb/src/kernel/blocks/ndbfs/Ndbfs.hpp similarity index 100% rename from ndb/src/kernel/blocks/ndbfs/Ndbfs.hpp rename to storage/ndb/src/kernel/blocks/ndbfs/Ndbfs.hpp diff --git a/ndb/src/kernel/blocks/ndbfs/OpenFiles.hpp b/storage/ndb/src/kernel/blocks/ndbfs/OpenFiles.hpp similarity index 100% rename from ndb/src/kernel/blocks/ndbfs/OpenFiles.hpp rename to storage/ndb/src/kernel/blocks/ndbfs/OpenFiles.hpp diff --git a/ndb/src/kernel/blocks/ndbfs/Pool.hpp b/storage/ndb/src/kernel/blocks/ndbfs/Pool.hpp similarity index 100% rename from ndb/src/kernel/blocks/ndbfs/Pool.hpp rename to storage/ndb/src/kernel/blocks/ndbfs/Pool.hpp diff --git a/ndb/src/kernel/blocks/ndbfs/VoidFs.cpp b/storage/ndb/src/kernel/blocks/ndbfs/VoidFs.cpp similarity index 100% rename from ndb/src/kernel/blocks/ndbfs/VoidFs.cpp rename to storage/ndb/src/kernel/blocks/ndbfs/VoidFs.cpp diff --git a/ndb/src/kernel/blocks/new-block.tar.gz b/storage/ndb/src/kernel/blocks/new-block.tar.gz similarity index 100% rename from ndb/src/kernel/blocks/new-block.tar.gz rename to storage/ndb/src/kernel/blocks/new-block.tar.gz diff --git a/storage/ndb/src/kernel/blocks/qmgr/Makefile.am b/storage/ndb/src/kernel/blocks/qmgr/Makefile.am new file mode 100644 index 00000000000..577a31348ad --- /dev/null +++ b/storage/ndb/src/kernel/blocks/qmgr/Makefile.am @@ -0,0 +1,25 @@ +noinst_LIBRARIES = libqmgr.a + +libqmgr_a_SOURCES = \ + QmgrInit.cpp \ + QmgrMain.cpp + +include $(top_srcdir)/storage/ndb/config/common.mk.am +include $(top_srcdir)/storage/ndb/config/type_kernel.mk.am + +# Don't update the files from bitkeeper +%::SCCS/s.% + +windoze-dsp: libqmgr.dsp + +libqmgr.dsp: Makefile \ + $(top_srcdir)/storage/ndb/config/win-lib.am \ + $(top_srcdir)/storage/ndb/config/win-name \ + $(top_srcdir)/storage/ndb/config/win-includes \ + $(top_srcdir)/storage/ndb/config/win-sources \ + $(top_srcdir)/storage/ndb/config/win-libraries + cat $(top_srcdir)/storage/ndb/config/win-lib.am > $@ + @$(top_srcdir)/storage/ndb/config/win-name $@ $(noinst_LIBRARIES) + @$(top_srcdir)/storage/ndb/config/win-includes $@ $(INCLUDES) + @$(top_srcdir)/storage/ndb/config/win-sources $@ $(libqmgr_a_SOURCES) + @$(top_srcdir)/storage/ndb/config/win-libraries $@ LIB $(LDADD) diff --git a/ndb/src/kernel/blocks/qmgr/Qmgr.hpp b/storage/ndb/src/kernel/blocks/qmgr/Qmgr.hpp similarity index 100% rename from ndb/src/kernel/blocks/qmgr/Qmgr.hpp rename to storage/ndb/src/kernel/blocks/qmgr/Qmgr.hpp diff --git a/ndb/src/kernel/blocks/qmgr/QmgrInit.cpp b/storage/ndb/src/kernel/blocks/qmgr/QmgrInit.cpp similarity index 100% rename from ndb/src/kernel/blocks/qmgr/QmgrInit.cpp rename to storage/ndb/src/kernel/blocks/qmgr/QmgrInit.cpp diff --git a/ndb/src/kernel/blocks/qmgr/QmgrMain.cpp b/storage/ndb/src/kernel/blocks/qmgr/QmgrMain.cpp similarity index 100% rename from ndb/src/kernel/blocks/qmgr/QmgrMain.cpp rename to storage/ndb/src/kernel/blocks/qmgr/QmgrMain.cpp diff --git a/ndb/src/kernel/blocks/qmgr/timer.hpp b/storage/ndb/src/kernel/blocks/qmgr/timer.hpp similarity index 100% rename from ndb/src/kernel/blocks/qmgr/timer.hpp rename to storage/ndb/src/kernel/blocks/qmgr/timer.hpp diff --git a/storage/ndb/src/kernel/blocks/suma/Makefile.am b/storage/ndb/src/kernel/blocks/suma/Makefile.am new file mode 100644 index 00000000000..6fd7033e068 --- /dev/null +++ b/storage/ndb/src/kernel/blocks/suma/Makefile.am @@ -0,0 +1,23 @@ +noinst_LIBRARIES = libsuma.a + +libsuma_a_SOURCES = Suma.cpp SumaInit.cpp + +include $(top_srcdir)/storage/ndb/config/common.mk.am +include $(top_srcdir)/storage/ndb/config/type_kernel.mk.am + +# Don't update the files from bitkeeper +%::SCCS/s.% + +windoze-dsp: libsuma.dsp + +libsuma.dsp: Makefile \ + $(top_srcdir)/storage/ndb/config/win-lib.am \ + $(top_srcdir)/storage/ndb/config/win-name \ + $(top_srcdir)/storage/ndb/config/win-includes \ + $(top_srcdir)/storage/ndb/config/win-sources \ + $(top_srcdir)/storage/ndb/config/win-libraries + cat $(top_srcdir)/storage/ndb/config/win-lib.am > $@ + @$(top_srcdir)/storage/ndb/config/win-name $@ $(noinst_LIBRARIES) + @$(top_srcdir)/storage/ndb/config/win-includes $@ $(INCLUDES) + @$(top_srcdir)/storage/ndb/config/win-sources $@ $(libsuma_a_SOURCES) + @$(top_srcdir)/storage/ndb/config/win-libraries $@ LIB $(LDADD) diff --git a/ndb/src/kernel/blocks/suma/Suma.cpp b/storage/ndb/src/kernel/blocks/suma/Suma.cpp similarity index 100% rename from ndb/src/kernel/blocks/suma/Suma.cpp rename to storage/ndb/src/kernel/blocks/suma/Suma.cpp diff --git a/ndb/src/kernel/blocks/suma/Suma.hpp b/storage/ndb/src/kernel/blocks/suma/Suma.hpp similarity index 100% rename from ndb/src/kernel/blocks/suma/Suma.hpp rename to storage/ndb/src/kernel/blocks/suma/Suma.hpp diff --git a/ndb/src/kernel/blocks/suma/Suma.txt b/storage/ndb/src/kernel/blocks/suma/Suma.txt similarity index 100% rename from ndb/src/kernel/blocks/suma/Suma.txt rename to storage/ndb/src/kernel/blocks/suma/Suma.txt diff --git a/ndb/src/kernel/blocks/suma/SumaInit.cpp b/storage/ndb/src/kernel/blocks/suma/SumaInit.cpp similarity index 100% rename from ndb/src/kernel/blocks/suma/SumaInit.cpp rename to storage/ndb/src/kernel/blocks/suma/SumaInit.cpp diff --git a/storage/ndb/src/kernel/blocks/trix/Makefile.am b/storage/ndb/src/kernel/blocks/trix/Makefile.am new file mode 100644 index 00000000000..886a9dc60f0 --- /dev/null +++ b/storage/ndb/src/kernel/blocks/trix/Makefile.am @@ -0,0 +1,23 @@ +noinst_LIBRARIES = libtrix.a + +libtrix_a_SOURCES = Trix.cpp + +include $(top_srcdir)/storage/ndb/config/common.mk.am +include $(top_srcdir)/storage/ndb/config/type_kernel.mk.am + +# Don't update the files from bitkeeper +%::SCCS/s.% + +windoze-dsp: libtrix.dsp + +libtrix.dsp: Makefile \ + $(top_srcdir)/storage/ndb/config/win-lib.am \ + $(top_srcdir)/storage/ndb/config/win-name \ + $(top_srcdir)/storage/ndb/config/win-includes \ + $(top_srcdir)/storage/ndb/config/win-sources \ + $(top_srcdir)/storage/ndb/config/win-libraries + cat $(top_srcdir)/storage/ndb/config/win-lib.am > $@ + @$(top_srcdir)/storage/ndb/config/win-name $@ $(noinst_LIBRARIES) + @$(top_srcdir)/storage/ndb/config/win-includes $@ $(INCLUDES) + @$(top_srcdir)/storage/ndb/config/win-sources $@ $(libtrix_a_SOURCES) + @$(top_srcdir)/storage/ndb/config/win-libraries $@ LIB $(LDADD) diff --git a/ndb/src/kernel/blocks/trix/Trix.cpp b/storage/ndb/src/kernel/blocks/trix/Trix.cpp similarity index 100% rename from ndb/src/kernel/blocks/trix/Trix.cpp rename to storage/ndb/src/kernel/blocks/trix/Trix.cpp diff --git a/ndb/src/kernel/blocks/trix/Trix.hpp b/storage/ndb/src/kernel/blocks/trix/Trix.hpp similarity index 100% rename from ndb/src/kernel/blocks/trix/Trix.hpp rename to storage/ndb/src/kernel/blocks/trix/Trix.hpp diff --git a/ndb/src/kernel/error/Error.hpp b/storage/ndb/src/kernel/error/Error.hpp similarity index 100% rename from ndb/src/kernel/error/Error.hpp rename to storage/ndb/src/kernel/error/Error.hpp diff --git a/ndb/src/kernel/error/ErrorHandlingMacros.hpp b/storage/ndb/src/kernel/error/ErrorHandlingMacros.hpp similarity index 100% rename from ndb/src/kernel/error/ErrorHandlingMacros.hpp rename to storage/ndb/src/kernel/error/ErrorHandlingMacros.hpp diff --git a/ndb/src/kernel/error/ErrorMessages.cpp b/storage/ndb/src/kernel/error/ErrorMessages.cpp similarity index 100% rename from ndb/src/kernel/error/ErrorMessages.cpp rename to storage/ndb/src/kernel/error/ErrorMessages.cpp diff --git a/ndb/src/kernel/error/ErrorMessages.hpp b/storage/ndb/src/kernel/error/ErrorMessages.hpp similarity index 100% rename from ndb/src/kernel/error/ErrorMessages.hpp rename to storage/ndb/src/kernel/error/ErrorMessages.hpp diff --git a/ndb/src/kernel/error/ErrorReporter.cpp b/storage/ndb/src/kernel/error/ErrorReporter.cpp similarity index 100% rename from ndb/src/kernel/error/ErrorReporter.cpp rename to storage/ndb/src/kernel/error/ErrorReporter.cpp diff --git a/ndb/src/kernel/error/ErrorReporter.hpp b/storage/ndb/src/kernel/error/ErrorReporter.hpp similarity index 100% rename from ndb/src/kernel/error/ErrorReporter.hpp rename to storage/ndb/src/kernel/error/ErrorReporter.hpp diff --git a/storage/ndb/src/kernel/error/Makefile.am b/storage/ndb/src/kernel/error/Makefile.am new file mode 100644 index 00000000000..b6e3b7962fa --- /dev/null +++ b/storage/ndb/src/kernel/error/Makefile.am @@ -0,0 +1,25 @@ +noinst_LIBRARIES = liberror.a + +liberror_a_SOURCES = TimeModule.cpp \ + ErrorReporter.cpp \ + ErrorMessages.cpp + +include $(top_srcdir)/storage/ndb/config/common.mk.am +include $(top_srcdir)/storage/ndb/config/type_kernel.mk.am + +# Don't update the files from bitkeeper +%::SCCS/s.% + +windoze-dsp: liberror.dsp + +liberror.dsp: Makefile \ + $(top_srcdir)/storage/ndb/config/win-lib.am \ + $(top_srcdir)/storage/ndb/config/win-name \ + $(top_srcdir)/storage/ndb/config/win-includes \ + $(top_srcdir)/storage/ndb/config/win-sources \ + $(top_srcdir)/storage/ndb/config/win-libraries + cat $(top_srcdir)/storage/ndb/config/win-lib.am > $@ + @$(top_srcdir)/storage/ndb/config/win-name $@ $(noinst_LIBRARIES) + @$(top_srcdir)/storage/ndb/config/win-includes $@ $(INCLUDES) + @$(top_srcdir)/storage/ndb/config/win-sources $@ $(liberror_a_SOURCES) + @$(top_srcdir)/storage/ndb/config/win-libraries $@ LIB $(LDADD) diff --git a/ndb/src/kernel/error/TimeModule.cpp b/storage/ndb/src/kernel/error/TimeModule.cpp similarity index 100% rename from ndb/src/kernel/error/TimeModule.cpp rename to storage/ndb/src/kernel/error/TimeModule.cpp diff --git a/ndb/src/kernel/error/TimeModule.hpp b/storage/ndb/src/kernel/error/TimeModule.hpp similarity index 100% rename from ndb/src/kernel/error/TimeModule.hpp rename to storage/ndb/src/kernel/error/TimeModule.hpp diff --git a/ndb/src/kernel/main.cpp b/storage/ndb/src/kernel/main.cpp similarity index 100% rename from ndb/src/kernel/main.cpp rename to storage/ndb/src/kernel/main.cpp diff --git a/ndb/src/kernel/vm/Array.hpp b/storage/ndb/src/kernel/vm/Array.hpp similarity index 100% rename from ndb/src/kernel/vm/Array.hpp rename to storage/ndb/src/kernel/vm/Array.hpp diff --git a/ndb/src/kernel/vm/ArrayFifoList.hpp b/storage/ndb/src/kernel/vm/ArrayFifoList.hpp similarity index 100% rename from ndb/src/kernel/vm/ArrayFifoList.hpp rename to storage/ndb/src/kernel/vm/ArrayFifoList.hpp diff --git a/ndb/src/kernel/vm/ArrayList.hpp b/storage/ndb/src/kernel/vm/ArrayList.hpp similarity index 100% rename from ndb/src/kernel/vm/ArrayList.hpp rename to storage/ndb/src/kernel/vm/ArrayList.hpp diff --git a/ndb/src/kernel/vm/ArrayPool.hpp b/storage/ndb/src/kernel/vm/ArrayPool.hpp similarity index 100% rename from ndb/src/kernel/vm/ArrayPool.hpp rename to storage/ndb/src/kernel/vm/ArrayPool.hpp diff --git a/ndb/src/kernel/vm/CArray.hpp b/storage/ndb/src/kernel/vm/CArray.hpp similarity index 100% rename from ndb/src/kernel/vm/CArray.hpp rename to storage/ndb/src/kernel/vm/CArray.hpp diff --git a/ndb/src/kernel/vm/Callback.hpp b/storage/ndb/src/kernel/vm/Callback.hpp similarity index 100% rename from ndb/src/kernel/vm/Callback.hpp rename to storage/ndb/src/kernel/vm/Callback.hpp diff --git a/ndb/src/kernel/vm/ClusterConfiguration.cpp b/storage/ndb/src/kernel/vm/ClusterConfiguration.cpp similarity index 100% rename from ndb/src/kernel/vm/ClusterConfiguration.cpp rename to storage/ndb/src/kernel/vm/ClusterConfiguration.cpp diff --git a/ndb/src/kernel/vm/ClusterConfiguration.hpp b/storage/ndb/src/kernel/vm/ClusterConfiguration.hpp similarity index 100% rename from ndb/src/kernel/vm/ClusterConfiguration.hpp rename to storage/ndb/src/kernel/vm/ClusterConfiguration.hpp diff --git a/ndb/src/kernel/vm/Configuration.cpp b/storage/ndb/src/kernel/vm/Configuration.cpp similarity index 100% rename from ndb/src/kernel/vm/Configuration.cpp rename to storage/ndb/src/kernel/vm/Configuration.cpp diff --git a/ndb/src/kernel/vm/Configuration.hpp b/storage/ndb/src/kernel/vm/Configuration.hpp similarity index 100% rename from ndb/src/kernel/vm/Configuration.hpp rename to storage/ndb/src/kernel/vm/Configuration.hpp diff --git a/ndb/src/kernel/vm/DLFifoList.hpp b/storage/ndb/src/kernel/vm/DLFifoList.hpp similarity index 100% rename from ndb/src/kernel/vm/DLFifoList.hpp rename to storage/ndb/src/kernel/vm/DLFifoList.hpp diff --git a/ndb/src/kernel/vm/DLHashTable.hpp b/storage/ndb/src/kernel/vm/DLHashTable.hpp similarity index 100% rename from ndb/src/kernel/vm/DLHashTable.hpp rename to storage/ndb/src/kernel/vm/DLHashTable.hpp diff --git a/ndb/src/kernel/vm/DLHashTable2.hpp b/storage/ndb/src/kernel/vm/DLHashTable2.hpp similarity index 100% rename from ndb/src/kernel/vm/DLHashTable2.hpp rename to storage/ndb/src/kernel/vm/DLHashTable2.hpp diff --git a/ndb/src/kernel/vm/DLList.hpp b/storage/ndb/src/kernel/vm/DLList.hpp similarity index 100% rename from ndb/src/kernel/vm/DLList.hpp rename to storage/ndb/src/kernel/vm/DLList.hpp diff --git a/ndb/src/kernel/vm/DataBuffer.hpp b/storage/ndb/src/kernel/vm/DataBuffer.hpp similarity index 100% rename from ndb/src/kernel/vm/DataBuffer.hpp rename to storage/ndb/src/kernel/vm/DataBuffer.hpp diff --git a/ndb/src/kernel/vm/Emulator.cpp b/storage/ndb/src/kernel/vm/Emulator.cpp similarity index 100% rename from ndb/src/kernel/vm/Emulator.cpp rename to storage/ndb/src/kernel/vm/Emulator.cpp diff --git a/ndb/src/kernel/vm/Emulator.hpp b/storage/ndb/src/kernel/vm/Emulator.hpp similarity index 100% rename from ndb/src/kernel/vm/Emulator.hpp rename to storage/ndb/src/kernel/vm/Emulator.hpp diff --git a/ndb/src/kernel/vm/FastScheduler.cpp b/storage/ndb/src/kernel/vm/FastScheduler.cpp similarity index 100% rename from ndb/src/kernel/vm/FastScheduler.cpp rename to storage/ndb/src/kernel/vm/FastScheduler.cpp diff --git a/ndb/src/kernel/vm/FastScheduler.hpp b/storage/ndb/src/kernel/vm/FastScheduler.hpp similarity index 100% rename from ndb/src/kernel/vm/FastScheduler.hpp rename to storage/ndb/src/kernel/vm/FastScheduler.hpp diff --git a/ndb/src/kernel/vm/GlobalData.hpp b/storage/ndb/src/kernel/vm/GlobalData.hpp similarity index 100% rename from ndb/src/kernel/vm/GlobalData.hpp rename to storage/ndb/src/kernel/vm/GlobalData.hpp diff --git a/ndb/src/kernel/vm/KeyTable.hpp b/storage/ndb/src/kernel/vm/KeyTable.hpp similarity index 100% rename from ndb/src/kernel/vm/KeyTable.hpp rename to storage/ndb/src/kernel/vm/KeyTable.hpp diff --git a/ndb/src/kernel/vm/KeyTable2.hpp b/storage/ndb/src/kernel/vm/KeyTable2.hpp similarity index 100% rename from ndb/src/kernel/vm/KeyTable2.hpp rename to storage/ndb/src/kernel/vm/KeyTable2.hpp diff --git a/ndb/src/kernel/vm/LongSignal.hpp b/storage/ndb/src/kernel/vm/LongSignal.hpp similarity index 100% rename from ndb/src/kernel/vm/LongSignal.hpp rename to storage/ndb/src/kernel/vm/LongSignal.hpp diff --git a/storage/ndb/src/kernel/vm/Makefile.am b/storage/ndb/src/kernel/vm/Makefile.am new file mode 100644 index 00000000000..01857b01d80 --- /dev/null +++ b/storage/ndb/src/kernel/vm/Makefile.am @@ -0,0 +1,43 @@ +#SUBDIRS = testCopy testDataBuffer testSimplePropertiesSection +#ifneq ($(USE_EDITLINE), N) +#DIRS += testLongSig +#endif + +noinst_LIBRARIES = libkernel.a + +libkernel_a_SOURCES = \ + SimulatedBlock.cpp \ + FastScheduler.cpp \ + TimeQueue.cpp \ + VMSignal.cpp \ + ThreadConfig.cpp \ + TransporterCallback.cpp \ + Emulator.cpp \ + Configuration.cpp \ + WatchDog.cpp \ + SimplePropertiesSection.cpp \ + SectionReader.cpp \ + MetaData.cpp \ + Mutex.cpp SafeCounter.cpp + +INCLUDES_LOC = -I$(top_srcdir)/storage/ndb/src/mgmapi + +include $(top_srcdir)/storage/ndb/config/common.mk.am +include $(top_srcdir)/storage/ndb/config/type_kernel.mk.am + +# Don't update the files from bitkeeper +%::SCCS/s.% + +windoze-dsp: libkernel.dsp + +libkernel.dsp: Makefile \ + $(top_srcdir)/storage/ndb/config/win-lib.am \ + $(top_srcdir)/storage/ndb/config/win-name \ + $(top_srcdir)/storage/ndb/config/win-includes \ + $(top_srcdir)/storage/ndb/config/win-sources \ + $(top_srcdir)/storage/ndb/config/win-libraries + cat $(top_srcdir)/storage/ndb/config/win-lib.am > $@ + @$(top_srcdir)/storage/ndb/config/win-name $@ $(noinst_LIBRARIES) + @$(top_srcdir)/storage/ndb/config/win-includes $@ $(INCLUDES) + @$(top_srcdir)/storage/ndb/config/win-sources $@ $(libkernel_a_SOURCES) + @$(top_srcdir)/storage/ndb/config/win-libraries $@ LIB $(LDADD) diff --git a/ndb/src/kernel/vm/MetaData.cpp b/storage/ndb/src/kernel/vm/MetaData.cpp similarity index 100% rename from ndb/src/kernel/vm/MetaData.cpp rename to storage/ndb/src/kernel/vm/MetaData.cpp diff --git a/ndb/src/kernel/vm/MetaData.hpp b/storage/ndb/src/kernel/vm/MetaData.hpp similarity index 100% rename from ndb/src/kernel/vm/MetaData.hpp rename to storage/ndb/src/kernel/vm/MetaData.hpp diff --git a/ndb/src/kernel/vm/Mutex.cpp b/storage/ndb/src/kernel/vm/Mutex.cpp similarity index 100% rename from ndb/src/kernel/vm/Mutex.cpp rename to storage/ndb/src/kernel/vm/Mutex.cpp diff --git a/ndb/src/kernel/vm/Mutex.hpp b/storage/ndb/src/kernel/vm/Mutex.hpp similarity index 100% rename from ndb/src/kernel/vm/Mutex.hpp rename to storage/ndb/src/kernel/vm/Mutex.hpp diff --git a/ndb/src/kernel/vm/Prio.hpp b/storage/ndb/src/kernel/vm/Prio.hpp similarity index 100% rename from ndb/src/kernel/vm/Prio.hpp rename to storage/ndb/src/kernel/vm/Prio.hpp diff --git a/ndb/src/kernel/vm/RequestTracker.hpp b/storage/ndb/src/kernel/vm/RequestTracker.hpp similarity index 100% rename from ndb/src/kernel/vm/RequestTracker.hpp rename to storage/ndb/src/kernel/vm/RequestTracker.hpp diff --git a/ndb/src/kernel/vm/SLList.hpp b/storage/ndb/src/kernel/vm/SLList.hpp similarity index 100% rename from ndb/src/kernel/vm/SLList.hpp rename to storage/ndb/src/kernel/vm/SLList.hpp diff --git a/ndb/src/kernel/vm/SafeCounter.cpp b/storage/ndb/src/kernel/vm/SafeCounter.cpp similarity index 100% rename from ndb/src/kernel/vm/SafeCounter.cpp rename to storage/ndb/src/kernel/vm/SafeCounter.cpp diff --git a/ndb/src/kernel/vm/SafeCounter.hpp b/storage/ndb/src/kernel/vm/SafeCounter.hpp similarity index 100% rename from ndb/src/kernel/vm/SafeCounter.hpp rename to storage/ndb/src/kernel/vm/SafeCounter.hpp diff --git a/ndb/src/kernel/vm/SectionReader.cpp b/storage/ndb/src/kernel/vm/SectionReader.cpp similarity index 100% rename from ndb/src/kernel/vm/SectionReader.cpp rename to storage/ndb/src/kernel/vm/SectionReader.cpp diff --git a/ndb/src/kernel/vm/SectionReader.hpp b/storage/ndb/src/kernel/vm/SectionReader.hpp similarity index 100% rename from ndb/src/kernel/vm/SectionReader.hpp rename to storage/ndb/src/kernel/vm/SectionReader.hpp diff --git a/ndb/src/kernel/vm/SignalCounter.hpp b/storage/ndb/src/kernel/vm/SignalCounter.hpp similarity index 100% rename from ndb/src/kernel/vm/SignalCounter.hpp rename to storage/ndb/src/kernel/vm/SignalCounter.hpp diff --git a/ndb/src/kernel/vm/SimBlockList.hpp b/storage/ndb/src/kernel/vm/SimBlockList.hpp similarity index 100% rename from ndb/src/kernel/vm/SimBlockList.hpp rename to storage/ndb/src/kernel/vm/SimBlockList.hpp diff --git a/ndb/src/kernel/vm/SimplePropertiesSection.cpp b/storage/ndb/src/kernel/vm/SimplePropertiesSection.cpp similarity index 100% rename from ndb/src/kernel/vm/SimplePropertiesSection.cpp rename to storage/ndb/src/kernel/vm/SimplePropertiesSection.cpp diff --git a/ndb/src/kernel/vm/SimulatedBlock.cpp b/storage/ndb/src/kernel/vm/SimulatedBlock.cpp similarity index 100% rename from ndb/src/kernel/vm/SimulatedBlock.cpp rename to storage/ndb/src/kernel/vm/SimulatedBlock.cpp diff --git a/ndb/src/kernel/vm/SimulatedBlock.hpp b/storage/ndb/src/kernel/vm/SimulatedBlock.hpp similarity index 100% rename from ndb/src/kernel/vm/SimulatedBlock.hpp rename to storage/ndb/src/kernel/vm/SimulatedBlock.hpp diff --git a/ndb/src/kernel/vm/ThreadConfig.cpp b/storage/ndb/src/kernel/vm/ThreadConfig.cpp similarity index 100% rename from ndb/src/kernel/vm/ThreadConfig.cpp rename to storage/ndb/src/kernel/vm/ThreadConfig.cpp diff --git a/ndb/src/kernel/vm/ThreadConfig.hpp b/storage/ndb/src/kernel/vm/ThreadConfig.hpp similarity index 100% rename from ndb/src/kernel/vm/ThreadConfig.hpp rename to storage/ndb/src/kernel/vm/ThreadConfig.hpp diff --git a/ndb/src/kernel/vm/TimeQueue.cpp b/storage/ndb/src/kernel/vm/TimeQueue.cpp similarity index 100% rename from ndb/src/kernel/vm/TimeQueue.cpp rename to storage/ndb/src/kernel/vm/TimeQueue.cpp diff --git a/ndb/src/kernel/vm/TimeQueue.hpp b/storage/ndb/src/kernel/vm/TimeQueue.hpp similarity index 100% rename from ndb/src/kernel/vm/TimeQueue.hpp rename to storage/ndb/src/kernel/vm/TimeQueue.hpp diff --git a/ndb/src/kernel/vm/TransporterCallback.cpp b/storage/ndb/src/kernel/vm/TransporterCallback.cpp similarity index 100% rename from ndb/src/kernel/vm/TransporterCallback.cpp rename to storage/ndb/src/kernel/vm/TransporterCallback.cpp diff --git a/ndb/src/kernel/vm/VMSignal.cpp b/storage/ndb/src/kernel/vm/VMSignal.cpp similarity index 100% rename from ndb/src/kernel/vm/VMSignal.cpp rename to storage/ndb/src/kernel/vm/VMSignal.cpp diff --git a/ndb/src/kernel/vm/VMSignal.hpp b/storage/ndb/src/kernel/vm/VMSignal.hpp similarity index 100% rename from ndb/src/kernel/vm/VMSignal.hpp rename to storage/ndb/src/kernel/vm/VMSignal.hpp diff --git a/ndb/src/kernel/vm/WaitQueue.hpp b/storage/ndb/src/kernel/vm/WaitQueue.hpp similarity index 100% rename from ndb/src/kernel/vm/WaitQueue.hpp rename to storage/ndb/src/kernel/vm/WaitQueue.hpp diff --git a/ndb/src/kernel/vm/WatchDog.cpp b/storage/ndb/src/kernel/vm/WatchDog.cpp similarity index 100% rename from ndb/src/kernel/vm/WatchDog.cpp rename to storage/ndb/src/kernel/vm/WatchDog.cpp diff --git a/ndb/src/kernel/vm/WatchDog.hpp b/storage/ndb/src/kernel/vm/WatchDog.hpp similarity index 100% rename from ndb/src/kernel/vm/WatchDog.hpp rename to storage/ndb/src/kernel/vm/WatchDog.hpp diff --git a/ndb/src/kernel/vm/al_test/Makefile b/storage/ndb/src/kernel/vm/al_test/Makefile similarity index 100% rename from ndb/src/kernel/vm/al_test/Makefile rename to storage/ndb/src/kernel/vm/al_test/Makefile diff --git a/ndb/src/kernel/vm/al_test/arrayListTest.cpp b/storage/ndb/src/kernel/vm/al_test/arrayListTest.cpp similarity index 100% rename from ndb/src/kernel/vm/al_test/arrayListTest.cpp rename to storage/ndb/src/kernel/vm/al_test/arrayListTest.cpp diff --git a/ndb/src/kernel/vm/al_test/arrayPoolTest.cpp b/storage/ndb/src/kernel/vm/al_test/arrayPoolTest.cpp similarity index 100% rename from ndb/src/kernel/vm/al_test/arrayPoolTest.cpp rename to storage/ndb/src/kernel/vm/al_test/arrayPoolTest.cpp diff --git a/ndb/src/kernel/vm/al_test/main.cpp b/storage/ndb/src/kernel/vm/al_test/main.cpp similarity index 100% rename from ndb/src/kernel/vm/al_test/main.cpp rename to storage/ndb/src/kernel/vm/al_test/main.cpp diff --git a/ndb/src/kernel/vm/pc.hpp b/storage/ndb/src/kernel/vm/pc.hpp similarity index 100% rename from ndb/src/kernel/vm/pc.hpp rename to storage/ndb/src/kernel/vm/pc.hpp diff --git a/ndb/src/kernel/vm/testCopy/Makefile b/storage/ndb/src/kernel/vm/testCopy/Makefile similarity index 100% rename from ndb/src/kernel/vm/testCopy/Makefile rename to storage/ndb/src/kernel/vm/testCopy/Makefile diff --git a/ndb/src/kernel/vm/testCopy/rr.cpp b/storage/ndb/src/kernel/vm/testCopy/rr.cpp similarity index 100% rename from ndb/src/kernel/vm/testCopy/rr.cpp rename to storage/ndb/src/kernel/vm/testCopy/rr.cpp diff --git a/ndb/src/kernel/vm/testCopy/testCopy.cpp b/storage/ndb/src/kernel/vm/testCopy/testCopy.cpp similarity index 100% rename from ndb/src/kernel/vm/testCopy/testCopy.cpp rename to storage/ndb/src/kernel/vm/testCopy/testCopy.cpp diff --git a/ndb/src/kernel/vm/testDataBuffer/Makefile b/storage/ndb/src/kernel/vm/testDataBuffer/Makefile similarity index 100% rename from ndb/src/kernel/vm/testDataBuffer/Makefile rename to storage/ndb/src/kernel/vm/testDataBuffer/Makefile diff --git a/ndb/src/kernel/vm/testDataBuffer/testDataBuffer.cpp b/storage/ndb/src/kernel/vm/testDataBuffer/testDataBuffer.cpp similarity index 100% rename from ndb/src/kernel/vm/testDataBuffer/testDataBuffer.cpp rename to storage/ndb/src/kernel/vm/testDataBuffer/testDataBuffer.cpp diff --git a/ndb/src/kernel/vm/testLongSig/Makefile b/storage/ndb/src/kernel/vm/testLongSig/Makefile similarity index 100% rename from ndb/src/kernel/vm/testLongSig/Makefile rename to storage/ndb/src/kernel/vm/testLongSig/Makefile diff --git a/ndb/src/kernel/vm/testLongSig/testLongSig.cpp b/storage/ndb/src/kernel/vm/testLongSig/testLongSig.cpp similarity index 100% rename from ndb/src/kernel/vm/testLongSig/testLongSig.cpp rename to storage/ndb/src/kernel/vm/testLongSig/testLongSig.cpp diff --git a/ndb/src/kernel/vm/testSimplePropertiesSection/Makefile b/storage/ndb/src/kernel/vm/testSimplePropertiesSection/Makefile similarity index 100% rename from ndb/src/kernel/vm/testSimplePropertiesSection/Makefile rename to storage/ndb/src/kernel/vm/testSimplePropertiesSection/Makefile diff --git a/ndb/src/kernel/vm/testSimplePropertiesSection/test.cpp b/storage/ndb/src/kernel/vm/testSimplePropertiesSection/test.cpp similarity index 100% rename from ndb/src/kernel/vm/testSimplePropertiesSection/test.cpp rename to storage/ndb/src/kernel/vm/testSimplePropertiesSection/test.cpp diff --git a/ndb/src/mgmapi/LocalConfig.cpp b/storage/ndb/src/mgmapi/LocalConfig.cpp similarity index 100% rename from ndb/src/mgmapi/LocalConfig.cpp rename to storage/ndb/src/mgmapi/LocalConfig.cpp diff --git a/ndb/src/mgmapi/LocalConfig.hpp b/storage/ndb/src/mgmapi/LocalConfig.hpp similarity index 100% rename from ndb/src/mgmapi/LocalConfig.hpp rename to storage/ndb/src/mgmapi/LocalConfig.hpp diff --git a/storage/ndb/src/mgmapi/Makefile.am b/storage/ndb/src/mgmapi/Makefile.am new file mode 100644 index 00000000000..21966fd69de --- /dev/null +++ b/storage/ndb/src/mgmapi/Makefile.am @@ -0,0 +1,30 @@ + +noinst_LTLIBRARIES = libmgmapi.la + +libmgmapi_la_SOURCES = mgmapi.cpp ndb_logevent.cpp mgmapi_configuration.cpp LocalConfig.cpp + +INCLUDES_LOC = -I$(top_srcdir)/storage/ndb/include/mgmapi + +DEFS_LOC = -DNO_DEBUG_MESSAGES -DNDB_PORT="\"@ndb_port@\"" + +include $(top_srcdir)/storage/ndb/config/common.mk.am +include $(top_srcdir)/storage/ndb/config/type_util.mk.am + +#ndbtest_PROGRAMS = ndb_test_mgmapi + +# Don't update the files from bitkeeper +%::SCCS/s.% + +windoze-dsp: libmgmapi.dsp + +libmgmapi.dsp: Makefile \ + $(top_srcdir)/storage/ndb/config/win-lib.am \ + $(top_srcdir)/storage/ndb/config/win-name \ + $(top_srcdir)/storage/ndb/config/win-includes \ + $(top_srcdir)/storage/ndb/config/win-sources \ + $(top_srcdir)/storage/ndb/config/win-libraries + cat $(top_srcdir)/storage/ndb/config/win-lib.am > $@ + @$(top_srcdir)/storage/ndb/config/win-name $@ $(noinst_LTLIBRARIES) + @$(top_srcdir)/storage/ndb/config/win-includes $@ $(INCLUDES) + @$(top_srcdir)/storage/ndb/config/win-sources $@ $(libmgmapi_la_SOURCES) + @$(top_srcdir)/storage/ndb/config/win-libraries $@ LIB $(LDADD) diff --git a/ndb/src/mgmapi/mgmapi.cpp b/storage/ndb/src/mgmapi/mgmapi.cpp similarity index 100% rename from ndb/src/mgmapi/mgmapi.cpp rename to storage/ndb/src/mgmapi/mgmapi.cpp diff --git a/ndb/src/mgmapi/mgmapi_configuration.cpp b/storage/ndb/src/mgmapi/mgmapi_configuration.cpp similarity index 100% rename from ndb/src/mgmapi/mgmapi_configuration.cpp rename to storage/ndb/src/mgmapi/mgmapi_configuration.cpp diff --git a/ndb/src/mgmapi/mgmapi_configuration.hpp b/storage/ndb/src/mgmapi/mgmapi_configuration.hpp similarity index 100% rename from ndb/src/mgmapi/mgmapi_configuration.hpp rename to storage/ndb/src/mgmapi/mgmapi_configuration.hpp diff --git a/ndb/src/mgmapi/mgmapi_internal.h b/storage/ndb/src/mgmapi/mgmapi_internal.h similarity index 100% rename from ndb/src/mgmapi/mgmapi_internal.h rename to storage/ndb/src/mgmapi/mgmapi_internal.h diff --git a/ndb/src/mgmapi/ndb_logevent.cpp b/storage/ndb/src/mgmapi/ndb_logevent.cpp similarity index 100% rename from ndb/src/mgmapi/ndb_logevent.cpp rename to storage/ndb/src/mgmapi/ndb_logevent.cpp diff --git a/ndb/src/mgmapi/ndb_logevent.hpp b/storage/ndb/src/mgmapi/ndb_logevent.hpp similarity index 100% rename from ndb/src/mgmapi/ndb_logevent.hpp rename to storage/ndb/src/mgmapi/ndb_logevent.hpp diff --git a/ndb/src/mgmapi/test/Makefile b/storage/ndb/src/mgmapi/test/Makefile similarity index 100% rename from ndb/src/mgmapi/test/Makefile rename to storage/ndb/src/mgmapi/test/Makefile diff --git a/ndb/src/mgmapi/test/keso.c b/storage/ndb/src/mgmapi/test/keso.c similarity index 100% rename from ndb/src/mgmapi/test/keso.c rename to storage/ndb/src/mgmapi/test/keso.c diff --git a/ndb/src/mgmapi/test/mgmSrvApi.cpp b/storage/ndb/src/mgmapi/test/mgmSrvApi.cpp similarity index 100% rename from ndb/src/mgmapi/test/mgmSrvApi.cpp rename to storage/ndb/src/mgmapi/test/mgmSrvApi.cpp diff --git a/ndb/src/mgmclient/CommandInterpreter.cpp b/storage/ndb/src/mgmclient/CommandInterpreter.cpp similarity index 100% rename from ndb/src/mgmclient/CommandInterpreter.cpp rename to storage/ndb/src/mgmclient/CommandInterpreter.cpp diff --git a/storage/ndb/src/mgmclient/Makefile.am b/storage/ndb/src/mgmclient/Makefile.am new file mode 100644 index 00000000000..217f3e993a7 --- /dev/null +++ b/storage/ndb/src/mgmclient/Makefile.am @@ -0,0 +1,58 @@ + +noinst_LTLIBRARIES = libndbmgmclient.la +ndbtools_PROGRAMS = ndb_mgm + +libndbmgmclient_la_SOURCES = CommandInterpreter.cpp +libndbmgmclient_la_LIBADD = ../mgmapi/libmgmapi.la \ + ../common/logger/liblogger.la \ + ../common/portlib/libportlib.la \ + ../common/util/libgeneral.la \ + ../common/portlib/libportlib.la + + +ndb_mgm_SOURCES = main.cpp + +include $(top_srcdir)/storage/ndb/config/common.mk.am +include $(top_srcdir)/storage/ndb/config/type_ndbapi.mk.am + +INCLUDES += -I$(top_srcdir)/storage/ndb/include/mgmapi \ + -I$(top_srcdir)/storage/ndb/src/common/mgmcommon + +LDADD_LOC = $(noinst_LTLIBRARIES) \ + ../common/portlib/libportlib.la \ + @readline_link@ \ + $(top_builddir)/dbug/libdbug.a \ + $(top_builddir)/mysys/libmysys.a \ + $(top_builddir)/strings/libmystrings.a \ + @TERMCAP_LIB@ @NDB_SCI_LIBS@ + +ndb_mgm_LDFLAGS = @ndb_bin_am_ldflags@ + +# Don't update the files from bitkeeper +%::SCCS/s.% + +windoze-dsp: ndb_mgm.dsp libndbmgmclient.dsp + +ndb_mgm.dsp: Makefile \ + $(top_srcdir)/storage/ndb/config/win-prg.am \ + $(top_srcdir)/storage/ndb/config/win-name \ + $(top_srcdir)/storage/ndb/config/win-includes \ + $(top_srcdir)/storage/ndb/config/win-sources \ + $(top_srcdir)/storage/ndb/config/win-libraries + cat $(top_srcdir)/storage/ndb/config/win-prg.am > $@ + @$(top_srcdir)/storage/ndb/config/win-name $@ $(ndbtools_PROGRAMS) + @$(top_srcdir)/storage/ndb/config/win-includes $@ $(INCLUDES) + @$(top_srcdir)/storage/ndb/config/win-sources $@ $(ndb_mgm_SOURCES) + @$(top_srcdir)/storage/ndb/config/win-libraries $@ LINK $(LDADD) + +libndbmgmclient.dsp: Makefile \ + $(top_srcdir)/storage/ndb/config/win-lib.am \ + $(top_srcdir)/storage/ndb/config/win-name \ + $(top_srcdir)/storage/ndb/config/win-includes \ + $(top_srcdir)/storage/ndb/config/win-sources \ + $(top_srcdir)/storage/ndb/config/win-libraries + cat $(top_srcdir)/storage/ndb/config/win-lib.am > $@ + @$(top_srcdir)/storage/ndb/config/win-name $@ $(noinst_LTLIBRARIES) + @$(top_srcdir)/storage/ndb/config/win-includes $@ $(INCLUDES) + @$(top_srcdir)/storage/ndb/config/win-sources $@ $(libndbmgmclient_la_SOURCES) + @$(top_srcdir)/storage/ndb/config/win-libraries $@ LIB diff --git a/ndb/src/mgmclient/main.cpp b/storage/ndb/src/mgmclient/main.cpp similarity index 100% rename from ndb/src/mgmclient/main.cpp rename to storage/ndb/src/mgmclient/main.cpp diff --git a/ndb/src/mgmclient/ndb_mgmclient.h b/storage/ndb/src/mgmclient/ndb_mgmclient.h similarity index 100% rename from ndb/src/mgmclient/ndb_mgmclient.h rename to storage/ndb/src/mgmclient/ndb_mgmclient.h diff --git a/ndb/src/mgmclient/ndb_mgmclient.hpp b/storage/ndb/src/mgmclient/ndb_mgmclient.hpp similarity index 100% rename from ndb/src/mgmclient/ndb_mgmclient.hpp rename to storage/ndb/src/mgmclient/ndb_mgmclient.hpp diff --git a/ndb/src/mgmclient/test_cpcd/Makefile b/storage/ndb/src/mgmclient/test_cpcd/Makefile similarity index 100% rename from ndb/src/mgmclient/test_cpcd/Makefile rename to storage/ndb/src/mgmclient/test_cpcd/Makefile diff --git a/ndb/src/mgmclient/test_cpcd/test_cpcd.cpp b/storage/ndb/src/mgmclient/test_cpcd/test_cpcd.cpp similarity index 100% rename from ndb/src/mgmclient/test_cpcd/test_cpcd.cpp rename to storage/ndb/src/mgmclient/test_cpcd/test_cpcd.cpp diff --git a/ndb/src/mgmsrv/Config.cpp b/storage/ndb/src/mgmsrv/Config.cpp similarity index 100% rename from ndb/src/mgmsrv/Config.cpp rename to storage/ndb/src/mgmsrv/Config.cpp diff --git a/ndb/src/mgmsrv/Config.hpp b/storage/ndb/src/mgmsrv/Config.hpp similarity index 100% rename from ndb/src/mgmsrv/Config.hpp rename to storage/ndb/src/mgmsrv/Config.hpp diff --git a/ndb/src/mgmsrv/ConfigInfo.cpp b/storage/ndb/src/mgmsrv/ConfigInfo.cpp similarity index 100% rename from ndb/src/mgmsrv/ConfigInfo.cpp rename to storage/ndb/src/mgmsrv/ConfigInfo.cpp diff --git a/ndb/src/mgmsrv/ConfigInfo.hpp b/storage/ndb/src/mgmsrv/ConfigInfo.hpp similarity index 100% rename from ndb/src/mgmsrv/ConfigInfo.hpp rename to storage/ndb/src/mgmsrv/ConfigInfo.hpp diff --git a/ndb/src/mgmsrv/InitConfigFileParser.cpp b/storage/ndb/src/mgmsrv/InitConfigFileParser.cpp similarity index 100% rename from ndb/src/mgmsrv/InitConfigFileParser.cpp rename to storage/ndb/src/mgmsrv/InitConfigFileParser.cpp diff --git a/ndb/src/mgmsrv/InitConfigFileParser.hpp b/storage/ndb/src/mgmsrv/InitConfigFileParser.hpp similarity index 100% rename from ndb/src/mgmsrv/InitConfigFileParser.hpp rename to storage/ndb/src/mgmsrv/InitConfigFileParser.hpp diff --git a/storage/ndb/src/mgmsrv/Makefile.am b/storage/ndb/src/mgmsrv/Makefile.am new file mode 100644 index 00000000000..3ee39767834 --- /dev/null +++ b/storage/ndb/src/mgmsrv/Makefile.am @@ -0,0 +1,60 @@ +MYSQLDATAdir = $(localstatedir) +MYSQLSHAREdir = $(pkgdatadir) +MYSQLBASEdir= $(prefix) +#MYSQLCLUSTERdir= $(prefix)/mysql-cluster +MYSQLCLUSTERdir= . + +ndbbin_PROGRAMS = ndb_mgmd + +ndb_mgmd_SOURCES = \ + MgmtSrvr.cpp \ + MgmtSrvrGeneralSignalHandling.cpp \ + main.cpp \ + Services.cpp \ + convertStrToInt.cpp \ + SignalQueue.cpp \ + MgmtSrvrConfig.cpp \ + ConfigInfo.cpp \ + InitConfigFileParser.cpp \ + Config.cpp + +INCLUDES_LOC = -I$(top_srcdir)/storage/ndb/src/ndbapi \ + -I$(top_srcdir)/storage/ndb/src/mgmapi \ + -I$(top_srcdir)/storage/ndb/src/common/mgmcommon \ + -I$(top_srcdir)/storage/ndb/src/mgmclient + +LDADD_LOC = $(top_srcdir)/storage/ndb/src/mgmclient/CommandInterpreter.o \ + $(top_builddir)/storage/ndb/src/libndbclient.la \ + $(top_builddir)/dbug/libdbug.a \ + $(top_builddir)/mysys/libmysys.a \ + $(top_builddir)/strings/libmystrings.a \ + @readline_link@ \ + @NDB_SCI_LIBS@ \ + @TERMCAP_LIB@ + +DEFS_LOC = -DDEFAULT_MYSQL_HOME="\"$(MYSQLBASEdir)\"" \ + -DDATADIR="\"$(MYSQLDATAdir)\"" \ + -DSHAREDIR="\"$(MYSQLSHAREdir)\"" \ + -DMYSQLCLUSTERDIR="\"$(MYSQLCLUSTERdir)\"" + +include $(top_srcdir)/storage/ndb/config/common.mk.am +include $(top_srcdir)/storage/ndb/config/type_ndbapi.mk.am + +ndb_mgmd_LDFLAGS = @ndb_bin_am_ldflags@ + +# Don't update the files from bitkeeper +%::SCCS/s.% + +windoze-dsp: ndb_mgmd.dsp + +ndb_mgmd.dsp: Makefile \ + $(top_srcdir)/storage/ndb/config/win-prg.am \ + $(top_srcdir)/storage/ndb/config/win-name \ + $(top_srcdir)/storage/ndb/config/win-includes \ + $(top_srcdir)/storage/ndb/config/win-sources \ + $(top_srcdir)/storage/ndb/config/win-libraries + cat $(top_srcdir)/storage/ndb/config/win-prg.am > $@ + @$(top_srcdir)/storage/ndb/config/win-name $@ $(ndbbin_PROGRAMS) + @$(top_srcdir)/storage/ndb/config/win-includes $@ $(INCLUDES) + @$(top_srcdir)/storage/ndb/config/win-sources $@ $(ndb_mgmd_SOURCES) + @$(top_srcdir)/storage/ndb/config/win-libraries $@ LINK $(LDADD) diff --git a/ndb/src/mgmsrv/MgmtSrvr.cpp b/storage/ndb/src/mgmsrv/MgmtSrvr.cpp similarity index 100% rename from ndb/src/mgmsrv/MgmtSrvr.cpp rename to storage/ndb/src/mgmsrv/MgmtSrvr.cpp diff --git a/ndb/src/mgmsrv/MgmtSrvr.hpp b/storage/ndb/src/mgmsrv/MgmtSrvr.hpp similarity index 100% rename from ndb/src/mgmsrv/MgmtSrvr.hpp rename to storage/ndb/src/mgmsrv/MgmtSrvr.hpp diff --git a/ndb/src/mgmsrv/MgmtSrvrConfig.cpp b/storage/ndb/src/mgmsrv/MgmtSrvrConfig.cpp similarity index 100% rename from ndb/src/mgmsrv/MgmtSrvrConfig.cpp rename to storage/ndb/src/mgmsrv/MgmtSrvrConfig.cpp diff --git a/ndb/src/mgmsrv/MgmtSrvrGeneralSignalHandling.cpp b/storage/ndb/src/mgmsrv/MgmtSrvrGeneralSignalHandling.cpp similarity index 100% rename from ndb/src/mgmsrv/MgmtSrvrGeneralSignalHandling.cpp rename to storage/ndb/src/mgmsrv/MgmtSrvrGeneralSignalHandling.cpp diff --git a/ndb/src/mgmsrv/Services.cpp b/storage/ndb/src/mgmsrv/Services.cpp similarity index 100% rename from ndb/src/mgmsrv/Services.cpp rename to storage/ndb/src/mgmsrv/Services.cpp diff --git a/ndb/src/mgmsrv/Services.hpp b/storage/ndb/src/mgmsrv/Services.hpp similarity index 100% rename from ndb/src/mgmsrv/Services.hpp rename to storage/ndb/src/mgmsrv/Services.hpp diff --git a/ndb/src/mgmsrv/SignalQueue.cpp b/storage/ndb/src/mgmsrv/SignalQueue.cpp similarity index 100% rename from ndb/src/mgmsrv/SignalQueue.cpp rename to storage/ndb/src/mgmsrv/SignalQueue.cpp diff --git a/ndb/src/mgmsrv/SignalQueue.hpp b/storage/ndb/src/mgmsrv/SignalQueue.hpp similarity index 100% rename from ndb/src/mgmsrv/SignalQueue.hpp rename to storage/ndb/src/mgmsrv/SignalQueue.hpp diff --git a/ndb/src/mgmsrv/convertStrToInt.cpp b/storage/ndb/src/mgmsrv/convertStrToInt.cpp similarity index 100% rename from ndb/src/mgmsrv/convertStrToInt.cpp rename to storage/ndb/src/mgmsrv/convertStrToInt.cpp diff --git a/ndb/src/mgmsrv/convertStrToInt.hpp b/storage/ndb/src/mgmsrv/convertStrToInt.hpp similarity index 100% rename from ndb/src/mgmsrv/convertStrToInt.hpp rename to storage/ndb/src/mgmsrv/convertStrToInt.hpp diff --git a/ndb/src/mgmsrv/main.cpp b/storage/ndb/src/mgmsrv/main.cpp similarity index 100% rename from ndb/src/mgmsrv/main.cpp rename to storage/ndb/src/mgmsrv/main.cpp diff --git a/ndb/src/mgmsrv/mkconfig/Makefile b/storage/ndb/src/mgmsrv/mkconfig/Makefile similarity index 100% rename from ndb/src/mgmsrv/mkconfig/Makefile rename to storage/ndb/src/mgmsrv/mkconfig/Makefile diff --git a/ndb/src/mgmsrv/mkconfig/mkconfig.cpp b/storage/ndb/src/mgmsrv/mkconfig/mkconfig.cpp similarity index 100% rename from ndb/src/mgmsrv/mkconfig/mkconfig.cpp rename to storage/ndb/src/mgmsrv/mkconfig/mkconfig.cpp diff --git a/ndb/src/ndbapi/API.hpp b/storage/ndb/src/ndbapi/API.hpp similarity index 100% rename from ndb/src/ndbapi/API.hpp rename to storage/ndb/src/ndbapi/API.hpp diff --git a/ndb/src/ndbapi/ClusterMgr.cpp b/storage/ndb/src/ndbapi/ClusterMgr.cpp similarity index 100% rename from ndb/src/ndbapi/ClusterMgr.cpp rename to storage/ndb/src/ndbapi/ClusterMgr.cpp diff --git a/ndb/src/ndbapi/ClusterMgr.hpp b/storage/ndb/src/ndbapi/ClusterMgr.hpp similarity index 100% rename from ndb/src/ndbapi/ClusterMgr.hpp rename to storage/ndb/src/ndbapi/ClusterMgr.hpp diff --git a/ndb/src/ndbapi/DictCache.cpp b/storage/ndb/src/ndbapi/DictCache.cpp similarity index 100% rename from ndb/src/ndbapi/DictCache.cpp rename to storage/ndb/src/ndbapi/DictCache.cpp diff --git a/ndb/src/ndbapi/DictCache.hpp b/storage/ndb/src/ndbapi/DictCache.hpp similarity index 100% rename from ndb/src/ndbapi/DictCache.hpp rename to storage/ndb/src/ndbapi/DictCache.hpp diff --git a/ndb/src/ndbapi/Makefile.am b/storage/ndb/src/ndbapi/Makefile.am similarity index 60% rename from ndb/src/ndbapi/Makefile.am rename to storage/ndb/src/ndbapi/Makefile.am index b734e058b87..0656aad7ed3 100644 --- a/ndb/src/ndbapi/Makefile.am +++ b/storage/ndb/src/ndbapi/Makefile.am @@ -36,13 +36,13 @@ libndbapi_la_SOURCES = \ ndb_cluster_connection.cpp \ NdbBlob.cpp -INCLUDES_LOC = -I$(top_srcdir)/ndb/src/mgmapi +INCLUDES_LOC = -I$(top_srcdir)/storage/ndb/src/mgmapi # Ndbapi cannot handle -O3 NDB_CXXFLAGS_RELEASE_LOC = -O2 -include $(top_srcdir)/ndb/config/common.mk.am -include $(top_srcdir)/ndb/config/type_ndbapi.mk.am +include $(top_srcdir)/storage/ndb/config/common.mk.am +include $(top_srcdir)/storage/ndb/config/type_ndbapi.mk.am # Don't update the files from bitkeeper %::SCCS/s.% @@ -50,13 +50,13 @@ include $(top_srcdir)/ndb/config/type_ndbapi.mk.am windoze-dsp: libndbapi.dsp libndbapi.dsp: Makefile \ - $(top_srcdir)/ndb/config/win-lib.am \ - $(top_srcdir)/ndb/config/win-name \ - $(top_srcdir)/ndb/config/win-includes \ - $(top_srcdir)/ndb/config/win-sources \ - $(top_srcdir)/ndb/config/win-libraries - cat $(top_srcdir)/ndb/config/win-lib.am > $@ - @$(top_srcdir)/ndb/config/win-name $@ $(noinst_LTLIBRARIES) - @$(top_srcdir)/ndb/config/win-includes $@ $(INCLUDES) - @$(top_srcdir)/ndb/config/win-sources $@ $(libndbapi_la_SOURCES) - @$(top_srcdir)/ndb/config/win-libraries $@ LIB $(LDADD) + $(top_srcdir)/storage/ndb/config/win-lib.am \ + $(top_srcdir)/storage/ndb/config/win-name \ + $(top_srcdir)/storage/ndb/config/win-includes \ + $(top_srcdir)/storage/ndb/config/win-sources \ + $(top_srcdir)/storage/ndb/config/win-libraries + cat $(top_srcdir)/storage/ndb/config/win-lib.am > $@ + @$(top_srcdir)/storage/ndb/config/win-name $@ $(noinst_LTLIBRARIES) + @$(top_srcdir)/storage/ndb/config/win-includes $@ $(INCLUDES) + @$(top_srcdir)/storage/ndb/config/win-sources $@ $(libndbapi_la_SOURCES) + @$(top_srcdir)/storage/ndb/config/win-libraries $@ LIB $(LDADD) diff --git a/ndb/src/ndbapi/Ndb.cpp b/storage/ndb/src/ndbapi/Ndb.cpp similarity index 100% rename from ndb/src/ndbapi/Ndb.cpp rename to storage/ndb/src/ndbapi/Ndb.cpp diff --git a/ndb/src/ndbapi/NdbApiSignal.cpp b/storage/ndb/src/ndbapi/NdbApiSignal.cpp similarity index 100% rename from ndb/src/ndbapi/NdbApiSignal.cpp rename to storage/ndb/src/ndbapi/NdbApiSignal.cpp diff --git a/ndb/src/ndbapi/NdbApiSignal.hpp b/storage/ndb/src/ndbapi/NdbApiSignal.hpp similarity index 100% rename from ndb/src/ndbapi/NdbApiSignal.hpp rename to storage/ndb/src/ndbapi/NdbApiSignal.hpp diff --git a/ndb/src/ndbapi/NdbBlob.cpp b/storage/ndb/src/ndbapi/NdbBlob.cpp similarity index 100% rename from ndb/src/ndbapi/NdbBlob.cpp rename to storage/ndb/src/ndbapi/NdbBlob.cpp diff --git a/ndb/src/ndbapi/NdbBlobImpl.hpp b/storage/ndb/src/ndbapi/NdbBlobImpl.hpp similarity index 100% rename from ndb/src/ndbapi/NdbBlobImpl.hpp rename to storage/ndb/src/ndbapi/NdbBlobImpl.hpp diff --git a/ndb/src/ndbapi/NdbDictionary.cpp b/storage/ndb/src/ndbapi/NdbDictionary.cpp similarity index 100% rename from ndb/src/ndbapi/NdbDictionary.cpp rename to storage/ndb/src/ndbapi/NdbDictionary.cpp diff --git a/ndb/src/ndbapi/NdbDictionaryImpl.cpp b/storage/ndb/src/ndbapi/NdbDictionaryImpl.cpp similarity index 100% rename from ndb/src/ndbapi/NdbDictionaryImpl.cpp rename to storage/ndb/src/ndbapi/NdbDictionaryImpl.cpp diff --git a/ndb/src/ndbapi/NdbDictionaryImpl.hpp b/storage/ndb/src/ndbapi/NdbDictionaryImpl.hpp similarity index 100% rename from ndb/src/ndbapi/NdbDictionaryImpl.hpp rename to storage/ndb/src/ndbapi/NdbDictionaryImpl.hpp diff --git a/ndb/src/ndbapi/NdbErrorOut.cpp b/storage/ndb/src/ndbapi/NdbErrorOut.cpp similarity index 100% rename from ndb/src/ndbapi/NdbErrorOut.cpp rename to storage/ndb/src/ndbapi/NdbErrorOut.cpp diff --git a/ndb/src/ndbapi/NdbEventOperation.cpp b/storage/ndb/src/ndbapi/NdbEventOperation.cpp similarity index 100% rename from ndb/src/ndbapi/NdbEventOperation.cpp rename to storage/ndb/src/ndbapi/NdbEventOperation.cpp diff --git a/ndb/src/ndbapi/NdbEventOperationImpl.cpp b/storage/ndb/src/ndbapi/NdbEventOperationImpl.cpp similarity index 100% rename from ndb/src/ndbapi/NdbEventOperationImpl.cpp rename to storage/ndb/src/ndbapi/NdbEventOperationImpl.cpp diff --git a/ndb/src/ndbapi/NdbEventOperationImpl.hpp b/storage/ndb/src/ndbapi/NdbEventOperationImpl.hpp similarity index 100% rename from ndb/src/ndbapi/NdbEventOperationImpl.hpp rename to storage/ndb/src/ndbapi/NdbEventOperationImpl.hpp diff --git a/ndb/src/ndbapi/NdbImpl.hpp b/storage/ndb/src/ndbapi/NdbImpl.hpp similarity index 100% rename from ndb/src/ndbapi/NdbImpl.hpp rename to storage/ndb/src/ndbapi/NdbImpl.hpp diff --git a/ndb/src/ndbapi/NdbIndexOperation.cpp b/storage/ndb/src/ndbapi/NdbIndexOperation.cpp similarity index 100% rename from ndb/src/ndbapi/NdbIndexOperation.cpp rename to storage/ndb/src/ndbapi/NdbIndexOperation.cpp diff --git a/ndb/src/ndbapi/NdbLinHash.hpp b/storage/ndb/src/ndbapi/NdbLinHash.hpp similarity index 100% rename from ndb/src/ndbapi/NdbLinHash.hpp rename to storage/ndb/src/ndbapi/NdbLinHash.hpp diff --git a/ndb/src/ndbapi/NdbOperation.cpp b/storage/ndb/src/ndbapi/NdbOperation.cpp similarity index 100% rename from ndb/src/ndbapi/NdbOperation.cpp rename to storage/ndb/src/ndbapi/NdbOperation.cpp diff --git a/ndb/src/ndbapi/NdbOperationDefine.cpp b/storage/ndb/src/ndbapi/NdbOperationDefine.cpp similarity index 100% rename from ndb/src/ndbapi/NdbOperationDefine.cpp rename to storage/ndb/src/ndbapi/NdbOperationDefine.cpp diff --git a/ndb/src/ndbapi/NdbOperationExec.cpp b/storage/ndb/src/ndbapi/NdbOperationExec.cpp similarity index 100% rename from ndb/src/ndbapi/NdbOperationExec.cpp rename to storage/ndb/src/ndbapi/NdbOperationExec.cpp diff --git a/ndb/src/ndbapi/NdbOperationInt.cpp b/storage/ndb/src/ndbapi/NdbOperationInt.cpp similarity index 100% rename from ndb/src/ndbapi/NdbOperationInt.cpp rename to storage/ndb/src/ndbapi/NdbOperationInt.cpp diff --git a/ndb/src/ndbapi/NdbOperationScan.cpp b/storage/ndb/src/ndbapi/NdbOperationScan.cpp similarity index 100% rename from ndb/src/ndbapi/NdbOperationScan.cpp rename to storage/ndb/src/ndbapi/NdbOperationScan.cpp diff --git a/ndb/src/ndbapi/NdbOperationSearch.cpp b/storage/ndb/src/ndbapi/NdbOperationSearch.cpp similarity index 100% rename from ndb/src/ndbapi/NdbOperationSearch.cpp rename to storage/ndb/src/ndbapi/NdbOperationSearch.cpp diff --git a/ndb/src/ndbapi/NdbPool.cpp b/storage/ndb/src/ndbapi/NdbPool.cpp similarity index 100% rename from ndb/src/ndbapi/NdbPool.cpp rename to storage/ndb/src/ndbapi/NdbPool.cpp diff --git a/ndb/src/ndbapi/NdbPoolImpl.cpp b/storage/ndb/src/ndbapi/NdbPoolImpl.cpp similarity index 100% rename from ndb/src/ndbapi/NdbPoolImpl.cpp rename to storage/ndb/src/ndbapi/NdbPoolImpl.cpp diff --git a/ndb/src/ndbapi/NdbPoolImpl.hpp b/storage/ndb/src/ndbapi/NdbPoolImpl.hpp similarity index 100% rename from ndb/src/ndbapi/NdbPoolImpl.hpp rename to storage/ndb/src/ndbapi/NdbPoolImpl.hpp diff --git a/ndb/src/ndbapi/NdbRecAttr.cpp b/storage/ndb/src/ndbapi/NdbRecAttr.cpp similarity index 100% rename from ndb/src/ndbapi/NdbRecAttr.cpp rename to storage/ndb/src/ndbapi/NdbRecAttr.cpp diff --git a/ndb/src/ndbapi/NdbReceiver.cpp b/storage/ndb/src/ndbapi/NdbReceiver.cpp similarity index 100% rename from ndb/src/ndbapi/NdbReceiver.cpp rename to storage/ndb/src/ndbapi/NdbReceiver.cpp diff --git a/ndb/src/ndbapi/NdbScanFilter.cpp b/storage/ndb/src/ndbapi/NdbScanFilter.cpp similarity index 100% rename from ndb/src/ndbapi/NdbScanFilter.cpp rename to storage/ndb/src/ndbapi/NdbScanFilter.cpp diff --git a/ndb/src/ndbapi/NdbScanOperation.cpp b/storage/ndb/src/ndbapi/NdbScanOperation.cpp similarity index 100% rename from ndb/src/ndbapi/NdbScanOperation.cpp rename to storage/ndb/src/ndbapi/NdbScanOperation.cpp diff --git a/ndb/src/ndbapi/NdbTransaction.cpp b/storage/ndb/src/ndbapi/NdbTransaction.cpp similarity index 100% rename from ndb/src/ndbapi/NdbTransaction.cpp rename to storage/ndb/src/ndbapi/NdbTransaction.cpp diff --git a/ndb/src/ndbapi/NdbTransactionScan.cpp b/storage/ndb/src/ndbapi/NdbTransactionScan.cpp similarity index 100% rename from ndb/src/ndbapi/NdbTransactionScan.cpp rename to storage/ndb/src/ndbapi/NdbTransactionScan.cpp diff --git a/ndb/src/ndbapi/NdbUtil.cpp b/storage/ndb/src/ndbapi/NdbUtil.cpp similarity index 100% rename from ndb/src/ndbapi/NdbUtil.cpp rename to storage/ndb/src/ndbapi/NdbUtil.cpp diff --git a/ndb/src/ndbapi/NdbUtil.hpp b/storage/ndb/src/ndbapi/NdbUtil.hpp similarity index 100% rename from ndb/src/ndbapi/NdbUtil.hpp rename to storage/ndb/src/ndbapi/NdbUtil.hpp diff --git a/ndb/src/ndbapi/NdbWaiter.hpp b/storage/ndb/src/ndbapi/NdbWaiter.hpp similarity index 100% rename from ndb/src/ndbapi/NdbWaiter.hpp rename to storage/ndb/src/ndbapi/NdbWaiter.hpp diff --git a/ndb/src/ndbapi/Ndberr.cpp b/storage/ndb/src/ndbapi/Ndberr.cpp similarity index 100% rename from ndb/src/ndbapi/Ndberr.cpp rename to storage/ndb/src/ndbapi/Ndberr.cpp diff --git a/ndb/src/ndbapi/Ndbif.cpp b/storage/ndb/src/ndbapi/Ndbif.cpp similarity index 100% rename from ndb/src/ndbapi/Ndbif.cpp rename to storage/ndb/src/ndbapi/Ndbif.cpp diff --git a/ndb/src/ndbapi/Ndbinit.cpp b/storage/ndb/src/ndbapi/Ndbinit.cpp similarity index 100% rename from ndb/src/ndbapi/Ndbinit.cpp rename to storage/ndb/src/ndbapi/Ndbinit.cpp diff --git a/ndb/src/ndbapi/Ndblist.cpp b/storage/ndb/src/ndbapi/Ndblist.cpp similarity index 100% rename from ndb/src/ndbapi/Ndblist.cpp rename to storage/ndb/src/ndbapi/Ndblist.cpp diff --git a/ndb/src/ndbapi/ObjectMap.hpp b/storage/ndb/src/ndbapi/ObjectMap.hpp similarity index 100% rename from ndb/src/ndbapi/ObjectMap.hpp rename to storage/ndb/src/ndbapi/ObjectMap.hpp diff --git a/ndb/src/ndbapi/ScanOperation.txt b/storage/ndb/src/ndbapi/ScanOperation.txt similarity index 100% rename from ndb/src/ndbapi/ScanOperation.txt rename to storage/ndb/src/ndbapi/ScanOperation.txt diff --git a/ndb/src/ndbapi/TransporterFacade.cpp b/storage/ndb/src/ndbapi/TransporterFacade.cpp similarity index 100% rename from ndb/src/ndbapi/TransporterFacade.cpp rename to storage/ndb/src/ndbapi/TransporterFacade.cpp diff --git a/ndb/src/ndbapi/TransporterFacade.hpp b/storage/ndb/src/ndbapi/TransporterFacade.hpp similarity index 100% rename from ndb/src/ndbapi/TransporterFacade.hpp rename to storage/ndb/src/ndbapi/TransporterFacade.hpp diff --git a/ndb/src/ndbapi/ndb_cluster_connection.cpp b/storage/ndb/src/ndbapi/ndb_cluster_connection.cpp similarity index 100% rename from ndb/src/ndbapi/ndb_cluster_connection.cpp rename to storage/ndb/src/ndbapi/ndb_cluster_connection.cpp diff --git a/ndb/src/ndbapi/ndb_cluster_connection_impl.hpp b/storage/ndb/src/ndbapi/ndb_cluster_connection_impl.hpp similarity index 100% rename from ndb/src/ndbapi/ndb_cluster_connection_impl.hpp rename to storage/ndb/src/ndbapi/ndb_cluster_connection_impl.hpp diff --git a/ndb/src/ndbapi/ndberror.c b/storage/ndb/src/ndbapi/ndberror.c similarity index 100% rename from ndb/src/ndbapi/ndberror.c rename to storage/ndb/src/ndbapi/ndberror.c diff --git a/ndb/src/ndbapi/signal-sender/Makefile b/storage/ndb/src/ndbapi/signal-sender/Makefile similarity index 100% rename from ndb/src/ndbapi/signal-sender/Makefile rename to storage/ndb/src/ndbapi/signal-sender/Makefile diff --git a/ndb/src/ndbapi/signal-sender/SignalSender.cpp b/storage/ndb/src/ndbapi/signal-sender/SignalSender.cpp similarity index 100% rename from ndb/src/ndbapi/signal-sender/SignalSender.cpp rename to storage/ndb/src/ndbapi/signal-sender/SignalSender.cpp diff --git a/ndb/src/ndbapi/signal-sender/SignalSender.hpp b/storage/ndb/src/ndbapi/signal-sender/SignalSender.hpp similarity index 100% rename from ndb/src/ndbapi/signal-sender/SignalSender.hpp rename to storage/ndb/src/ndbapi/signal-sender/SignalSender.hpp diff --git a/ndb/src/old_files/client/Makefile b/storage/ndb/src/old_files/client/Makefile similarity index 100% rename from ndb/src/old_files/client/Makefile rename to storage/ndb/src/old_files/client/Makefile diff --git a/ndb/src/old_files/client/odbc/Extra.mk b/storage/ndb/src/old_files/client/odbc/Extra.mk similarity index 100% rename from ndb/src/old_files/client/odbc/Extra.mk rename to storage/ndb/src/old_files/client/odbc/Extra.mk diff --git a/ndb/src/old_files/client/odbc/Makefile b/storage/ndb/src/old_files/client/odbc/Makefile similarity index 100% rename from ndb/src/old_files/client/odbc/Makefile rename to storage/ndb/src/old_files/client/odbc/Makefile diff --git a/ndb/src/old_files/client/odbc/NdbOdbc.cpp b/storage/ndb/src/old_files/client/odbc/NdbOdbc.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/NdbOdbc.cpp rename to storage/ndb/src/old_files/client/odbc/NdbOdbc.cpp diff --git a/ndb/src/old_files/client/odbc/NdbOdbc.def b/storage/ndb/src/old_files/client/odbc/NdbOdbc.def similarity index 100% rename from ndb/src/old_files/client/odbc/NdbOdbc.def rename to storage/ndb/src/old_files/client/odbc/NdbOdbc.def diff --git a/ndb/src/old_files/client/odbc/codegen/CodeGen.cpp b/storage/ndb/src/old_files/client/odbc/codegen/CodeGen.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/CodeGen.cpp rename to storage/ndb/src/old_files/client/odbc/codegen/CodeGen.cpp diff --git a/ndb/src/old_files/client/odbc/codegen/CodeGen.hpp b/storage/ndb/src/old_files/client/odbc/codegen/CodeGen.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/CodeGen.hpp rename to storage/ndb/src/old_files/client/odbc/codegen/CodeGen.hpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_base.cpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_base.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_base.cpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_base.cpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_base.hpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_base.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_base.hpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_base.hpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_column.cpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_column.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_column.cpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_column.cpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_column.hpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_column.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_column.hpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_column.hpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_comp_op.cpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_comp_op.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_comp_op.cpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_comp_op.cpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_comp_op.hpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_comp_op.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_comp_op.hpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_comp_op.hpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_create_index.cpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_create_index.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_create_index.cpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_create_index.cpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_create_index.hpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_create_index.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_create_index.hpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_create_index.hpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_create_row.cpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_create_row.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_create_row.cpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_create_row.cpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_create_row.hpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_create_row.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_create_row.hpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_create_row.hpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_create_table.cpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_create_table.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_create_table.cpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_create_table.cpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_create_table.hpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_create_table.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_create_table.hpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_create_table.hpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_data_type.cpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_data_type.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_data_type.cpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_data_type.cpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_data_type.hpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_data_type.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_data_type.hpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_data_type.hpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_ddl.cpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_ddl.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_ddl.cpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_ddl.cpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_ddl.hpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_ddl.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_ddl.hpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_ddl.hpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_ddl_column.cpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_ddl_column.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_ddl_column.cpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_ddl_column.cpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_ddl_column.hpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_ddl_column.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_ddl_column.hpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_ddl_column.hpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_ddl_constr.cpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_ddl_constr.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_ddl_constr.cpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_ddl_constr.cpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_ddl_constr.hpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_ddl_constr.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_ddl_constr.hpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_ddl_constr.hpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_ddl_row.cpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_ddl_row.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_ddl_row.cpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_ddl_row.cpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_ddl_row.hpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_ddl_row.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_ddl_row.hpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_ddl_row.hpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_delete.cpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_delete.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_delete.cpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_delete.cpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_delete.hpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_delete.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_delete.hpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_delete.hpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_delete_index.cpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_delete_index.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_delete_index.cpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_delete_index.cpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_delete_index.hpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_delete_index.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_delete_index.hpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_delete_index.hpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_delete_lookup.cpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_delete_lookup.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_delete_lookup.cpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_delete_lookup.cpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_delete_lookup.hpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_delete_lookup.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_delete_lookup.hpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_delete_lookup.hpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_delete_scan.cpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_delete_scan.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_delete_scan.cpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_delete_scan.cpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_delete_scan.hpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_delete_scan.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_delete_scan.hpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_delete_scan.hpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_dml.cpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_dml.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_dml.cpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_dml.cpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_dml.hpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_dml.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_dml.hpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_dml.hpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_dml_column.cpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_dml_column.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_dml_column.cpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_dml_column.cpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_dml_column.hpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_dml_column.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_dml_column.hpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_dml_column.hpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_dml_row.cpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_dml_row.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_dml_row.cpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_dml_row.cpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_dml_row.hpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_dml_row.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_dml_row.hpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_dml_row.hpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_drop_index.cpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_drop_index.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_drop_index.cpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_drop_index.cpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_drop_index.hpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_drop_index.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_drop_index.hpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_drop_index.hpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_drop_table.cpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_drop_table.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_drop_table.cpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_drop_table.cpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_drop_table.hpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_drop_table.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_drop_table.hpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_drop_table.hpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_expr.cpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_expr.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_expr.cpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_expr.cpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_expr.hpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_expr.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_expr.hpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_expr.hpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_expr_column.cpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_expr_column.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_expr_column.cpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_expr_column.cpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_expr_column.hpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_expr_column.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_expr_column.hpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_expr_column.hpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_expr_const.cpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_expr_const.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_expr_const.cpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_expr_const.cpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_expr_const.hpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_expr_const.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_expr_const.hpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_expr_const.hpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_expr_conv.cpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_expr_conv.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_expr_conv.cpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_expr_conv.cpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_expr_conv.hpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_expr_conv.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_expr_conv.hpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_expr_conv.hpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_expr_func.cpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_expr_func.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_expr_func.cpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_expr_func.cpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_expr_func.hpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_expr_func.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_expr_func.hpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_expr_func.hpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_expr_op.cpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_expr_op.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_expr_op.cpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_expr_op.cpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_expr_op.hpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_expr_op.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_expr_op.hpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_expr_op.hpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_expr_param.cpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_expr_param.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_expr_param.cpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_expr_param.cpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_expr_param.hpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_expr_param.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_expr_param.hpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_expr_param.hpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_expr_row.cpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_expr_row.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_expr_row.cpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_expr_row.cpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_expr_row.hpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_expr_row.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_expr_row.hpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_expr_row.hpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_idx_column.cpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_idx_column.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_idx_column.cpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_idx_column.cpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_idx_column.hpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_idx_column.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_idx_column.hpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_idx_column.hpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_insert.cpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_insert.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_insert.cpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_insert.cpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_insert.hpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_insert.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_insert.hpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_insert.hpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_pred.cpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_pred.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_pred.cpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_pred.cpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_pred.hpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_pred.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_pred.hpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_pred.hpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_pred_op.cpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_pred_op.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_pred_op.cpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_pred_op.cpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_pred_op.hpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_pred_op.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_pred_op.hpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_pred_op.hpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_query.cpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_query.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_query.cpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_query.cpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_query.hpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_query.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_query.hpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_query.hpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_query_count.cpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_query_count.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_query_count.cpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_query_count.cpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_query_count.hpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_query_count.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_query_count.hpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_query_count.hpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_query_distinct.cpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_query_distinct.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_query_distinct.cpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_query_distinct.cpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_query_distinct.hpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_query_distinct.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_query_distinct.hpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_query_distinct.hpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_query_filter.cpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_query_filter.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_query_filter.cpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_query_filter.cpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_query_filter.hpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_query_filter.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_query_filter.hpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_query_filter.hpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_query_group.cpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_query_group.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_query_group.cpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_query_group.cpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_query_group.hpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_query_group.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_query_group.hpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_query_group.hpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_query_index.cpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_query_index.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_query_index.cpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_query_index.cpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_query_index.hpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_query_index.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_query_index.hpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_query_index.hpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_query_join.cpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_query_join.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_query_join.cpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_query_join.cpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_query_join.hpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_query_join.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_query_join.hpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_query_join.hpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_query_lookup.cpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_query_lookup.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_query_lookup.cpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_query_lookup.cpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_query_lookup.hpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_query_lookup.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_query_lookup.hpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_query_lookup.hpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_query_project.cpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_query_project.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_query_project.cpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_query_project.cpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_query_project.hpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_query_project.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_query_project.hpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_query_project.hpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_query_range.cpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_query_range.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_query_range.cpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_query_range.cpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_query_range.hpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_query_range.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_query_range.hpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_query_range.hpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_query_repeat.cpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_query_repeat.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_query_repeat.cpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_query_repeat.cpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_query_repeat.hpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_query_repeat.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_query_repeat.hpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_query_repeat.hpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_query_scan.cpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_query_scan.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_query_scan.cpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_query_scan.cpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_query_scan.hpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_query_scan.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_query_scan.hpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_query_scan.hpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_query_sort.cpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_query_sort.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_query_sort.cpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_query_sort.cpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_query_sort.hpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_query_sort.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_query_sort.hpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_query_sort.hpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_query_sys.cpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_query_sys.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_query_sys.cpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_query_sys.cpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_query_sys.hpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_query_sys.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_query_sys.hpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_query_sys.hpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_root.cpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_root.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_root.cpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_root.cpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_root.hpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_root.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_root.hpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_root.hpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_select.cpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_select.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_select.cpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_select.cpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_select.hpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_select.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_select.hpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_select.hpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_set_row.cpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_set_row.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_set_row.cpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_set_row.cpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_set_row.hpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_set_row.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_set_row.hpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_set_row.hpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_stmt.cpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_stmt.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_stmt.cpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_stmt.cpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_stmt.hpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_stmt.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_stmt.hpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_stmt.hpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_table.cpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_table.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_table.cpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_table.cpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_table.hpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_table.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_table.hpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_table.hpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_table_list.cpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_table_list.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_table_list.cpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_table_list.cpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_table_list.hpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_table_list.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_table_list.hpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_table_list.hpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_update.cpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_update.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_update.cpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_update.cpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_update.hpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_update.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_update.hpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_update.hpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_update_index.cpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_update_index.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_update_index.cpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_update_index.cpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_update_index.hpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_update_index.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_update_index.hpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_update_index.hpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_update_lookup.cpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_update_lookup.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_update_lookup.cpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_update_lookup.cpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_update_lookup.hpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_update_lookup.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_update_lookup.hpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_update_lookup.hpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_update_scan.cpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_update_scan.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_update_scan.cpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_update_scan.cpp diff --git a/ndb/src/old_files/client/odbc/codegen/Code_update_scan.hpp b/storage/ndb/src/old_files/client/odbc/codegen/Code_update_scan.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Code_update_scan.hpp rename to storage/ndb/src/old_files/client/odbc/codegen/Code_update_scan.hpp diff --git a/ndb/src/old_files/client/odbc/codegen/Makefile b/storage/ndb/src/old_files/client/odbc/codegen/Makefile similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/Makefile rename to storage/ndb/src/old_files/client/odbc/codegen/Makefile diff --git a/ndb/src/old_files/client/odbc/codegen/SimpleGram.ypp b/storage/ndb/src/old_files/client/odbc/codegen/SimpleGram.ypp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/SimpleGram.ypp rename to storage/ndb/src/old_files/client/odbc/codegen/SimpleGram.ypp diff --git a/ndb/src/old_files/client/odbc/codegen/SimpleParser.cpp b/storage/ndb/src/old_files/client/odbc/codegen/SimpleParser.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/SimpleParser.cpp rename to storage/ndb/src/old_files/client/odbc/codegen/SimpleParser.cpp diff --git a/ndb/src/old_files/client/odbc/codegen/SimpleParser.hpp b/storage/ndb/src/old_files/client/odbc/codegen/SimpleParser.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/SimpleParser.hpp rename to storage/ndb/src/old_files/client/odbc/codegen/SimpleParser.hpp diff --git a/ndb/src/old_files/client/odbc/codegen/SimpleScan.lpp b/storage/ndb/src/old_files/client/odbc/codegen/SimpleScan.lpp similarity index 100% rename from ndb/src/old_files/client/odbc/codegen/SimpleScan.lpp rename to storage/ndb/src/old_files/client/odbc/codegen/SimpleScan.lpp diff --git a/ndb/src/old_files/client/odbc/common/AttrArea.cpp b/storage/ndb/src/old_files/client/odbc/common/AttrArea.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/common/AttrArea.cpp rename to storage/ndb/src/old_files/client/odbc/common/AttrArea.cpp diff --git a/ndb/src/old_files/client/odbc/common/AttrArea.hpp b/storage/ndb/src/old_files/client/odbc/common/AttrArea.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/common/AttrArea.hpp rename to storage/ndb/src/old_files/client/odbc/common/AttrArea.hpp diff --git a/ndb/src/old_files/client/odbc/common/CodeTree.cpp b/storage/ndb/src/old_files/client/odbc/common/CodeTree.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/common/CodeTree.cpp rename to storage/ndb/src/old_files/client/odbc/common/CodeTree.cpp diff --git a/ndb/src/old_files/client/odbc/common/CodeTree.hpp b/storage/ndb/src/old_files/client/odbc/common/CodeTree.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/common/CodeTree.hpp rename to storage/ndb/src/old_files/client/odbc/common/CodeTree.hpp diff --git a/ndb/src/old_files/client/odbc/common/ConnArea.cpp b/storage/ndb/src/old_files/client/odbc/common/ConnArea.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/common/ConnArea.cpp rename to storage/ndb/src/old_files/client/odbc/common/ConnArea.cpp diff --git a/ndb/src/old_files/client/odbc/common/ConnArea.hpp b/storage/ndb/src/old_files/client/odbc/common/ConnArea.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/common/ConnArea.hpp rename to storage/ndb/src/old_files/client/odbc/common/ConnArea.hpp diff --git a/ndb/src/old_files/client/odbc/common/Ctx.cpp b/storage/ndb/src/old_files/client/odbc/common/Ctx.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/common/Ctx.cpp rename to storage/ndb/src/old_files/client/odbc/common/Ctx.cpp diff --git a/ndb/src/old_files/client/odbc/common/Ctx.hpp b/storage/ndb/src/old_files/client/odbc/common/Ctx.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/common/Ctx.hpp rename to storage/ndb/src/old_files/client/odbc/common/Ctx.hpp diff --git a/ndb/src/old_files/client/odbc/common/DataField.cpp b/storage/ndb/src/old_files/client/odbc/common/DataField.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/common/DataField.cpp rename to storage/ndb/src/old_files/client/odbc/common/DataField.cpp diff --git a/ndb/src/old_files/client/odbc/common/DataField.hpp b/storage/ndb/src/old_files/client/odbc/common/DataField.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/common/DataField.hpp rename to storage/ndb/src/old_files/client/odbc/common/DataField.hpp diff --git a/ndb/src/old_files/client/odbc/common/DataRow.cpp b/storage/ndb/src/old_files/client/odbc/common/DataRow.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/common/DataRow.cpp rename to storage/ndb/src/old_files/client/odbc/common/DataRow.cpp diff --git a/ndb/src/old_files/client/odbc/common/DataRow.hpp b/storage/ndb/src/old_files/client/odbc/common/DataRow.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/common/DataRow.hpp rename to storage/ndb/src/old_files/client/odbc/common/DataRow.hpp diff --git a/ndb/src/old_files/client/odbc/common/DataType.cpp b/storage/ndb/src/old_files/client/odbc/common/DataType.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/common/DataType.cpp rename to storage/ndb/src/old_files/client/odbc/common/DataType.cpp diff --git a/ndb/src/old_files/client/odbc/common/DataType.hpp b/storage/ndb/src/old_files/client/odbc/common/DataType.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/common/DataType.hpp rename to storage/ndb/src/old_files/client/odbc/common/DataType.hpp diff --git a/ndb/src/old_files/client/odbc/common/DescArea.cpp b/storage/ndb/src/old_files/client/odbc/common/DescArea.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/common/DescArea.cpp rename to storage/ndb/src/old_files/client/odbc/common/DescArea.cpp diff --git a/ndb/src/old_files/client/odbc/common/DescArea.hpp b/storage/ndb/src/old_files/client/odbc/common/DescArea.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/common/DescArea.hpp rename to storage/ndb/src/old_files/client/odbc/common/DescArea.hpp diff --git a/ndb/src/old_files/client/odbc/common/DiagArea.cpp b/storage/ndb/src/old_files/client/odbc/common/DiagArea.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/common/DiagArea.cpp rename to storage/ndb/src/old_files/client/odbc/common/DiagArea.cpp diff --git a/ndb/src/old_files/client/odbc/common/DiagArea.hpp b/storage/ndb/src/old_files/client/odbc/common/DiagArea.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/common/DiagArea.hpp rename to storage/ndb/src/old_files/client/odbc/common/DiagArea.hpp diff --git a/ndb/src/old_files/client/odbc/common/Makefile b/storage/ndb/src/old_files/client/odbc/common/Makefile similarity index 100% rename from ndb/src/old_files/client/odbc/common/Makefile rename to storage/ndb/src/old_files/client/odbc/common/Makefile diff --git a/ndb/src/old_files/client/odbc/common/OdbcData.cpp b/storage/ndb/src/old_files/client/odbc/common/OdbcData.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/common/OdbcData.cpp rename to storage/ndb/src/old_files/client/odbc/common/OdbcData.cpp diff --git a/ndb/src/old_files/client/odbc/common/OdbcData.hpp b/storage/ndb/src/old_files/client/odbc/common/OdbcData.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/common/OdbcData.hpp rename to storage/ndb/src/old_files/client/odbc/common/OdbcData.hpp diff --git a/ndb/src/old_files/client/odbc/common/ResultArea.cpp b/storage/ndb/src/old_files/client/odbc/common/ResultArea.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/common/ResultArea.cpp rename to storage/ndb/src/old_files/client/odbc/common/ResultArea.cpp diff --git a/ndb/src/old_files/client/odbc/common/ResultArea.hpp b/storage/ndb/src/old_files/client/odbc/common/ResultArea.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/common/ResultArea.hpp rename to storage/ndb/src/old_files/client/odbc/common/ResultArea.hpp diff --git a/ndb/src/old_files/client/odbc/common/Sqlstate.cpp b/storage/ndb/src/old_files/client/odbc/common/Sqlstate.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/common/Sqlstate.cpp rename to storage/ndb/src/old_files/client/odbc/common/Sqlstate.cpp diff --git a/ndb/src/old_files/client/odbc/common/Sqlstate.hpp b/storage/ndb/src/old_files/client/odbc/common/Sqlstate.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/common/Sqlstate.hpp rename to storage/ndb/src/old_files/client/odbc/common/Sqlstate.hpp diff --git a/ndb/src/old_files/client/odbc/common/StmtArea.cpp b/storage/ndb/src/old_files/client/odbc/common/StmtArea.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/common/StmtArea.cpp rename to storage/ndb/src/old_files/client/odbc/common/StmtArea.cpp diff --git a/ndb/src/old_files/client/odbc/common/StmtArea.hpp b/storage/ndb/src/old_files/client/odbc/common/StmtArea.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/common/StmtArea.hpp rename to storage/ndb/src/old_files/client/odbc/common/StmtArea.hpp diff --git a/ndb/src/old_files/client/odbc/common/StmtInfo.cpp b/storage/ndb/src/old_files/client/odbc/common/StmtInfo.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/common/StmtInfo.cpp rename to storage/ndb/src/old_files/client/odbc/common/StmtInfo.cpp diff --git a/ndb/src/old_files/client/odbc/common/StmtInfo.hpp b/storage/ndb/src/old_files/client/odbc/common/StmtInfo.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/common/StmtInfo.hpp rename to storage/ndb/src/old_files/client/odbc/common/StmtInfo.hpp diff --git a/ndb/src/old_files/client/odbc/common/common.cpp b/storage/ndb/src/old_files/client/odbc/common/common.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/common/common.cpp rename to storage/ndb/src/old_files/client/odbc/common/common.cpp diff --git a/ndb/src/old_files/client/odbc/common/common.hpp b/storage/ndb/src/old_files/client/odbc/common/common.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/common/common.hpp rename to storage/ndb/src/old_files/client/odbc/common/common.hpp diff --git a/ndb/src/old_files/client/odbc/dictionary/DictCatalog.cpp b/storage/ndb/src/old_files/client/odbc/dictionary/DictCatalog.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/dictionary/DictCatalog.cpp rename to storage/ndb/src/old_files/client/odbc/dictionary/DictCatalog.cpp diff --git a/ndb/src/old_files/client/odbc/dictionary/DictCatalog.hpp b/storage/ndb/src/old_files/client/odbc/dictionary/DictCatalog.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/dictionary/DictCatalog.hpp rename to storage/ndb/src/old_files/client/odbc/dictionary/DictCatalog.hpp diff --git a/ndb/src/old_files/client/odbc/dictionary/DictColumn.cpp b/storage/ndb/src/old_files/client/odbc/dictionary/DictColumn.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/dictionary/DictColumn.cpp rename to storage/ndb/src/old_files/client/odbc/dictionary/DictColumn.cpp diff --git a/ndb/src/old_files/client/odbc/dictionary/DictColumn.hpp b/storage/ndb/src/old_files/client/odbc/dictionary/DictColumn.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/dictionary/DictColumn.hpp rename to storage/ndb/src/old_files/client/odbc/dictionary/DictColumn.hpp diff --git a/ndb/src/old_files/client/odbc/dictionary/DictIndex.cpp b/storage/ndb/src/old_files/client/odbc/dictionary/DictIndex.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/dictionary/DictIndex.cpp rename to storage/ndb/src/old_files/client/odbc/dictionary/DictIndex.cpp diff --git a/ndb/src/old_files/client/odbc/dictionary/DictIndex.hpp b/storage/ndb/src/old_files/client/odbc/dictionary/DictIndex.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/dictionary/DictIndex.hpp rename to storage/ndb/src/old_files/client/odbc/dictionary/DictIndex.hpp diff --git a/ndb/src/old_files/client/odbc/dictionary/DictSchema.cpp b/storage/ndb/src/old_files/client/odbc/dictionary/DictSchema.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/dictionary/DictSchema.cpp rename to storage/ndb/src/old_files/client/odbc/dictionary/DictSchema.cpp diff --git a/ndb/src/old_files/client/odbc/dictionary/DictSchema.hpp b/storage/ndb/src/old_files/client/odbc/dictionary/DictSchema.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/dictionary/DictSchema.hpp rename to storage/ndb/src/old_files/client/odbc/dictionary/DictSchema.hpp diff --git a/ndb/src/old_files/client/odbc/dictionary/DictSys.cpp b/storage/ndb/src/old_files/client/odbc/dictionary/DictSys.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/dictionary/DictSys.cpp rename to storage/ndb/src/old_files/client/odbc/dictionary/DictSys.cpp diff --git a/ndb/src/old_files/client/odbc/dictionary/DictSys.hpp b/storage/ndb/src/old_files/client/odbc/dictionary/DictSys.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/dictionary/DictSys.hpp rename to storage/ndb/src/old_files/client/odbc/dictionary/DictSys.hpp diff --git a/ndb/src/old_files/client/odbc/dictionary/DictTable.cpp b/storage/ndb/src/old_files/client/odbc/dictionary/DictTable.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/dictionary/DictTable.cpp rename to storage/ndb/src/old_files/client/odbc/dictionary/DictTable.cpp diff --git a/ndb/src/old_files/client/odbc/dictionary/DictTable.hpp b/storage/ndb/src/old_files/client/odbc/dictionary/DictTable.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/dictionary/DictTable.hpp rename to storage/ndb/src/old_files/client/odbc/dictionary/DictTable.hpp diff --git a/ndb/src/old_files/client/odbc/dictionary/Makefile b/storage/ndb/src/old_files/client/odbc/dictionary/Makefile similarity index 100% rename from ndb/src/old_files/client/odbc/dictionary/Makefile rename to storage/ndb/src/old_files/client/odbc/dictionary/Makefile diff --git a/ndb/src/old_files/client/odbc/docs/class.fig b/storage/ndb/src/old_files/client/odbc/docs/class.fig similarity index 100% rename from ndb/src/old_files/client/odbc/docs/class.fig rename to storage/ndb/src/old_files/client/odbc/docs/class.fig diff --git a/ndb/src/old_files/client/odbc/docs/descfield.pl b/storage/ndb/src/old_files/client/odbc/docs/descfield.pl similarity index 100% rename from ndb/src/old_files/client/odbc/docs/descfield.pl rename to storage/ndb/src/old_files/client/odbc/docs/descfield.pl diff --git a/ndb/src/old_files/client/odbc/docs/diag.txt b/storage/ndb/src/old_files/client/odbc/docs/diag.txt similarity index 100% rename from ndb/src/old_files/client/odbc/docs/diag.txt rename to storage/ndb/src/old_files/client/odbc/docs/diag.txt diff --git a/ndb/src/old_files/client/odbc/docs/getinfo.pl b/storage/ndb/src/old_files/client/odbc/docs/getinfo.pl similarity index 100% rename from ndb/src/old_files/client/odbc/docs/getinfo.pl rename to storage/ndb/src/old_files/client/odbc/docs/getinfo.pl diff --git a/ndb/src/old_files/client/odbc/docs/gettypeinfo.pl b/storage/ndb/src/old_files/client/odbc/docs/gettypeinfo.pl similarity index 100% rename from ndb/src/old_files/client/odbc/docs/gettypeinfo.pl rename to storage/ndb/src/old_files/client/odbc/docs/gettypeinfo.pl diff --git a/ndb/src/old_files/client/odbc/docs/handleattr.pl b/storage/ndb/src/old_files/client/odbc/docs/handleattr.pl similarity index 100% rename from ndb/src/old_files/client/odbc/docs/handleattr.pl rename to storage/ndb/src/old_files/client/odbc/docs/handleattr.pl diff --git a/ndb/src/old_files/client/odbc/docs/main.hpp b/storage/ndb/src/old_files/client/odbc/docs/main.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/docs/main.hpp rename to storage/ndb/src/old_files/client/odbc/docs/main.hpp diff --git a/ndb/src/old_files/client/odbc/docs/ndbodbc.html b/storage/ndb/src/old_files/client/odbc/docs/ndbodbc.html similarity index 100% rename from ndb/src/old_files/client/odbc/docs/ndbodbc.html rename to storage/ndb/src/old_files/client/odbc/docs/ndbodbc.html diff --git a/ndb/src/old_files/client/odbc/docs/select.fig b/storage/ndb/src/old_files/client/odbc/docs/select.fig similarity index 100% rename from ndb/src/old_files/client/odbc/docs/select.fig rename to storage/ndb/src/old_files/client/odbc/docs/select.fig diff --git a/ndb/src/old_files/client/odbc/docs/systables.pl b/storage/ndb/src/old_files/client/odbc/docs/systables.pl similarity index 100% rename from ndb/src/old_files/client/odbc/docs/systables.pl rename to storage/ndb/src/old_files/client/odbc/docs/systables.pl diff --git a/ndb/src/old_files/client/odbc/docs/type.txt b/storage/ndb/src/old_files/client/odbc/docs/type.txt similarity index 100% rename from ndb/src/old_files/client/odbc/docs/type.txt rename to storage/ndb/src/old_files/client/odbc/docs/type.txt diff --git a/ndb/src/old_files/client/odbc/driver/Func.data b/storage/ndb/src/old_files/client/odbc/driver/Func.data similarity index 100% rename from ndb/src/old_files/client/odbc/driver/Func.data rename to storage/ndb/src/old_files/client/odbc/driver/Func.data diff --git a/ndb/src/old_files/client/odbc/driver/Func.pl b/storage/ndb/src/old_files/client/odbc/driver/Func.pl similarity index 100% rename from ndb/src/old_files/client/odbc/driver/Func.pl rename to storage/ndb/src/old_files/client/odbc/driver/Func.pl diff --git a/ndb/src/old_files/client/odbc/driver/Makefile b/storage/ndb/src/old_files/client/odbc/driver/Makefile similarity index 100% rename from ndb/src/old_files/client/odbc/driver/Makefile rename to storage/ndb/src/old_files/client/odbc/driver/Makefile diff --git a/ndb/src/old_files/client/odbc/driver/SQLAllocConnect.cpp b/storage/ndb/src/old_files/client/odbc/driver/SQLAllocConnect.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/SQLAllocConnect.cpp rename to storage/ndb/src/old_files/client/odbc/driver/SQLAllocConnect.cpp diff --git a/ndb/src/old_files/client/odbc/driver/SQLAllocEnv.cpp b/storage/ndb/src/old_files/client/odbc/driver/SQLAllocEnv.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/SQLAllocEnv.cpp rename to storage/ndb/src/old_files/client/odbc/driver/SQLAllocEnv.cpp diff --git a/ndb/src/old_files/client/odbc/driver/SQLAllocHandle.cpp b/storage/ndb/src/old_files/client/odbc/driver/SQLAllocHandle.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/SQLAllocHandle.cpp rename to storage/ndb/src/old_files/client/odbc/driver/SQLAllocHandle.cpp diff --git a/ndb/src/old_files/client/odbc/driver/SQLAllocHandleStd.cpp b/storage/ndb/src/old_files/client/odbc/driver/SQLAllocHandleStd.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/SQLAllocHandleStd.cpp rename to storage/ndb/src/old_files/client/odbc/driver/SQLAllocHandleStd.cpp diff --git a/ndb/src/old_files/client/odbc/driver/SQLAllocStmt.cpp b/storage/ndb/src/old_files/client/odbc/driver/SQLAllocStmt.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/SQLAllocStmt.cpp rename to storage/ndb/src/old_files/client/odbc/driver/SQLAllocStmt.cpp diff --git a/ndb/src/old_files/client/odbc/driver/SQLBindCol.cpp b/storage/ndb/src/old_files/client/odbc/driver/SQLBindCol.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/SQLBindCol.cpp rename to storage/ndb/src/old_files/client/odbc/driver/SQLBindCol.cpp diff --git a/ndb/src/old_files/client/odbc/driver/SQLBindParam.cpp b/storage/ndb/src/old_files/client/odbc/driver/SQLBindParam.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/SQLBindParam.cpp rename to storage/ndb/src/old_files/client/odbc/driver/SQLBindParam.cpp diff --git a/ndb/src/old_files/client/odbc/driver/SQLBindParameter.cpp b/storage/ndb/src/old_files/client/odbc/driver/SQLBindParameter.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/SQLBindParameter.cpp rename to storage/ndb/src/old_files/client/odbc/driver/SQLBindParameter.cpp diff --git a/ndb/src/old_files/client/odbc/driver/SQLBrowseConnect.cpp b/storage/ndb/src/old_files/client/odbc/driver/SQLBrowseConnect.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/SQLBrowseConnect.cpp rename to storage/ndb/src/old_files/client/odbc/driver/SQLBrowseConnect.cpp diff --git a/ndb/src/old_files/client/odbc/driver/SQLBulkOperations.cpp b/storage/ndb/src/old_files/client/odbc/driver/SQLBulkOperations.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/SQLBulkOperations.cpp rename to storage/ndb/src/old_files/client/odbc/driver/SQLBulkOperations.cpp diff --git a/ndb/src/old_files/client/odbc/driver/SQLCancel.cpp b/storage/ndb/src/old_files/client/odbc/driver/SQLCancel.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/SQLCancel.cpp rename to storage/ndb/src/old_files/client/odbc/driver/SQLCancel.cpp diff --git a/ndb/src/old_files/client/odbc/driver/SQLCloseCursor.cpp b/storage/ndb/src/old_files/client/odbc/driver/SQLCloseCursor.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/SQLCloseCursor.cpp rename to storage/ndb/src/old_files/client/odbc/driver/SQLCloseCursor.cpp diff --git a/ndb/src/old_files/client/odbc/driver/SQLColAttribute.cpp b/storage/ndb/src/old_files/client/odbc/driver/SQLColAttribute.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/SQLColAttribute.cpp rename to storage/ndb/src/old_files/client/odbc/driver/SQLColAttribute.cpp diff --git a/ndb/src/old_files/client/odbc/driver/SQLColAttributes.cpp b/storage/ndb/src/old_files/client/odbc/driver/SQLColAttributes.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/SQLColAttributes.cpp rename to storage/ndb/src/old_files/client/odbc/driver/SQLColAttributes.cpp diff --git a/ndb/src/old_files/client/odbc/driver/SQLColumnPrivileges.cpp b/storage/ndb/src/old_files/client/odbc/driver/SQLColumnPrivileges.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/SQLColumnPrivileges.cpp rename to storage/ndb/src/old_files/client/odbc/driver/SQLColumnPrivileges.cpp diff --git a/ndb/src/old_files/client/odbc/driver/SQLColumns.cpp b/storage/ndb/src/old_files/client/odbc/driver/SQLColumns.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/SQLColumns.cpp rename to storage/ndb/src/old_files/client/odbc/driver/SQLColumns.cpp diff --git a/ndb/src/old_files/client/odbc/driver/SQLConnect.cpp b/storage/ndb/src/old_files/client/odbc/driver/SQLConnect.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/SQLConnect.cpp rename to storage/ndb/src/old_files/client/odbc/driver/SQLConnect.cpp diff --git a/ndb/src/old_files/client/odbc/driver/SQLCopyDesc.cpp b/storage/ndb/src/old_files/client/odbc/driver/SQLCopyDesc.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/SQLCopyDesc.cpp rename to storage/ndb/src/old_files/client/odbc/driver/SQLCopyDesc.cpp diff --git a/ndb/src/old_files/client/odbc/driver/SQLDataSources.cpp b/storage/ndb/src/old_files/client/odbc/driver/SQLDataSources.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/SQLDataSources.cpp rename to storage/ndb/src/old_files/client/odbc/driver/SQLDataSources.cpp diff --git a/ndb/src/old_files/client/odbc/driver/SQLDescribeCol.cpp b/storage/ndb/src/old_files/client/odbc/driver/SQLDescribeCol.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/SQLDescribeCol.cpp rename to storage/ndb/src/old_files/client/odbc/driver/SQLDescribeCol.cpp diff --git a/ndb/src/old_files/client/odbc/driver/SQLDescribeParam.cpp b/storage/ndb/src/old_files/client/odbc/driver/SQLDescribeParam.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/SQLDescribeParam.cpp rename to storage/ndb/src/old_files/client/odbc/driver/SQLDescribeParam.cpp diff --git a/ndb/src/old_files/client/odbc/driver/SQLDisconnect.cpp b/storage/ndb/src/old_files/client/odbc/driver/SQLDisconnect.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/SQLDisconnect.cpp rename to storage/ndb/src/old_files/client/odbc/driver/SQLDisconnect.cpp diff --git a/ndb/src/old_files/client/odbc/driver/SQLDriverConnect.cpp b/storage/ndb/src/old_files/client/odbc/driver/SQLDriverConnect.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/SQLDriverConnect.cpp rename to storage/ndb/src/old_files/client/odbc/driver/SQLDriverConnect.cpp diff --git a/ndb/src/old_files/client/odbc/driver/SQLDrivers.cpp b/storage/ndb/src/old_files/client/odbc/driver/SQLDrivers.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/SQLDrivers.cpp rename to storage/ndb/src/old_files/client/odbc/driver/SQLDrivers.cpp diff --git a/ndb/src/old_files/client/odbc/driver/SQLEndTran.cpp b/storage/ndb/src/old_files/client/odbc/driver/SQLEndTran.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/SQLEndTran.cpp rename to storage/ndb/src/old_files/client/odbc/driver/SQLEndTran.cpp diff --git a/ndb/src/old_files/client/odbc/driver/SQLError.cpp b/storage/ndb/src/old_files/client/odbc/driver/SQLError.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/SQLError.cpp rename to storage/ndb/src/old_files/client/odbc/driver/SQLError.cpp diff --git a/ndb/src/old_files/client/odbc/driver/SQLExecDirect.cpp b/storage/ndb/src/old_files/client/odbc/driver/SQLExecDirect.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/SQLExecDirect.cpp rename to storage/ndb/src/old_files/client/odbc/driver/SQLExecDirect.cpp diff --git a/ndb/src/old_files/client/odbc/driver/SQLExecute.cpp b/storage/ndb/src/old_files/client/odbc/driver/SQLExecute.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/SQLExecute.cpp rename to storage/ndb/src/old_files/client/odbc/driver/SQLExecute.cpp diff --git a/ndb/src/old_files/client/odbc/driver/SQLExtendedFetch.cpp b/storage/ndb/src/old_files/client/odbc/driver/SQLExtendedFetch.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/SQLExtendedFetch.cpp rename to storage/ndb/src/old_files/client/odbc/driver/SQLExtendedFetch.cpp diff --git a/ndb/src/old_files/client/odbc/driver/SQLFetch.cpp b/storage/ndb/src/old_files/client/odbc/driver/SQLFetch.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/SQLFetch.cpp rename to storage/ndb/src/old_files/client/odbc/driver/SQLFetch.cpp diff --git a/ndb/src/old_files/client/odbc/driver/SQLFetchScroll.cpp b/storage/ndb/src/old_files/client/odbc/driver/SQLFetchScroll.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/SQLFetchScroll.cpp rename to storage/ndb/src/old_files/client/odbc/driver/SQLFetchScroll.cpp diff --git a/ndb/src/old_files/client/odbc/driver/SQLForeignKeys.cpp b/storage/ndb/src/old_files/client/odbc/driver/SQLForeignKeys.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/SQLForeignKeys.cpp rename to storage/ndb/src/old_files/client/odbc/driver/SQLForeignKeys.cpp diff --git a/ndb/src/old_files/client/odbc/driver/SQLFreeConnect.cpp b/storage/ndb/src/old_files/client/odbc/driver/SQLFreeConnect.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/SQLFreeConnect.cpp rename to storage/ndb/src/old_files/client/odbc/driver/SQLFreeConnect.cpp diff --git a/ndb/src/old_files/client/odbc/driver/SQLFreeEnv.cpp b/storage/ndb/src/old_files/client/odbc/driver/SQLFreeEnv.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/SQLFreeEnv.cpp rename to storage/ndb/src/old_files/client/odbc/driver/SQLFreeEnv.cpp diff --git a/ndb/src/old_files/client/odbc/driver/SQLFreeHandle.cpp b/storage/ndb/src/old_files/client/odbc/driver/SQLFreeHandle.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/SQLFreeHandle.cpp rename to storage/ndb/src/old_files/client/odbc/driver/SQLFreeHandle.cpp diff --git a/ndb/src/old_files/client/odbc/driver/SQLFreeStmt.cpp b/storage/ndb/src/old_files/client/odbc/driver/SQLFreeStmt.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/SQLFreeStmt.cpp rename to storage/ndb/src/old_files/client/odbc/driver/SQLFreeStmt.cpp diff --git a/ndb/src/old_files/client/odbc/driver/SQLGetConnectAttr.cpp b/storage/ndb/src/old_files/client/odbc/driver/SQLGetConnectAttr.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/SQLGetConnectAttr.cpp rename to storage/ndb/src/old_files/client/odbc/driver/SQLGetConnectAttr.cpp diff --git a/ndb/src/old_files/client/odbc/driver/SQLGetConnectOption.cpp b/storage/ndb/src/old_files/client/odbc/driver/SQLGetConnectOption.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/SQLGetConnectOption.cpp rename to storage/ndb/src/old_files/client/odbc/driver/SQLGetConnectOption.cpp diff --git a/ndb/src/old_files/client/odbc/driver/SQLGetCursorName.cpp b/storage/ndb/src/old_files/client/odbc/driver/SQLGetCursorName.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/SQLGetCursorName.cpp rename to storage/ndb/src/old_files/client/odbc/driver/SQLGetCursorName.cpp diff --git a/ndb/src/old_files/client/odbc/driver/SQLGetData.cpp b/storage/ndb/src/old_files/client/odbc/driver/SQLGetData.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/SQLGetData.cpp rename to storage/ndb/src/old_files/client/odbc/driver/SQLGetData.cpp diff --git a/ndb/src/old_files/client/odbc/driver/SQLGetDescField.cpp b/storage/ndb/src/old_files/client/odbc/driver/SQLGetDescField.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/SQLGetDescField.cpp rename to storage/ndb/src/old_files/client/odbc/driver/SQLGetDescField.cpp diff --git a/ndb/src/old_files/client/odbc/driver/SQLGetDescRec.cpp b/storage/ndb/src/old_files/client/odbc/driver/SQLGetDescRec.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/SQLGetDescRec.cpp rename to storage/ndb/src/old_files/client/odbc/driver/SQLGetDescRec.cpp diff --git a/ndb/src/old_files/client/odbc/driver/SQLGetDiagField.cpp b/storage/ndb/src/old_files/client/odbc/driver/SQLGetDiagField.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/SQLGetDiagField.cpp rename to storage/ndb/src/old_files/client/odbc/driver/SQLGetDiagField.cpp diff --git a/ndb/src/old_files/client/odbc/driver/SQLGetDiagRec.cpp b/storage/ndb/src/old_files/client/odbc/driver/SQLGetDiagRec.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/SQLGetDiagRec.cpp rename to storage/ndb/src/old_files/client/odbc/driver/SQLGetDiagRec.cpp diff --git a/ndb/src/old_files/client/odbc/driver/SQLGetEnvAttr.cpp b/storage/ndb/src/old_files/client/odbc/driver/SQLGetEnvAttr.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/SQLGetEnvAttr.cpp rename to storage/ndb/src/old_files/client/odbc/driver/SQLGetEnvAttr.cpp diff --git a/ndb/src/old_files/client/odbc/driver/SQLGetFunctions.cpp b/storage/ndb/src/old_files/client/odbc/driver/SQLGetFunctions.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/SQLGetFunctions.cpp rename to storage/ndb/src/old_files/client/odbc/driver/SQLGetFunctions.cpp diff --git a/ndb/src/old_files/client/odbc/driver/SQLGetInfo.cpp b/storage/ndb/src/old_files/client/odbc/driver/SQLGetInfo.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/SQLGetInfo.cpp rename to storage/ndb/src/old_files/client/odbc/driver/SQLGetInfo.cpp diff --git a/ndb/src/old_files/client/odbc/driver/SQLGetStmtAttr.cpp b/storage/ndb/src/old_files/client/odbc/driver/SQLGetStmtAttr.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/SQLGetStmtAttr.cpp rename to storage/ndb/src/old_files/client/odbc/driver/SQLGetStmtAttr.cpp diff --git a/ndb/src/old_files/client/odbc/driver/SQLGetStmtOption.cpp b/storage/ndb/src/old_files/client/odbc/driver/SQLGetStmtOption.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/SQLGetStmtOption.cpp rename to storage/ndb/src/old_files/client/odbc/driver/SQLGetStmtOption.cpp diff --git a/ndb/src/old_files/client/odbc/driver/SQLGetTypeInfo.cpp b/storage/ndb/src/old_files/client/odbc/driver/SQLGetTypeInfo.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/SQLGetTypeInfo.cpp rename to storage/ndb/src/old_files/client/odbc/driver/SQLGetTypeInfo.cpp diff --git a/ndb/src/old_files/client/odbc/driver/SQLMoreResults.cpp b/storage/ndb/src/old_files/client/odbc/driver/SQLMoreResults.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/SQLMoreResults.cpp rename to storage/ndb/src/old_files/client/odbc/driver/SQLMoreResults.cpp diff --git a/ndb/src/old_files/client/odbc/driver/SQLNativeSql.cpp b/storage/ndb/src/old_files/client/odbc/driver/SQLNativeSql.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/SQLNativeSql.cpp rename to storage/ndb/src/old_files/client/odbc/driver/SQLNativeSql.cpp diff --git a/ndb/src/old_files/client/odbc/driver/SQLNumParams.cpp b/storage/ndb/src/old_files/client/odbc/driver/SQLNumParams.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/SQLNumParams.cpp rename to storage/ndb/src/old_files/client/odbc/driver/SQLNumParams.cpp diff --git a/ndb/src/old_files/client/odbc/driver/SQLNumResultCols.cpp b/storage/ndb/src/old_files/client/odbc/driver/SQLNumResultCols.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/SQLNumResultCols.cpp rename to storage/ndb/src/old_files/client/odbc/driver/SQLNumResultCols.cpp diff --git a/ndb/src/old_files/client/odbc/driver/SQLParamData.cpp b/storage/ndb/src/old_files/client/odbc/driver/SQLParamData.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/SQLParamData.cpp rename to storage/ndb/src/old_files/client/odbc/driver/SQLParamData.cpp diff --git a/ndb/src/old_files/client/odbc/driver/SQLParamOptions.cpp b/storage/ndb/src/old_files/client/odbc/driver/SQLParamOptions.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/SQLParamOptions.cpp rename to storage/ndb/src/old_files/client/odbc/driver/SQLParamOptions.cpp diff --git a/ndb/src/old_files/client/odbc/driver/SQLPrepare.cpp b/storage/ndb/src/old_files/client/odbc/driver/SQLPrepare.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/SQLPrepare.cpp rename to storage/ndb/src/old_files/client/odbc/driver/SQLPrepare.cpp diff --git a/ndb/src/old_files/client/odbc/driver/SQLPrimaryKeys.cpp b/storage/ndb/src/old_files/client/odbc/driver/SQLPrimaryKeys.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/SQLPrimaryKeys.cpp rename to storage/ndb/src/old_files/client/odbc/driver/SQLPrimaryKeys.cpp diff --git a/ndb/src/old_files/client/odbc/driver/SQLProcedureColumns.cpp b/storage/ndb/src/old_files/client/odbc/driver/SQLProcedureColumns.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/SQLProcedureColumns.cpp rename to storage/ndb/src/old_files/client/odbc/driver/SQLProcedureColumns.cpp diff --git a/ndb/src/old_files/client/odbc/driver/SQLProcedures.cpp b/storage/ndb/src/old_files/client/odbc/driver/SQLProcedures.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/SQLProcedures.cpp rename to storage/ndb/src/old_files/client/odbc/driver/SQLProcedures.cpp diff --git a/ndb/src/old_files/client/odbc/driver/SQLPutData.cpp b/storage/ndb/src/old_files/client/odbc/driver/SQLPutData.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/SQLPutData.cpp rename to storage/ndb/src/old_files/client/odbc/driver/SQLPutData.cpp diff --git a/ndb/src/old_files/client/odbc/driver/SQLRowCount.cpp b/storage/ndb/src/old_files/client/odbc/driver/SQLRowCount.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/SQLRowCount.cpp rename to storage/ndb/src/old_files/client/odbc/driver/SQLRowCount.cpp diff --git a/ndb/src/old_files/client/odbc/driver/SQLSetConnectAttr.cpp b/storage/ndb/src/old_files/client/odbc/driver/SQLSetConnectAttr.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/SQLSetConnectAttr.cpp rename to storage/ndb/src/old_files/client/odbc/driver/SQLSetConnectAttr.cpp diff --git a/ndb/src/old_files/client/odbc/driver/SQLSetConnectOption.cpp b/storage/ndb/src/old_files/client/odbc/driver/SQLSetConnectOption.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/SQLSetConnectOption.cpp rename to storage/ndb/src/old_files/client/odbc/driver/SQLSetConnectOption.cpp diff --git a/ndb/src/old_files/client/odbc/driver/SQLSetCursorName.cpp b/storage/ndb/src/old_files/client/odbc/driver/SQLSetCursorName.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/SQLSetCursorName.cpp rename to storage/ndb/src/old_files/client/odbc/driver/SQLSetCursorName.cpp diff --git a/ndb/src/old_files/client/odbc/driver/SQLSetDescField.cpp b/storage/ndb/src/old_files/client/odbc/driver/SQLSetDescField.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/SQLSetDescField.cpp rename to storage/ndb/src/old_files/client/odbc/driver/SQLSetDescField.cpp diff --git a/ndb/src/old_files/client/odbc/driver/SQLSetDescRec.cpp b/storage/ndb/src/old_files/client/odbc/driver/SQLSetDescRec.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/SQLSetDescRec.cpp rename to storage/ndb/src/old_files/client/odbc/driver/SQLSetDescRec.cpp diff --git a/ndb/src/old_files/client/odbc/driver/SQLSetEnvAttr.cpp b/storage/ndb/src/old_files/client/odbc/driver/SQLSetEnvAttr.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/SQLSetEnvAttr.cpp rename to storage/ndb/src/old_files/client/odbc/driver/SQLSetEnvAttr.cpp diff --git a/ndb/src/old_files/client/odbc/driver/SQLSetParam.cpp b/storage/ndb/src/old_files/client/odbc/driver/SQLSetParam.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/SQLSetParam.cpp rename to storage/ndb/src/old_files/client/odbc/driver/SQLSetParam.cpp diff --git a/ndb/src/old_files/client/odbc/driver/SQLSetPos.cpp b/storage/ndb/src/old_files/client/odbc/driver/SQLSetPos.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/SQLSetPos.cpp rename to storage/ndb/src/old_files/client/odbc/driver/SQLSetPos.cpp diff --git a/ndb/src/old_files/client/odbc/driver/SQLSetScrollOptions.cpp b/storage/ndb/src/old_files/client/odbc/driver/SQLSetScrollOptions.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/SQLSetScrollOptions.cpp rename to storage/ndb/src/old_files/client/odbc/driver/SQLSetScrollOptions.cpp diff --git a/ndb/src/old_files/client/odbc/driver/SQLSetStmtAttr.cpp b/storage/ndb/src/old_files/client/odbc/driver/SQLSetStmtAttr.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/SQLSetStmtAttr.cpp rename to storage/ndb/src/old_files/client/odbc/driver/SQLSetStmtAttr.cpp diff --git a/ndb/src/old_files/client/odbc/driver/SQLSetStmtOption.cpp b/storage/ndb/src/old_files/client/odbc/driver/SQLSetStmtOption.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/SQLSetStmtOption.cpp rename to storage/ndb/src/old_files/client/odbc/driver/SQLSetStmtOption.cpp diff --git a/ndb/src/old_files/client/odbc/driver/SQLSpecialColumns.cpp b/storage/ndb/src/old_files/client/odbc/driver/SQLSpecialColumns.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/SQLSpecialColumns.cpp rename to storage/ndb/src/old_files/client/odbc/driver/SQLSpecialColumns.cpp diff --git a/ndb/src/old_files/client/odbc/driver/SQLStatistics.cpp b/storage/ndb/src/old_files/client/odbc/driver/SQLStatistics.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/SQLStatistics.cpp rename to storage/ndb/src/old_files/client/odbc/driver/SQLStatistics.cpp diff --git a/ndb/src/old_files/client/odbc/driver/SQLTablePrivileges.cpp b/storage/ndb/src/old_files/client/odbc/driver/SQLTablePrivileges.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/SQLTablePrivileges.cpp rename to storage/ndb/src/old_files/client/odbc/driver/SQLTablePrivileges.cpp diff --git a/ndb/src/old_files/client/odbc/driver/SQLTables.cpp b/storage/ndb/src/old_files/client/odbc/driver/SQLTables.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/SQLTables.cpp rename to storage/ndb/src/old_files/client/odbc/driver/SQLTables.cpp diff --git a/ndb/src/old_files/client/odbc/driver/SQLTransact.cpp b/storage/ndb/src/old_files/client/odbc/driver/SQLTransact.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/SQLTransact.cpp rename to storage/ndb/src/old_files/client/odbc/driver/SQLTransact.cpp diff --git a/ndb/src/old_files/client/odbc/driver/driver.cpp b/storage/ndb/src/old_files/client/odbc/driver/driver.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/driver.cpp rename to storage/ndb/src/old_files/client/odbc/driver/driver.cpp diff --git a/ndb/src/old_files/client/odbc/driver/driver.hpp b/storage/ndb/src/old_files/client/odbc/driver/driver.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/driver/driver.hpp rename to storage/ndb/src/old_files/client/odbc/driver/driver.hpp diff --git a/ndb/src/old_files/client/odbc/executor/Exec_comp_op.cpp b/storage/ndb/src/old_files/client/odbc/executor/Exec_comp_op.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/executor/Exec_comp_op.cpp rename to storage/ndb/src/old_files/client/odbc/executor/Exec_comp_op.cpp diff --git a/ndb/src/old_files/client/odbc/executor/Exec_create_index.cpp b/storage/ndb/src/old_files/client/odbc/executor/Exec_create_index.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/executor/Exec_create_index.cpp rename to storage/ndb/src/old_files/client/odbc/executor/Exec_create_index.cpp diff --git a/ndb/src/old_files/client/odbc/executor/Exec_create_table.cpp b/storage/ndb/src/old_files/client/odbc/executor/Exec_create_table.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/executor/Exec_create_table.cpp rename to storage/ndb/src/old_files/client/odbc/executor/Exec_create_table.cpp diff --git a/ndb/src/old_files/client/odbc/executor/Exec_delete_index.cpp b/storage/ndb/src/old_files/client/odbc/executor/Exec_delete_index.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/executor/Exec_delete_index.cpp rename to storage/ndb/src/old_files/client/odbc/executor/Exec_delete_index.cpp diff --git a/ndb/src/old_files/client/odbc/executor/Exec_delete_lookup.cpp b/storage/ndb/src/old_files/client/odbc/executor/Exec_delete_lookup.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/executor/Exec_delete_lookup.cpp rename to storage/ndb/src/old_files/client/odbc/executor/Exec_delete_lookup.cpp diff --git a/ndb/src/old_files/client/odbc/executor/Exec_delete_scan.cpp b/storage/ndb/src/old_files/client/odbc/executor/Exec_delete_scan.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/executor/Exec_delete_scan.cpp rename to storage/ndb/src/old_files/client/odbc/executor/Exec_delete_scan.cpp diff --git a/ndb/src/old_files/client/odbc/executor/Exec_drop_index.cpp b/storage/ndb/src/old_files/client/odbc/executor/Exec_drop_index.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/executor/Exec_drop_index.cpp rename to storage/ndb/src/old_files/client/odbc/executor/Exec_drop_index.cpp diff --git a/ndb/src/old_files/client/odbc/executor/Exec_drop_table.cpp b/storage/ndb/src/old_files/client/odbc/executor/Exec_drop_table.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/executor/Exec_drop_table.cpp rename to storage/ndb/src/old_files/client/odbc/executor/Exec_drop_table.cpp diff --git a/ndb/src/old_files/client/odbc/executor/Exec_expr_conv.cpp b/storage/ndb/src/old_files/client/odbc/executor/Exec_expr_conv.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/executor/Exec_expr_conv.cpp rename to storage/ndb/src/old_files/client/odbc/executor/Exec_expr_conv.cpp diff --git a/ndb/src/old_files/client/odbc/executor/Exec_expr_func.cpp b/storage/ndb/src/old_files/client/odbc/executor/Exec_expr_func.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/executor/Exec_expr_func.cpp rename to storage/ndb/src/old_files/client/odbc/executor/Exec_expr_func.cpp diff --git a/ndb/src/old_files/client/odbc/executor/Exec_expr_op.cpp b/storage/ndb/src/old_files/client/odbc/executor/Exec_expr_op.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/executor/Exec_expr_op.cpp rename to storage/ndb/src/old_files/client/odbc/executor/Exec_expr_op.cpp diff --git a/ndb/src/old_files/client/odbc/executor/Exec_insert.cpp b/storage/ndb/src/old_files/client/odbc/executor/Exec_insert.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/executor/Exec_insert.cpp rename to storage/ndb/src/old_files/client/odbc/executor/Exec_insert.cpp diff --git a/ndb/src/old_files/client/odbc/executor/Exec_pred_op.cpp b/storage/ndb/src/old_files/client/odbc/executor/Exec_pred_op.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/executor/Exec_pred_op.cpp rename to storage/ndb/src/old_files/client/odbc/executor/Exec_pred_op.cpp diff --git a/ndb/src/old_files/client/odbc/executor/Exec_query_index.cpp b/storage/ndb/src/old_files/client/odbc/executor/Exec_query_index.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/executor/Exec_query_index.cpp rename to storage/ndb/src/old_files/client/odbc/executor/Exec_query_index.cpp diff --git a/ndb/src/old_files/client/odbc/executor/Exec_query_lookup.cpp b/storage/ndb/src/old_files/client/odbc/executor/Exec_query_lookup.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/executor/Exec_query_lookup.cpp rename to storage/ndb/src/old_files/client/odbc/executor/Exec_query_lookup.cpp diff --git a/ndb/src/old_files/client/odbc/executor/Exec_query_range.cpp b/storage/ndb/src/old_files/client/odbc/executor/Exec_query_range.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/executor/Exec_query_range.cpp rename to storage/ndb/src/old_files/client/odbc/executor/Exec_query_range.cpp diff --git a/ndb/src/old_files/client/odbc/executor/Exec_query_scan.cpp b/storage/ndb/src/old_files/client/odbc/executor/Exec_query_scan.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/executor/Exec_query_scan.cpp rename to storage/ndb/src/old_files/client/odbc/executor/Exec_query_scan.cpp diff --git a/ndb/src/old_files/client/odbc/executor/Exec_query_sys.cpp b/storage/ndb/src/old_files/client/odbc/executor/Exec_query_sys.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/executor/Exec_query_sys.cpp rename to storage/ndb/src/old_files/client/odbc/executor/Exec_query_sys.cpp diff --git a/ndb/src/old_files/client/odbc/executor/Exec_update_index.cpp b/storage/ndb/src/old_files/client/odbc/executor/Exec_update_index.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/executor/Exec_update_index.cpp rename to storage/ndb/src/old_files/client/odbc/executor/Exec_update_index.cpp diff --git a/ndb/src/old_files/client/odbc/executor/Exec_update_lookup.cpp b/storage/ndb/src/old_files/client/odbc/executor/Exec_update_lookup.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/executor/Exec_update_lookup.cpp rename to storage/ndb/src/old_files/client/odbc/executor/Exec_update_lookup.cpp diff --git a/ndb/src/old_files/client/odbc/executor/Exec_update_scan.cpp b/storage/ndb/src/old_files/client/odbc/executor/Exec_update_scan.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/executor/Exec_update_scan.cpp rename to storage/ndb/src/old_files/client/odbc/executor/Exec_update_scan.cpp diff --git a/ndb/src/old_files/client/odbc/executor/Executor.cpp b/storage/ndb/src/old_files/client/odbc/executor/Executor.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/executor/Executor.cpp rename to storage/ndb/src/old_files/client/odbc/executor/Executor.cpp diff --git a/ndb/src/old_files/client/odbc/executor/Executor.hpp b/storage/ndb/src/old_files/client/odbc/executor/Executor.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/executor/Executor.hpp rename to storage/ndb/src/old_files/client/odbc/executor/Executor.hpp diff --git a/ndb/src/old_files/client/odbc/executor/Makefile b/storage/ndb/src/old_files/client/odbc/executor/Makefile similarity index 100% rename from ndb/src/old_files/client/odbc/executor/Makefile rename to storage/ndb/src/old_files/client/odbc/executor/Makefile diff --git a/ndb/src/old_files/client/odbc/handles/AttrDbc.cpp b/storage/ndb/src/old_files/client/odbc/handles/AttrDbc.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/handles/AttrDbc.cpp rename to storage/ndb/src/old_files/client/odbc/handles/AttrDbc.cpp diff --git a/ndb/src/old_files/client/odbc/handles/AttrEnv.cpp b/storage/ndb/src/old_files/client/odbc/handles/AttrEnv.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/handles/AttrEnv.cpp rename to storage/ndb/src/old_files/client/odbc/handles/AttrEnv.cpp diff --git a/ndb/src/old_files/client/odbc/handles/AttrRoot.cpp b/storage/ndb/src/old_files/client/odbc/handles/AttrRoot.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/handles/AttrRoot.cpp rename to storage/ndb/src/old_files/client/odbc/handles/AttrRoot.cpp diff --git a/ndb/src/old_files/client/odbc/handles/AttrStmt.cpp b/storage/ndb/src/old_files/client/odbc/handles/AttrStmt.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/handles/AttrStmt.cpp rename to storage/ndb/src/old_files/client/odbc/handles/AttrStmt.cpp diff --git a/ndb/src/old_files/client/odbc/handles/DescSpec.cpp b/storage/ndb/src/old_files/client/odbc/handles/DescSpec.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/handles/DescSpec.cpp rename to storage/ndb/src/old_files/client/odbc/handles/DescSpec.cpp diff --git a/ndb/src/old_files/client/odbc/handles/FuncTab.cpp b/storage/ndb/src/old_files/client/odbc/handles/FuncTab.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/handles/FuncTab.cpp rename to storage/ndb/src/old_files/client/odbc/handles/FuncTab.cpp diff --git a/ndb/src/old_files/client/odbc/handles/HandleBase.cpp b/storage/ndb/src/old_files/client/odbc/handles/HandleBase.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/handles/HandleBase.cpp rename to storage/ndb/src/old_files/client/odbc/handles/HandleBase.cpp diff --git a/ndb/src/old_files/client/odbc/handles/HandleBase.hpp b/storage/ndb/src/old_files/client/odbc/handles/HandleBase.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/handles/HandleBase.hpp rename to storage/ndb/src/old_files/client/odbc/handles/HandleBase.hpp diff --git a/ndb/src/old_files/client/odbc/handles/HandleDbc.cpp b/storage/ndb/src/old_files/client/odbc/handles/HandleDbc.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/handles/HandleDbc.cpp rename to storage/ndb/src/old_files/client/odbc/handles/HandleDbc.cpp diff --git a/ndb/src/old_files/client/odbc/handles/HandleDbc.hpp b/storage/ndb/src/old_files/client/odbc/handles/HandleDbc.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/handles/HandleDbc.hpp rename to storage/ndb/src/old_files/client/odbc/handles/HandleDbc.hpp diff --git a/ndb/src/old_files/client/odbc/handles/HandleDesc.cpp b/storage/ndb/src/old_files/client/odbc/handles/HandleDesc.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/handles/HandleDesc.cpp rename to storage/ndb/src/old_files/client/odbc/handles/HandleDesc.cpp diff --git a/ndb/src/old_files/client/odbc/handles/HandleDesc.hpp b/storage/ndb/src/old_files/client/odbc/handles/HandleDesc.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/handles/HandleDesc.hpp rename to storage/ndb/src/old_files/client/odbc/handles/HandleDesc.hpp diff --git a/ndb/src/old_files/client/odbc/handles/HandleEnv.cpp b/storage/ndb/src/old_files/client/odbc/handles/HandleEnv.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/handles/HandleEnv.cpp rename to storage/ndb/src/old_files/client/odbc/handles/HandleEnv.cpp diff --git a/ndb/src/old_files/client/odbc/handles/HandleEnv.hpp b/storage/ndb/src/old_files/client/odbc/handles/HandleEnv.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/handles/HandleEnv.hpp rename to storage/ndb/src/old_files/client/odbc/handles/HandleEnv.hpp diff --git a/ndb/src/old_files/client/odbc/handles/HandleRoot.cpp b/storage/ndb/src/old_files/client/odbc/handles/HandleRoot.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/handles/HandleRoot.cpp rename to storage/ndb/src/old_files/client/odbc/handles/HandleRoot.cpp diff --git a/ndb/src/old_files/client/odbc/handles/HandleRoot.hpp b/storage/ndb/src/old_files/client/odbc/handles/HandleRoot.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/handles/HandleRoot.hpp rename to storage/ndb/src/old_files/client/odbc/handles/HandleRoot.hpp diff --git a/ndb/src/old_files/client/odbc/handles/HandleStmt.cpp b/storage/ndb/src/old_files/client/odbc/handles/HandleStmt.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/handles/HandleStmt.cpp rename to storage/ndb/src/old_files/client/odbc/handles/HandleStmt.cpp diff --git a/ndb/src/old_files/client/odbc/handles/HandleStmt.hpp b/storage/ndb/src/old_files/client/odbc/handles/HandleStmt.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/handles/HandleStmt.hpp rename to storage/ndb/src/old_files/client/odbc/handles/HandleStmt.hpp diff --git a/ndb/src/old_files/client/odbc/handles/InfoTab.cpp b/storage/ndb/src/old_files/client/odbc/handles/InfoTab.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/handles/InfoTab.cpp rename to storage/ndb/src/old_files/client/odbc/handles/InfoTab.cpp diff --git a/ndb/src/old_files/client/odbc/handles/Makefile b/storage/ndb/src/old_files/client/odbc/handles/Makefile similarity index 100% rename from ndb/src/old_files/client/odbc/handles/Makefile rename to storage/ndb/src/old_files/client/odbc/handles/Makefile diff --git a/ndb/src/old_files/client/odbc/handles/PoolNdb.cpp b/storage/ndb/src/old_files/client/odbc/handles/PoolNdb.cpp similarity index 100% rename from ndb/src/old_files/client/odbc/handles/PoolNdb.cpp rename to storage/ndb/src/old_files/client/odbc/handles/PoolNdb.cpp diff --git a/ndb/src/old_files/client/odbc/handles/PoolNdb.hpp b/storage/ndb/src/old_files/client/odbc/handles/PoolNdb.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/handles/PoolNdb.hpp rename to storage/ndb/src/old_files/client/odbc/handles/PoolNdb.hpp diff --git a/ndb/src/old_files/client/odbc/handles/handles.hpp b/storage/ndb/src/old_files/client/odbc/handles/handles.hpp similarity index 100% rename from ndb/src/old_files/client/odbc/handles/handles.hpp rename to storage/ndb/src/old_files/client/odbc/handles/handles.hpp diff --git a/ndb/src/old_files/ndbbaseclient/Makefile b/storage/ndb/src/old_files/ndbbaseclient/Makefile similarity index 100% rename from ndb/src/old_files/ndbbaseclient/Makefile rename to storage/ndb/src/old_files/ndbbaseclient/Makefile diff --git a/ndb/src/old_files/ndbbaseclient/ndbbaseclient_dummy.cpp b/storage/ndb/src/old_files/ndbbaseclient/ndbbaseclient_dummy.cpp similarity index 100% rename from ndb/src/old_files/ndbbaseclient/ndbbaseclient_dummy.cpp rename to storage/ndb/src/old_files/ndbbaseclient/ndbbaseclient_dummy.cpp diff --git a/ndb/src/old_files/ndbclient/Makefile b/storage/ndb/src/old_files/ndbclient/Makefile similarity index 100% rename from ndb/src/old_files/ndbclient/Makefile rename to storage/ndb/src/old_files/ndbclient/Makefile diff --git a/ndb/src/old_files/ndbclient/ndbclient_dummy.cpp b/storage/ndb/src/old_files/ndbclient/ndbclient_dummy.cpp similarity index 100% rename from ndb/src/old_files/ndbclient/ndbclient_dummy.cpp rename to storage/ndb/src/old_files/ndbclient/ndbclient_dummy.cpp diff --git a/ndb/src/old_files/newtonapi/Makefile b/storage/ndb/src/old_files/newtonapi/Makefile similarity index 100% rename from ndb/src/old_files/newtonapi/Makefile rename to storage/ndb/src/old_files/newtonapi/Makefile diff --git a/ndb/src/old_files/newtonapi/dba_binding.cpp b/storage/ndb/src/old_files/newtonapi/dba_binding.cpp similarity index 100% rename from ndb/src/old_files/newtonapi/dba_binding.cpp rename to storage/ndb/src/old_files/newtonapi/dba_binding.cpp diff --git a/ndb/src/old_files/newtonapi/dba_bulkread.cpp b/storage/ndb/src/old_files/newtonapi/dba_bulkread.cpp similarity index 100% rename from ndb/src/old_files/newtonapi/dba_bulkread.cpp rename to storage/ndb/src/old_files/newtonapi/dba_bulkread.cpp diff --git a/ndb/src/old_files/newtonapi/dba_config.cpp b/storage/ndb/src/old_files/newtonapi/dba_config.cpp similarity index 100% rename from ndb/src/old_files/newtonapi/dba_config.cpp rename to storage/ndb/src/old_files/newtonapi/dba_config.cpp diff --git a/ndb/src/old_files/newtonapi/dba_dac.cpp b/storage/ndb/src/old_files/newtonapi/dba_dac.cpp similarity index 100% rename from ndb/src/old_files/newtonapi/dba_dac.cpp rename to storage/ndb/src/old_files/newtonapi/dba_dac.cpp diff --git a/ndb/src/old_files/newtonapi/dba_error.cpp b/storage/ndb/src/old_files/newtonapi/dba_error.cpp similarity index 100% rename from ndb/src/old_files/newtonapi/dba_error.cpp rename to storage/ndb/src/old_files/newtonapi/dba_error.cpp diff --git a/ndb/src/old_files/newtonapi/dba_init.cpp b/storage/ndb/src/old_files/newtonapi/dba_init.cpp similarity index 100% rename from ndb/src/old_files/newtonapi/dba_init.cpp rename to storage/ndb/src/old_files/newtonapi/dba_init.cpp diff --git a/ndb/src/old_files/newtonapi/dba_internal.hpp b/storage/ndb/src/old_files/newtonapi/dba_internal.hpp similarity index 100% rename from ndb/src/old_files/newtonapi/dba_internal.hpp rename to storage/ndb/src/old_files/newtonapi/dba_internal.hpp diff --git a/ndb/src/old_files/newtonapi/dba_process.cpp b/storage/ndb/src/old_files/newtonapi/dba_process.cpp similarity index 100% rename from ndb/src/old_files/newtonapi/dba_process.cpp rename to storage/ndb/src/old_files/newtonapi/dba_process.cpp diff --git a/ndb/src/old_files/newtonapi/dba_process.hpp b/storage/ndb/src/old_files/newtonapi/dba_process.hpp similarity index 100% rename from ndb/src/old_files/newtonapi/dba_process.hpp rename to storage/ndb/src/old_files/newtonapi/dba_process.hpp diff --git a/ndb/src/old_files/newtonapi/dba_schema.cpp b/storage/ndb/src/old_files/newtonapi/dba_schema.cpp similarity index 100% rename from ndb/src/old_files/newtonapi/dba_schema.cpp rename to storage/ndb/src/old_files/newtonapi/dba_schema.cpp diff --git a/ndb/src/old_files/rep/ExtSender.cpp b/storage/ndb/src/old_files/rep/ExtSender.cpp similarity index 100% rename from ndb/src/old_files/rep/ExtSender.cpp rename to storage/ndb/src/old_files/rep/ExtSender.cpp diff --git a/ndb/src/old_files/rep/ExtSender.hpp b/storage/ndb/src/old_files/rep/ExtSender.hpp similarity index 100% rename from ndb/src/old_files/rep/ExtSender.hpp rename to storage/ndb/src/old_files/rep/ExtSender.hpp diff --git a/ndb/src/old_files/rep/Makefile b/storage/ndb/src/old_files/rep/Makefile similarity index 100% rename from ndb/src/old_files/rep/Makefile rename to storage/ndb/src/old_files/rep/Makefile diff --git a/ndb/src/old_files/rep/NodeConnectInfo.hpp b/storage/ndb/src/old_files/rep/NodeConnectInfo.hpp similarity index 100% rename from ndb/src/old_files/rep/NodeConnectInfo.hpp rename to storage/ndb/src/old_files/rep/NodeConnectInfo.hpp diff --git a/ndb/src/old_files/rep/README b/storage/ndb/src/old_files/rep/README similarity index 100% rename from ndb/src/old_files/rep/README rename to storage/ndb/src/old_files/rep/README diff --git a/ndb/src/old_files/rep/RepApiInterpreter.cpp b/storage/ndb/src/old_files/rep/RepApiInterpreter.cpp similarity index 100% rename from ndb/src/old_files/rep/RepApiInterpreter.cpp rename to storage/ndb/src/old_files/rep/RepApiInterpreter.cpp diff --git a/ndb/src/old_files/rep/RepApiInterpreter.hpp b/storage/ndb/src/old_files/rep/RepApiInterpreter.hpp similarity index 100% rename from ndb/src/old_files/rep/RepApiInterpreter.hpp rename to storage/ndb/src/old_files/rep/RepApiInterpreter.hpp diff --git a/ndb/src/old_files/rep/RepApiService.cpp b/storage/ndb/src/old_files/rep/RepApiService.cpp similarity index 100% rename from ndb/src/old_files/rep/RepApiService.cpp rename to storage/ndb/src/old_files/rep/RepApiService.cpp diff --git a/ndb/src/old_files/rep/RepApiService.hpp b/storage/ndb/src/old_files/rep/RepApiService.hpp similarity index 100% rename from ndb/src/old_files/rep/RepApiService.hpp rename to storage/ndb/src/old_files/rep/RepApiService.hpp diff --git a/ndb/src/old_files/rep/RepCommandInterpreter.cpp b/storage/ndb/src/old_files/rep/RepCommandInterpreter.cpp similarity index 100% rename from ndb/src/old_files/rep/RepCommandInterpreter.cpp rename to storage/ndb/src/old_files/rep/RepCommandInterpreter.cpp diff --git a/ndb/src/old_files/rep/RepCommandInterpreter.hpp b/storage/ndb/src/old_files/rep/RepCommandInterpreter.hpp similarity index 100% rename from ndb/src/old_files/rep/RepCommandInterpreter.hpp rename to storage/ndb/src/old_files/rep/RepCommandInterpreter.hpp diff --git a/ndb/src/old_files/rep/RepComponents.cpp b/storage/ndb/src/old_files/rep/RepComponents.cpp similarity index 100% rename from ndb/src/old_files/rep/RepComponents.cpp rename to storage/ndb/src/old_files/rep/RepComponents.cpp diff --git a/ndb/src/old_files/rep/RepComponents.hpp b/storage/ndb/src/old_files/rep/RepComponents.hpp similarity index 100% rename from ndb/src/old_files/rep/RepComponents.hpp rename to storage/ndb/src/old_files/rep/RepComponents.hpp diff --git a/ndb/src/old_files/rep/RepMain.cpp b/storage/ndb/src/old_files/rep/RepMain.cpp similarity index 100% rename from ndb/src/old_files/rep/RepMain.cpp rename to storage/ndb/src/old_files/rep/RepMain.cpp diff --git a/ndb/src/old_files/rep/Requestor.cpp b/storage/ndb/src/old_files/rep/Requestor.cpp similarity index 100% rename from ndb/src/old_files/rep/Requestor.cpp rename to storage/ndb/src/old_files/rep/Requestor.cpp diff --git a/ndb/src/old_files/rep/Requestor.hpp b/storage/ndb/src/old_files/rep/Requestor.hpp similarity index 100% rename from ndb/src/old_files/rep/Requestor.hpp rename to storage/ndb/src/old_files/rep/Requestor.hpp diff --git a/ndb/src/old_files/rep/RequestorSubscriptions.cpp b/storage/ndb/src/old_files/rep/RequestorSubscriptions.cpp similarity index 100% rename from ndb/src/old_files/rep/RequestorSubscriptions.cpp rename to storage/ndb/src/old_files/rep/RequestorSubscriptions.cpp diff --git a/ndb/src/old_files/rep/SignalQueue.cpp b/storage/ndb/src/old_files/rep/SignalQueue.cpp similarity index 100% rename from ndb/src/old_files/rep/SignalQueue.cpp rename to storage/ndb/src/old_files/rep/SignalQueue.cpp diff --git a/ndb/src/old_files/rep/SignalQueue.hpp b/storage/ndb/src/old_files/rep/SignalQueue.hpp similarity index 100% rename from ndb/src/old_files/rep/SignalQueue.hpp rename to storage/ndb/src/old_files/rep/SignalQueue.hpp diff --git a/ndb/src/old_files/rep/TODO b/storage/ndb/src/old_files/rep/TODO similarity index 100% rename from ndb/src/old_files/rep/TODO rename to storage/ndb/src/old_files/rep/TODO diff --git a/ndb/src/old_files/rep/adapters/AppNDB.cpp b/storage/ndb/src/old_files/rep/adapters/AppNDB.cpp similarity index 100% rename from ndb/src/old_files/rep/adapters/AppNDB.cpp rename to storage/ndb/src/old_files/rep/adapters/AppNDB.cpp diff --git a/ndb/src/old_files/rep/adapters/AppNDB.hpp b/storage/ndb/src/old_files/rep/adapters/AppNDB.hpp similarity index 100% rename from ndb/src/old_files/rep/adapters/AppNDB.hpp rename to storage/ndb/src/old_files/rep/adapters/AppNDB.hpp diff --git a/ndb/src/old_files/rep/adapters/ExtAPI.cpp b/storage/ndb/src/old_files/rep/adapters/ExtAPI.cpp similarity index 100% rename from ndb/src/old_files/rep/adapters/ExtAPI.cpp rename to storage/ndb/src/old_files/rep/adapters/ExtAPI.cpp diff --git a/ndb/src/old_files/rep/adapters/ExtAPI.hpp b/storage/ndb/src/old_files/rep/adapters/ExtAPI.hpp similarity index 100% rename from ndb/src/old_files/rep/adapters/ExtAPI.hpp rename to storage/ndb/src/old_files/rep/adapters/ExtAPI.hpp diff --git a/ndb/src/old_files/rep/adapters/ExtNDB.cpp b/storage/ndb/src/old_files/rep/adapters/ExtNDB.cpp similarity index 100% rename from ndb/src/old_files/rep/adapters/ExtNDB.cpp rename to storage/ndb/src/old_files/rep/adapters/ExtNDB.cpp diff --git a/ndb/src/old_files/rep/adapters/ExtNDB.hpp b/storage/ndb/src/old_files/rep/adapters/ExtNDB.hpp similarity index 100% rename from ndb/src/old_files/rep/adapters/ExtNDB.hpp rename to storage/ndb/src/old_files/rep/adapters/ExtNDB.hpp diff --git a/ndb/src/old_files/rep/adapters/Makefile b/storage/ndb/src/old_files/rep/adapters/Makefile similarity index 100% rename from ndb/src/old_files/rep/adapters/Makefile rename to storage/ndb/src/old_files/rep/adapters/Makefile diff --git a/ndb/src/old_files/rep/adapters/TableInfoPs.hpp b/storage/ndb/src/old_files/rep/adapters/TableInfoPs.hpp similarity index 100% rename from ndb/src/old_files/rep/adapters/TableInfoPs.hpp rename to storage/ndb/src/old_files/rep/adapters/TableInfoPs.hpp diff --git a/ndb/src/old_files/rep/dbug_hack.cpp b/storage/ndb/src/old_files/rep/dbug_hack.cpp similarity index 100% rename from ndb/src/old_files/rep/dbug_hack.cpp rename to storage/ndb/src/old_files/rep/dbug_hack.cpp diff --git a/ndb/src/old_files/rep/rep_version.hpp b/storage/ndb/src/old_files/rep/rep_version.hpp similarity index 100% rename from ndb/src/old_files/rep/rep_version.hpp rename to storage/ndb/src/old_files/rep/rep_version.hpp diff --git a/ndb/src/old_files/rep/repapi/Makefile b/storage/ndb/src/old_files/rep/repapi/Makefile similarity index 100% rename from ndb/src/old_files/rep/repapi/Makefile rename to storage/ndb/src/old_files/rep/repapi/Makefile diff --git a/ndb/src/old_files/rep/repapi/repapi.cpp b/storage/ndb/src/old_files/rep/repapi/repapi.cpp similarity index 100% rename from ndb/src/old_files/rep/repapi/repapi.cpp rename to storage/ndb/src/old_files/rep/repapi/repapi.cpp diff --git a/ndb/src/old_files/rep/repapi/repapi.h b/storage/ndb/src/old_files/rep/repapi/repapi.h similarity index 100% rename from ndb/src/old_files/rep/repapi/repapi.h rename to storage/ndb/src/old_files/rep/repapi/repapi.h diff --git a/ndb/src/old_files/rep/state/Channel.cpp b/storage/ndb/src/old_files/rep/state/Channel.cpp similarity index 100% rename from ndb/src/old_files/rep/state/Channel.cpp rename to storage/ndb/src/old_files/rep/state/Channel.cpp diff --git a/ndb/src/old_files/rep/state/Channel.hpp b/storage/ndb/src/old_files/rep/state/Channel.hpp similarity index 100% rename from ndb/src/old_files/rep/state/Channel.hpp rename to storage/ndb/src/old_files/rep/state/Channel.hpp diff --git a/ndb/src/old_files/rep/state/Interval.cpp b/storage/ndb/src/old_files/rep/state/Interval.cpp similarity index 100% rename from ndb/src/old_files/rep/state/Interval.cpp rename to storage/ndb/src/old_files/rep/state/Interval.cpp diff --git a/ndb/src/old_files/rep/state/Interval.hpp b/storage/ndb/src/old_files/rep/state/Interval.hpp similarity index 100% rename from ndb/src/old_files/rep/state/Interval.hpp rename to storage/ndb/src/old_files/rep/state/Interval.hpp diff --git a/ndb/src/old_files/rep/state/Makefile b/storage/ndb/src/old_files/rep/state/Makefile similarity index 100% rename from ndb/src/old_files/rep/state/Makefile rename to storage/ndb/src/old_files/rep/state/Makefile diff --git a/ndb/src/old_files/rep/state/RepState.cpp b/storage/ndb/src/old_files/rep/state/RepState.cpp similarity index 100% rename from ndb/src/old_files/rep/state/RepState.cpp rename to storage/ndb/src/old_files/rep/state/RepState.cpp diff --git a/ndb/src/old_files/rep/state/RepState.hpp b/storage/ndb/src/old_files/rep/state/RepState.hpp similarity index 100% rename from ndb/src/old_files/rep/state/RepState.hpp rename to storage/ndb/src/old_files/rep/state/RepState.hpp diff --git a/ndb/src/old_files/rep/state/RepStateEvent.cpp b/storage/ndb/src/old_files/rep/state/RepStateEvent.cpp similarity index 100% rename from ndb/src/old_files/rep/state/RepStateEvent.cpp rename to storage/ndb/src/old_files/rep/state/RepStateEvent.cpp diff --git a/ndb/src/old_files/rep/state/RepStateRequests.cpp b/storage/ndb/src/old_files/rep/state/RepStateRequests.cpp similarity index 100% rename from ndb/src/old_files/rep/state/RepStateRequests.cpp rename to storage/ndb/src/old_files/rep/state/RepStateRequests.cpp diff --git a/ndb/src/old_files/rep/state/testInterval/Makefile b/storage/ndb/src/old_files/rep/state/testInterval/Makefile similarity index 100% rename from ndb/src/old_files/rep/state/testInterval/Makefile rename to storage/ndb/src/old_files/rep/state/testInterval/Makefile diff --git a/ndb/src/old_files/rep/state/testInterval/testInterval.cpp b/storage/ndb/src/old_files/rep/state/testInterval/testInterval.cpp similarity index 100% rename from ndb/src/old_files/rep/state/testInterval/testInterval.cpp rename to storage/ndb/src/old_files/rep/state/testInterval/testInterval.cpp diff --git a/ndb/src/old_files/rep/state/testRepState/Makefile b/storage/ndb/src/old_files/rep/state/testRepState/Makefile similarity index 100% rename from ndb/src/old_files/rep/state/testRepState/Makefile rename to storage/ndb/src/old_files/rep/state/testRepState/Makefile diff --git a/ndb/src/old_files/rep/state/testRepState/testRequestor.cpp b/storage/ndb/src/old_files/rep/state/testRepState/testRequestor.cpp similarity index 100% rename from ndb/src/old_files/rep/state/testRepState/testRequestor.cpp rename to storage/ndb/src/old_files/rep/state/testRepState/testRequestor.cpp diff --git a/ndb/src/old_files/rep/state/testRepState/testRequestor.hpp b/storage/ndb/src/old_files/rep/state/testRepState/testRequestor.hpp similarity index 100% rename from ndb/src/old_files/rep/state/testRepState/testRequestor.hpp rename to storage/ndb/src/old_files/rep/state/testRepState/testRequestor.hpp diff --git a/ndb/src/old_files/rep/storage/GCIBuffer.cpp b/storage/ndb/src/old_files/rep/storage/GCIBuffer.cpp similarity index 100% rename from ndb/src/old_files/rep/storage/GCIBuffer.cpp rename to storage/ndb/src/old_files/rep/storage/GCIBuffer.cpp diff --git a/ndb/src/old_files/rep/storage/GCIBuffer.hpp b/storage/ndb/src/old_files/rep/storage/GCIBuffer.hpp similarity index 100% rename from ndb/src/old_files/rep/storage/GCIBuffer.hpp rename to storage/ndb/src/old_files/rep/storage/GCIBuffer.hpp diff --git a/ndb/src/old_files/rep/storage/GCIContainer.cpp b/storage/ndb/src/old_files/rep/storage/GCIContainer.cpp similarity index 100% rename from ndb/src/old_files/rep/storage/GCIContainer.cpp rename to storage/ndb/src/old_files/rep/storage/GCIContainer.cpp diff --git a/ndb/src/old_files/rep/storage/GCIContainer.hpp b/storage/ndb/src/old_files/rep/storage/GCIContainer.hpp similarity index 100% rename from ndb/src/old_files/rep/storage/GCIContainer.hpp rename to storage/ndb/src/old_files/rep/storage/GCIContainer.hpp diff --git a/ndb/src/old_files/rep/storage/GCIContainerPS.cpp b/storage/ndb/src/old_files/rep/storage/GCIContainerPS.cpp similarity index 100% rename from ndb/src/old_files/rep/storage/GCIContainerPS.cpp rename to storage/ndb/src/old_files/rep/storage/GCIContainerPS.cpp diff --git a/ndb/src/old_files/rep/storage/GCIContainerPS.hpp b/storage/ndb/src/old_files/rep/storage/GCIContainerPS.hpp similarity index 100% rename from ndb/src/old_files/rep/storage/GCIContainerPS.hpp rename to storage/ndb/src/old_files/rep/storage/GCIContainerPS.hpp diff --git a/ndb/src/old_files/rep/storage/GCIPage.cpp b/storage/ndb/src/old_files/rep/storage/GCIPage.cpp similarity index 100% rename from ndb/src/old_files/rep/storage/GCIPage.cpp rename to storage/ndb/src/old_files/rep/storage/GCIPage.cpp diff --git a/ndb/src/old_files/rep/storage/GCIPage.hpp b/storage/ndb/src/old_files/rep/storage/GCIPage.hpp similarity index 100% rename from ndb/src/old_files/rep/storage/GCIPage.hpp rename to storage/ndb/src/old_files/rep/storage/GCIPage.hpp diff --git a/ndb/src/old_files/rep/storage/LogRecord.hpp b/storage/ndb/src/old_files/rep/storage/LogRecord.hpp similarity index 100% rename from ndb/src/old_files/rep/storage/LogRecord.hpp rename to storage/ndb/src/old_files/rep/storage/LogRecord.hpp diff --git a/ndb/src/old_files/rep/storage/Makefile b/storage/ndb/src/old_files/rep/storage/Makefile similarity index 100% rename from ndb/src/old_files/rep/storage/Makefile rename to storage/ndb/src/old_files/rep/storage/Makefile diff --git a/ndb/src/old_files/rep/storage/NodeConnectInfo.hpp b/storage/ndb/src/old_files/rep/storage/NodeConnectInfo.hpp similarity index 100% rename from ndb/src/old_files/rep/storage/NodeConnectInfo.hpp rename to storage/ndb/src/old_files/rep/storage/NodeConnectInfo.hpp diff --git a/ndb/src/old_files/rep/storage/NodeGroup.cpp b/storage/ndb/src/old_files/rep/storage/NodeGroup.cpp similarity index 100% rename from ndb/src/old_files/rep/storage/NodeGroup.cpp rename to storage/ndb/src/old_files/rep/storage/NodeGroup.cpp diff --git a/ndb/src/old_files/rep/storage/NodeGroup.hpp b/storage/ndb/src/old_files/rep/storage/NodeGroup.hpp similarity index 100% rename from ndb/src/old_files/rep/storage/NodeGroup.hpp rename to storage/ndb/src/old_files/rep/storage/NodeGroup.hpp diff --git a/ndb/src/old_files/rep/storage/NodeGroupInfo.cpp b/storage/ndb/src/old_files/rep/storage/NodeGroupInfo.cpp similarity index 100% rename from ndb/src/old_files/rep/storage/NodeGroupInfo.cpp rename to storage/ndb/src/old_files/rep/storage/NodeGroupInfo.cpp diff --git a/ndb/src/old_files/rep/storage/NodeGroupInfo.hpp b/storage/ndb/src/old_files/rep/storage/NodeGroupInfo.hpp similarity index 100% rename from ndb/src/old_files/rep/storage/NodeGroupInfo.hpp rename to storage/ndb/src/old_files/rep/storage/NodeGroupInfo.hpp diff --git a/ndb/src/old_files/rep/transfer/Makefile b/storage/ndb/src/old_files/rep/transfer/Makefile similarity index 100% rename from ndb/src/old_files/rep/transfer/Makefile rename to storage/ndb/src/old_files/rep/transfer/Makefile diff --git a/ndb/src/old_files/rep/transfer/TransPS.cpp b/storage/ndb/src/old_files/rep/transfer/TransPS.cpp similarity index 100% rename from ndb/src/old_files/rep/transfer/TransPS.cpp rename to storage/ndb/src/old_files/rep/transfer/TransPS.cpp diff --git a/ndb/src/old_files/rep/transfer/TransPS.hpp b/storage/ndb/src/old_files/rep/transfer/TransPS.hpp similarity index 100% rename from ndb/src/old_files/rep/transfer/TransPS.hpp rename to storage/ndb/src/old_files/rep/transfer/TransPS.hpp diff --git a/ndb/src/old_files/rep/transfer/TransSS.cpp b/storage/ndb/src/old_files/rep/transfer/TransSS.cpp similarity index 100% rename from ndb/src/old_files/rep/transfer/TransSS.cpp rename to storage/ndb/src/old_files/rep/transfer/TransSS.cpp diff --git a/ndb/src/old_files/rep/transfer/TransSS.hpp b/storage/ndb/src/old_files/rep/transfer/TransSS.hpp similarity index 100% rename from ndb/src/old_files/rep/transfer/TransSS.hpp rename to storage/ndb/src/old_files/rep/transfer/TransSS.hpp diff --git a/ndb/src/old_files/rep/transfer/TransSSSubscriptions.cpp b/storage/ndb/src/old_files/rep/transfer/TransSSSubscriptions.cpp similarity index 100% rename from ndb/src/old_files/rep/transfer/TransSSSubscriptions.cpp rename to storage/ndb/src/old_files/rep/transfer/TransSSSubscriptions.cpp diff --git a/ndb/test/Makefile.am b/storage/ndb/test/Makefile.am similarity index 100% rename from ndb/test/Makefile.am rename to storage/ndb/test/Makefile.am diff --git a/ndb/test/include/CpcClient.hpp b/storage/ndb/test/include/CpcClient.hpp similarity index 100% rename from ndb/test/include/CpcClient.hpp rename to storage/ndb/test/include/CpcClient.hpp diff --git a/ndb/test/include/HugoAsynchTransactions.hpp b/storage/ndb/test/include/HugoAsynchTransactions.hpp similarity index 100% rename from ndb/test/include/HugoAsynchTransactions.hpp rename to storage/ndb/test/include/HugoAsynchTransactions.hpp diff --git a/ndb/test/include/HugoCalculator.hpp b/storage/ndb/test/include/HugoCalculator.hpp similarity index 100% rename from ndb/test/include/HugoCalculator.hpp rename to storage/ndb/test/include/HugoCalculator.hpp diff --git a/ndb/test/include/HugoOperations.hpp b/storage/ndb/test/include/HugoOperations.hpp similarity index 100% rename from ndb/test/include/HugoOperations.hpp rename to storage/ndb/test/include/HugoOperations.hpp diff --git a/ndb/test/include/HugoTransactions.hpp b/storage/ndb/test/include/HugoTransactions.hpp similarity index 100% rename from ndb/test/include/HugoTransactions.hpp rename to storage/ndb/test/include/HugoTransactions.hpp diff --git a/ndb/test/include/NDBT.hpp b/storage/ndb/test/include/NDBT.hpp similarity index 100% rename from ndb/test/include/NDBT.hpp rename to storage/ndb/test/include/NDBT.hpp diff --git a/ndb/test/include/NDBT_DataSet.hpp b/storage/ndb/test/include/NDBT_DataSet.hpp similarity index 100% rename from ndb/test/include/NDBT_DataSet.hpp rename to storage/ndb/test/include/NDBT_DataSet.hpp diff --git a/ndb/test/include/NDBT_DataSetTransaction.hpp b/storage/ndb/test/include/NDBT_DataSetTransaction.hpp similarity index 100% rename from ndb/test/include/NDBT_DataSetTransaction.hpp rename to storage/ndb/test/include/NDBT_DataSetTransaction.hpp diff --git a/ndb/test/include/NDBT_Error.hpp b/storage/ndb/test/include/NDBT_Error.hpp similarity index 100% rename from ndb/test/include/NDBT_Error.hpp rename to storage/ndb/test/include/NDBT_Error.hpp diff --git a/ndb/test/include/NDBT_Output.hpp b/storage/ndb/test/include/NDBT_Output.hpp similarity index 100% rename from ndb/test/include/NDBT_Output.hpp rename to storage/ndb/test/include/NDBT_Output.hpp diff --git a/ndb/test/include/NDBT_ResultRow.hpp b/storage/ndb/test/include/NDBT_ResultRow.hpp similarity index 100% rename from ndb/test/include/NDBT_ResultRow.hpp rename to storage/ndb/test/include/NDBT_ResultRow.hpp diff --git a/ndb/test/include/NDBT_ReturnCodes.h b/storage/ndb/test/include/NDBT_ReturnCodes.h similarity index 100% rename from ndb/test/include/NDBT_ReturnCodes.h rename to storage/ndb/test/include/NDBT_ReturnCodes.h diff --git a/ndb/test/include/NDBT_Stats.hpp b/storage/ndb/test/include/NDBT_Stats.hpp similarity index 100% rename from ndb/test/include/NDBT_Stats.hpp rename to storage/ndb/test/include/NDBT_Stats.hpp diff --git a/ndb/test/include/NDBT_Table.hpp b/storage/ndb/test/include/NDBT_Table.hpp similarity index 100% rename from ndb/test/include/NDBT_Table.hpp rename to storage/ndb/test/include/NDBT_Table.hpp diff --git a/ndb/test/include/NDBT_Tables.hpp b/storage/ndb/test/include/NDBT_Tables.hpp similarity index 100% rename from ndb/test/include/NDBT_Tables.hpp rename to storage/ndb/test/include/NDBT_Tables.hpp diff --git a/ndb/test/include/NDBT_Test.hpp b/storage/ndb/test/include/NDBT_Test.hpp similarity index 100% rename from ndb/test/include/NDBT_Test.hpp rename to storage/ndb/test/include/NDBT_Test.hpp diff --git a/ndb/test/include/NdbBackup.hpp b/storage/ndb/test/include/NdbBackup.hpp similarity index 100% rename from ndb/test/include/NdbBackup.hpp rename to storage/ndb/test/include/NdbBackup.hpp diff --git a/ndb/test/include/NdbConfig.hpp b/storage/ndb/test/include/NdbConfig.hpp similarity index 100% rename from ndb/test/include/NdbConfig.hpp rename to storage/ndb/test/include/NdbConfig.hpp diff --git a/ndb/test/include/NdbGrep.hpp b/storage/ndb/test/include/NdbGrep.hpp similarity index 100% rename from ndb/test/include/NdbGrep.hpp rename to storage/ndb/test/include/NdbGrep.hpp diff --git a/ndb/test/include/NdbRestarter.hpp b/storage/ndb/test/include/NdbRestarter.hpp similarity index 100% rename from ndb/test/include/NdbRestarter.hpp rename to storage/ndb/test/include/NdbRestarter.hpp diff --git a/ndb/test/include/NdbRestarts.hpp b/storage/ndb/test/include/NdbRestarts.hpp similarity index 100% rename from ndb/test/include/NdbRestarts.hpp rename to storage/ndb/test/include/NdbRestarts.hpp diff --git a/ndb/test/include/NdbSchemaCon.hpp b/storage/ndb/test/include/NdbSchemaCon.hpp similarity index 100% rename from ndb/test/include/NdbSchemaCon.hpp rename to storage/ndb/test/include/NdbSchemaCon.hpp diff --git a/ndb/test/include/NdbSchemaOp.hpp b/storage/ndb/test/include/NdbSchemaOp.hpp similarity index 100% rename from ndb/test/include/NdbSchemaOp.hpp rename to storage/ndb/test/include/NdbSchemaOp.hpp diff --git a/ndb/test/include/NdbTest.hpp b/storage/ndb/test/include/NdbTest.hpp similarity index 100% rename from ndb/test/include/NdbTest.hpp rename to storage/ndb/test/include/NdbTest.hpp diff --git a/ndb/test/include/NdbTimer.hpp b/storage/ndb/test/include/NdbTimer.hpp similarity index 100% rename from ndb/test/include/NdbTimer.hpp rename to storage/ndb/test/include/NdbTimer.hpp diff --git a/ndb/test/include/TestNdbEventOperation.hpp b/storage/ndb/test/include/TestNdbEventOperation.hpp similarity index 100% rename from ndb/test/include/TestNdbEventOperation.hpp rename to storage/ndb/test/include/TestNdbEventOperation.hpp diff --git a/ndb/test/include/UtilTransactions.hpp b/storage/ndb/test/include/UtilTransactions.hpp similarity index 100% rename from ndb/test/include/UtilTransactions.hpp rename to storage/ndb/test/include/UtilTransactions.hpp diff --git a/ndb/test/include/getarg.h b/storage/ndb/test/include/getarg.h similarity index 100% rename from ndb/test/include/getarg.h rename to storage/ndb/test/include/getarg.h diff --git a/ndb/test/ndbapi/InsertRecs.cpp b/storage/ndb/test/ndbapi/InsertRecs.cpp similarity index 100% rename from ndb/test/ndbapi/InsertRecs.cpp rename to storage/ndb/test/ndbapi/InsertRecs.cpp diff --git a/storage/ndb/test/ndbapi/Makefile.am b/storage/ndb/test/ndbapi/Makefile.am new file mode 100644 index 00000000000..f096a7c74e9 --- /dev/null +++ b/storage/ndb/test/ndbapi/Makefile.am @@ -0,0 +1,159 @@ + +SUBDIRS = bank + +ndbtest_PROGRAMS = \ +flexBench \ +drop_all_tabs \ +create_all_tabs \ +create_tab \ +flexAsynch \ +flexBench \ +flexHammer \ +flexTT \ +testBackup \ +testBasic \ +testBasicAsynch \ +testBlobs \ +testDataBuffers \ +testDict \ +testIndex \ +testMgm \ +testNdbApi \ +testNodeRestart \ +testOIBasic \ +testOperations \ +testRestartGci \ +testScan \ +testScanInterpreter \ +testScanPerf \ +testSystemRestart \ +testTimeout \ +testTransactions \ +testDeadlock \ +test_event ndbapi_slow_select testReadPerf testLcp \ +testPartitioning \ +testBitfield \ +DbCreate DbAsyncGenerator \ +test_event_multi_table + +#flexTimedAsynch +#testBlobs +#flex_bench_mysql + +create_all_tabs_SOURCES = create_all_tabs.cpp +create_tab_SOURCES = create_tab.cpp +drop_all_tabs_SOURCES = drop_all_tabs.cpp +flexAsynch_SOURCES = flexAsynch.cpp +flexBench_SOURCES = flexBench.cpp +flexHammer_SOURCES = flexHammer.cpp +flexTT_SOURCES = flexTT.cpp +#flexTimedAsynch_SOURCES = flexTimedAsynch.cpp +#flex_bench_mysql_SOURCES = flex_bench_mysql.cpp +testBackup_SOURCES = testBackup.cpp +testBasic_SOURCES = testBasic.cpp +testBasicAsynch_SOURCES = testBasicAsynch.cpp +testBlobs_SOURCES = testBlobs.cpp +testDataBuffers_SOURCES = testDataBuffers.cpp +testDict_SOURCES = testDict.cpp +testIndex_SOURCES = testIndex.cpp +testMgm_SOURCES = testMgm.cpp +testNdbApi_SOURCES = testNdbApi.cpp +testNodeRestart_SOURCES = testNodeRestart.cpp +testOIBasic_SOURCES = testOIBasic.cpp +testOperations_SOURCES = testOperations.cpp +testRestartGci_SOURCES = testRestartGci.cpp +testScan_SOURCES = testScan.cpp ScanFunctions.hpp +testScanInterpreter_SOURCES = testScanInterpreter.cpp ScanFilter.hpp ScanInterpretTest.hpp +testScanPerf_SOURCES = testScanPerf.cpp +testSystemRestart_SOURCES = testSystemRestart.cpp +testTimeout_SOURCES = testTimeout.cpp +testTransactions_SOURCES = testTransactions.cpp +testDeadlock_SOURCES = testDeadlock.cpp +test_event_SOURCES = test_event.cpp +ndbapi_slow_select_SOURCES = slow_select.cpp +testReadPerf_SOURCES = testReadPerf.cpp +testLcp_SOURCES = testLcp.cpp +testPartitioning_SOURCES = testPartitioning.cpp +testBitfield_SOURCES = testBitfield.cpp +DbCreate_SOURCES = bench/mainPopulate.cpp bench/dbPopulate.cpp bench/userInterface.cpp bench/dbPopulate.h bench/userInterface.h bench/testData.h bench/testDefinitions.h bench/ndb_schema.hpp bench/ndb_error.hpp +DbAsyncGenerator_SOURCES = bench/mainAsyncGenerator.cpp bench/asyncGenerator.cpp bench/ndb_async2.cpp bench/dbGenerator.h bench/macros.h bench/userInterface.h bench/testData.h bench/testDefinitions.h bench/ndb_schema.hpp bench/ndb_error.hpp +test_event_multi_table_SOURCES = test_event_multi_table.cpp + +INCLUDES_LOC = -I$(top_srcdir)/storage/ndb/include/kernel + +include $(top_srcdir)/storage/ndb/config/common.mk.am +include $(top_srcdir)/storage/ndb/config/type_ndbapitest.mk.am + +##testDict_INCLUDES = $(INCLUDES) -I$(top_srcdir)/ndb/include/kernel +##testIndex_INCLUDES = $(INCLUDES) -I$(top_srcdir)/ndb/include/kernel +##testSystemRestart_INCLUDES = $(INCLUDES) -I$(top_srcdir)/ndb/include/kernel +##testTransactions_INCLUDES = $(INCLUDES) -I$(top_srcdir)/ndb/include/kernel +testBackup_LDADD = $(LDADD) bank/libbank.a + +# Don't update the files from bitkeeper +%::SCCS/s.% + + + +windoze-dsp: flexBench.dsp testBasic.dsp testBlobs.dsp \ + testScan.dsp + +flexBench.dsp: Makefile \ + $(top_srcdir)/storage/ndb/config/win-prg.am \ + $(top_srcdir)/storage/ndb/config/win-name \ + $(top_srcdir)/storage/ndb/config/win-includes \ + $(top_srcdir)/storage/ndb/config/win-sources \ + $(top_srcdir)/storage/ndb/config/win-libraries + cat $(top_srcdir)/storage/ndb/config/win-prg.am > $@ + @$(top_srcdir)/storage/ndb/config/win-name $@ flexBench + @$(top_srcdir)/storage/ndb/config/win-includes $@ $(INCLUDES) + @$(top_srcdir)/storage/ndb/config/win-sources $@ $(flexBench_SOURCES) + @$(top_srcdir)/storage/ndb/config/win-libraries $@ LINK $(LDADD) + +testBasic.dsp: Makefile \ + $(top_srcdir)/storage/ndb/config/win-prg.am \ + $(top_srcdir)/storage/ndb/config/win-name \ + $(top_srcdir)/storage/ndb/config/win-includes \ + $(top_srcdir)/storage/ndb/config/win-sources \ + $(top_srcdir)/storage/ndb/config/win-libraries + cat $(top_srcdir)/storage/ndb/config/win-prg.am > $@ + @$(top_srcdir)/storage/ndb/config/win-name $@ testBasic + @$(top_srcdir)/storage/ndb/config/win-includes $@ $(INCLUDES) + @$(top_srcdir)/storage/ndb/config/win-sources $@ $(testBasic_SOURCES) + @$(top_srcdir)/storage/ndb/config/win-libraries $@ LINK $(LDADD) + +testOIBasic.dsp: Makefile \ + $(top_srcdir)/storage/ndb/config/win-prg.am \ + $(top_srcdir)/storage/ndb/config/win-name \ + $(top_srcdir)/storage/ndb/config/win-includes \ + $(top_srcdir)/storage/ndb/config/win-sources \ + $(top_srcdir)/storage/ndb/config/win-libraries + cat $(top_srcdir)/storage/ndb/config/win-prg.am > $@ + @$(top_srcdir)/storage/ndb/config/win-name $@ testOIBasic + @$(top_srcdir)/storage/ndb/config/win-includes $@ $(INCLUDES) + @$(top_srcdir)/storage/ndb/config/win-sources $@ $(testOIBasic_SOURCES) + @$(top_srcdir)/storage/ndb/config/win-libraries $@ LINK $(LDADD) + +testBlobs.dsp: Makefile \ + $(top_srcdir)/storage/ndb/config/win-prg.am \ + $(top_srcdir)/storage/ndb/config/win-name \ + $(top_srcdir)/storage/ndb/config/win-includes \ + $(top_srcdir)/storage/ndb/config/win-sources \ + $(top_srcdir)/storage/ndb/config/win-libraries + cat $(top_srcdir)/storage/ndb/config/win-prg.am > $@ + @$(top_srcdir)/storage/ndb/config/win-name $@ testBlobs + @$(top_srcdir)/storage/ndb/config/win-includes $@ $(INCLUDES) + @$(top_srcdir)/storage/ndb/config/win-sources $@ $(testBlobs_SOURCES) + @$(top_srcdir)/storage/ndb/config/win-libraries $@ LINK $(LDADD) + +testScan.dsp: Makefile \ + $(top_srcdir)/storage/ndb/config/win-prg.am \ + $(top_srcdir)/storage/ndb/config/win-name \ + $(top_srcdir)/storage/ndb/config/win-includes \ + $(top_srcdir)/storage/ndb/config/win-sources \ + $(top_srcdir)/storage/ndb/config/win-libraries + cat $(top_srcdir)/storage/ndb/config/win-prg.am > $@ + @$(top_srcdir)/storage/ndb/config/win-name $@ testScan + @$(top_srcdir)/storage/ndb/config/win-includes $@ $(INCLUDES) + @$(top_srcdir)/storage/ndb/config/win-sources $@ $(testScan_SOURCES) + @$(top_srcdir)/storage/ndb/config/win-libraries $@ LINK $(LDADD) diff --git a/ndb/test/ndbapi/ScanFilter.hpp b/storage/ndb/test/ndbapi/ScanFilter.hpp similarity index 100% rename from ndb/test/ndbapi/ScanFilter.hpp rename to storage/ndb/test/ndbapi/ScanFilter.hpp diff --git a/ndb/test/ndbapi/ScanFunctions.hpp b/storage/ndb/test/ndbapi/ScanFunctions.hpp similarity index 100% rename from ndb/test/ndbapi/ScanFunctions.hpp rename to storage/ndb/test/ndbapi/ScanFunctions.hpp diff --git a/ndb/test/ndbapi/ScanInterpretTest.hpp b/storage/ndb/test/ndbapi/ScanInterpretTest.hpp similarity index 100% rename from ndb/test/ndbapi/ScanInterpretTest.hpp rename to storage/ndb/test/ndbapi/ScanInterpretTest.hpp diff --git a/ndb/test/ndbapi/TraceNdbApi.cpp b/storage/ndb/test/ndbapi/TraceNdbApi.cpp similarity index 100% rename from ndb/test/ndbapi/TraceNdbApi.cpp rename to storage/ndb/test/ndbapi/TraceNdbApi.cpp diff --git a/ndb/test/ndbapi/VerifyNdbApi.cpp b/storage/ndb/test/ndbapi/VerifyNdbApi.cpp similarity index 100% rename from ndb/test/ndbapi/VerifyNdbApi.cpp rename to storage/ndb/test/ndbapi/VerifyNdbApi.cpp diff --git a/ndb/test/ndbapi/acid.cpp b/storage/ndb/test/ndbapi/acid.cpp similarity index 100% rename from ndb/test/ndbapi/acid.cpp rename to storage/ndb/test/ndbapi/acid.cpp diff --git a/ndb/test/ndbapi/acid2.cpp b/storage/ndb/test/ndbapi/acid2.cpp similarity index 100% rename from ndb/test/ndbapi/acid2.cpp rename to storage/ndb/test/ndbapi/acid2.cpp diff --git a/ndb/test/ndbapi/adoInsertRecs.cpp b/storage/ndb/test/ndbapi/adoInsertRecs.cpp similarity index 100% rename from ndb/test/ndbapi/adoInsertRecs.cpp rename to storage/ndb/test/ndbapi/adoInsertRecs.cpp diff --git a/ndb/test/ndbapi/asyncGenerator.cpp b/storage/ndb/test/ndbapi/asyncGenerator.cpp similarity index 100% rename from ndb/test/ndbapi/asyncGenerator.cpp rename to storage/ndb/test/ndbapi/asyncGenerator.cpp diff --git a/ndb/test/ndbapi/bank/Bank.cpp b/storage/ndb/test/ndbapi/bank/Bank.cpp similarity index 100% rename from ndb/test/ndbapi/bank/Bank.cpp rename to storage/ndb/test/ndbapi/bank/Bank.cpp diff --git a/ndb/test/ndbapi/bank/Bank.hpp b/storage/ndb/test/ndbapi/bank/Bank.hpp similarity index 100% rename from ndb/test/ndbapi/bank/Bank.hpp rename to storage/ndb/test/ndbapi/bank/Bank.hpp diff --git a/ndb/test/ndbapi/bank/BankLoad.cpp b/storage/ndb/test/ndbapi/bank/BankLoad.cpp similarity index 100% rename from ndb/test/ndbapi/bank/BankLoad.cpp rename to storage/ndb/test/ndbapi/bank/BankLoad.cpp diff --git a/ndb/test/ndbapi/bank/Makefile.am b/storage/ndb/test/ndbapi/bank/Makefile.am similarity index 83% rename from ndb/test/ndbapi/bank/Makefile.am rename to storage/ndb/test/ndbapi/bank/Makefile.am index d4f82a7f9c4..d269ddc047a 100644 --- a/ndb/test/ndbapi/bank/Makefile.am +++ b/storage/ndb/test/ndbapi/bank/Makefile.am @@ -15,8 +15,8 @@ bankTimer_SOURCES = bankTimer.cpp LDADD_LOC = $(noinst_LIBRARIES) -include $(top_srcdir)/ndb/config/common.mk.am -include $(top_srcdir)/ndb/config/type_ndbapitest.mk.am +include $(top_srcdir)/storage/ndb/config/common.mk.am +include $(top_srcdir)/storage/ndb/config/type_ndbapitest.mk.am # Don't update the files from bitkeeper %::SCCS/s.% diff --git a/ndb/test/ndbapi/bank/bankCreator.cpp b/storage/ndb/test/ndbapi/bank/bankCreator.cpp similarity index 100% rename from ndb/test/ndbapi/bank/bankCreator.cpp rename to storage/ndb/test/ndbapi/bank/bankCreator.cpp diff --git a/ndb/test/ndbapi/bank/bankMakeGL.cpp b/storage/ndb/test/ndbapi/bank/bankMakeGL.cpp similarity index 100% rename from ndb/test/ndbapi/bank/bankMakeGL.cpp rename to storage/ndb/test/ndbapi/bank/bankMakeGL.cpp diff --git a/ndb/test/ndbapi/bank/bankSumAccounts.cpp b/storage/ndb/test/ndbapi/bank/bankSumAccounts.cpp similarity index 100% rename from ndb/test/ndbapi/bank/bankSumAccounts.cpp rename to storage/ndb/test/ndbapi/bank/bankSumAccounts.cpp diff --git a/ndb/test/ndbapi/bank/bankTimer.cpp b/storage/ndb/test/ndbapi/bank/bankTimer.cpp similarity index 100% rename from ndb/test/ndbapi/bank/bankTimer.cpp rename to storage/ndb/test/ndbapi/bank/bankTimer.cpp diff --git a/ndb/test/ndbapi/bank/bankTransactionMaker.cpp b/storage/ndb/test/ndbapi/bank/bankTransactionMaker.cpp similarity index 100% rename from ndb/test/ndbapi/bank/bankTransactionMaker.cpp rename to storage/ndb/test/ndbapi/bank/bankTransactionMaker.cpp diff --git a/ndb/test/ndbapi/bank/bankValidateAllGLs.cpp b/storage/ndb/test/ndbapi/bank/bankValidateAllGLs.cpp similarity index 100% rename from ndb/test/ndbapi/bank/bankValidateAllGLs.cpp rename to storage/ndb/test/ndbapi/bank/bankValidateAllGLs.cpp diff --git a/ndb/test/ndbapi/bank/testBank.cpp b/storage/ndb/test/ndbapi/bank/testBank.cpp similarity index 100% rename from ndb/test/ndbapi/bank/testBank.cpp rename to storage/ndb/test/ndbapi/bank/testBank.cpp diff --git a/ndb/test/ndbapi/bench/asyncGenerator.cpp b/storage/ndb/test/ndbapi/bench/asyncGenerator.cpp similarity index 100% rename from ndb/test/ndbapi/bench/asyncGenerator.cpp rename to storage/ndb/test/ndbapi/bench/asyncGenerator.cpp diff --git a/ndb/test/ndbapi/bench/dbGenerator.h b/storage/ndb/test/ndbapi/bench/dbGenerator.h similarity index 100% rename from ndb/test/ndbapi/bench/dbGenerator.h rename to storage/ndb/test/ndbapi/bench/dbGenerator.h diff --git a/ndb/test/ndbapi/bench/dbPopulate.cpp b/storage/ndb/test/ndbapi/bench/dbPopulate.cpp similarity index 100% rename from ndb/test/ndbapi/bench/dbPopulate.cpp rename to storage/ndb/test/ndbapi/bench/dbPopulate.cpp diff --git a/ndb/test/ndbapi/bench/dbPopulate.h b/storage/ndb/test/ndbapi/bench/dbPopulate.h similarity index 100% rename from ndb/test/ndbapi/bench/dbPopulate.h rename to storage/ndb/test/ndbapi/bench/dbPopulate.h diff --git a/ndb/test/ndbapi/bench/macros.h b/storage/ndb/test/ndbapi/bench/macros.h similarity index 100% rename from ndb/test/ndbapi/bench/macros.h rename to storage/ndb/test/ndbapi/bench/macros.h diff --git a/ndb/test/ndbapi/bench/mainAsyncGenerator.cpp b/storage/ndb/test/ndbapi/bench/mainAsyncGenerator.cpp similarity index 100% rename from ndb/test/ndbapi/bench/mainAsyncGenerator.cpp rename to storage/ndb/test/ndbapi/bench/mainAsyncGenerator.cpp diff --git a/ndb/test/ndbapi/bench/mainPopulate.cpp b/storage/ndb/test/ndbapi/bench/mainPopulate.cpp similarity index 100% rename from ndb/test/ndbapi/bench/mainPopulate.cpp rename to storage/ndb/test/ndbapi/bench/mainPopulate.cpp diff --git a/ndb/test/ndbapi/bench/ndb_async1.cpp b/storage/ndb/test/ndbapi/bench/ndb_async1.cpp similarity index 100% rename from ndb/test/ndbapi/bench/ndb_async1.cpp rename to storage/ndb/test/ndbapi/bench/ndb_async1.cpp diff --git a/ndb/test/ndbapi/bench/ndb_async2.cpp b/storage/ndb/test/ndbapi/bench/ndb_async2.cpp similarity index 100% rename from ndb/test/ndbapi/bench/ndb_async2.cpp rename to storage/ndb/test/ndbapi/bench/ndb_async2.cpp diff --git a/ndb/test/ndbapi/bench/ndb_error.hpp b/storage/ndb/test/ndbapi/bench/ndb_error.hpp similarity index 100% rename from ndb/test/ndbapi/bench/ndb_error.hpp rename to storage/ndb/test/ndbapi/bench/ndb_error.hpp diff --git a/ndb/test/ndbapi/bench/ndb_schema.hpp b/storage/ndb/test/ndbapi/bench/ndb_schema.hpp similarity index 100% rename from ndb/test/ndbapi/bench/ndb_schema.hpp rename to storage/ndb/test/ndbapi/bench/ndb_schema.hpp diff --git a/ndb/test/ndbapi/bench/ndb_user_transaction.cpp b/storage/ndb/test/ndbapi/bench/ndb_user_transaction.cpp similarity index 100% rename from ndb/test/ndbapi/bench/ndb_user_transaction.cpp rename to storage/ndb/test/ndbapi/bench/ndb_user_transaction.cpp diff --git a/ndb/test/ndbapi/bench/ndb_user_transaction2.cpp b/storage/ndb/test/ndbapi/bench/ndb_user_transaction2.cpp similarity index 100% rename from ndb/test/ndbapi/bench/ndb_user_transaction2.cpp rename to storage/ndb/test/ndbapi/bench/ndb_user_transaction2.cpp diff --git a/ndb/test/ndbapi/bench/ndb_user_transaction3.cpp b/storage/ndb/test/ndbapi/bench/ndb_user_transaction3.cpp similarity index 100% rename from ndb/test/ndbapi/bench/ndb_user_transaction3.cpp rename to storage/ndb/test/ndbapi/bench/ndb_user_transaction3.cpp diff --git a/ndb/test/ndbapi/bench/ndb_user_transaction4.cpp b/storage/ndb/test/ndbapi/bench/ndb_user_transaction4.cpp similarity index 100% rename from ndb/test/ndbapi/bench/ndb_user_transaction4.cpp rename to storage/ndb/test/ndbapi/bench/ndb_user_transaction4.cpp diff --git a/ndb/test/ndbapi/bench/ndb_user_transaction5.cpp b/storage/ndb/test/ndbapi/bench/ndb_user_transaction5.cpp similarity index 100% rename from ndb/test/ndbapi/bench/ndb_user_transaction5.cpp rename to storage/ndb/test/ndbapi/bench/ndb_user_transaction5.cpp diff --git a/ndb/test/ndbapi/bench/ndb_user_transaction6.cpp b/storage/ndb/test/ndbapi/bench/ndb_user_transaction6.cpp similarity index 100% rename from ndb/test/ndbapi/bench/ndb_user_transaction6.cpp rename to storage/ndb/test/ndbapi/bench/ndb_user_transaction6.cpp diff --git a/ndb/test/ndbapi/bench/testData.h b/storage/ndb/test/ndbapi/bench/testData.h similarity index 100% rename from ndb/test/ndbapi/bench/testData.h rename to storage/ndb/test/ndbapi/bench/testData.h diff --git a/ndb/test/ndbapi/bench/testDefinitions.h b/storage/ndb/test/ndbapi/bench/testDefinitions.h similarity index 100% rename from ndb/test/ndbapi/bench/testDefinitions.h rename to storage/ndb/test/ndbapi/bench/testDefinitions.h diff --git a/ndb/test/ndbapi/bench/userInterface.cpp b/storage/ndb/test/ndbapi/bench/userInterface.cpp similarity index 100% rename from ndb/test/ndbapi/bench/userInterface.cpp rename to storage/ndb/test/ndbapi/bench/userInterface.cpp diff --git a/ndb/test/ndbapi/bench/userInterface.h b/storage/ndb/test/ndbapi/bench/userInterface.h similarity index 100% rename from ndb/test/ndbapi/bench/userInterface.h rename to storage/ndb/test/ndbapi/bench/userInterface.h diff --git a/ndb/test/ndbapi/benchronja.cpp b/storage/ndb/test/ndbapi/benchronja.cpp similarity index 100% rename from ndb/test/ndbapi/benchronja.cpp rename to storage/ndb/test/ndbapi/benchronja.cpp diff --git a/ndb/test/ndbapi/bulk_copy.cpp b/storage/ndb/test/ndbapi/bulk_copy.cpp similarity index 100% rename from ndb/test/ndbapi/bulk_copy.cpp rename to storage/ndb/test/ndbapi/bulk_copy.cpp diff --git a/ndb/test/ndbapi/cdrserver.cpp b/storage/ndb/test/ndbapi/cdrserver.cpp similarity index 100% rename from ndb/test/ndbapi/cdrserver.cpp rename to storage/ndb/test/ndbapi/cdrserver.cpp diff --git a/ndb/test/ndbapi/celloDb.cpp b/storage/ndb/test/ndbapi/celloDb.cpp similarity index 100% rename from ndb/test/ndbapi/celloDb.cpp rename to storage/ndb/test/ndbapi/celloDb.cpp diff --git a/ndb/test/ndbapi/create_all_tabs.cpp b/storage/ndb/test/ndbapi/create_all_tabs.cpp similarity index 100% rename from ndb/test/ndbapi/create_all_tabs.cpp rename to storage/ndb/test/ndbapi/create_all_tabs.cpp diff --git a/ndb/test/ndbapi/create_tab.cpp b/storage/ndb/test/ndbapi/create_tab.cpp similarity index 100% rename from ndb/test/ndbapi/create_tab.cpp rename to storage/ndb/test/ndbapi/create_tab.cpp diff --git a/ndb/test/ndbapi/drop_all_tabs.cpp b/storage/ndb/test/ndbapi/drop_all_tabs.cpp similarity index 100% rename from ndb/test/ndbapi/drop_all_tabs.cpp rename to storage/ndb/test/ndbapi/drop_all_tabs.cpp diff --git a/ndb/test/ndbapi/flexAsynch.cpp b/storage/ndb/test/ndbapi/flexAsynch.cpp similarity index 100% rename from ndb/test/ndbapi/flexAsynch.cpp rename to storage/ndb/test/ndbapi/flexAsynch.cpp diff --git a/ndb/test/ndbapi/flexBench.cpp b/storage/ndb/test/ndbapi/flexBench.cpp similarity index 100% rename from ndb/test/ndbapi/flexBench.cpp rename to storage/ndb/test/ndbapi/flexBench.cpp diff --git a/ndb/test/ndbapi/flexHammer.cpp b/storage/ndb/test/ndbapi/flexHammer.cpp similarity index 100% rename from ndb/test/ndbapi/flexHammer.cpp rename to storage/ndb/test/ndbapi/flexHammer.cpp diff --git a/ndb/test/ndbapi/flexScan.cpp b/storage/ndb/test/ndbapi/flexScan.cpp similarity index 100% rename from ndb/test/ndbapi/flexScan.cpp rename to storage/ndb/test/ndbapi/flexScan.cpp diff --git a/ndb/test/ndbapi/flexTT.cpp b/storage/ndb/test/ndbapi/flexTT.cpp similarity index 100% rename from ndb/test/ndbapi/flexTT.cpp rename to storage/ndb/test/ndbapi/flexTT.cpp diff --git a/ndb/test/ndbapi/flexTimedAsynch.cpp b/storage/ndb/test/ndbapi/flexTimedAsynch.cpp similarity index 100% rename from ndb/test/ndbapi/flexTimedAsynch.cpp rename to storage/ndb/test/ndbapi/flexTimedAsynch.cpp diff --git a/ndb/test/ndbapi/flex_bench_mysql.cpp b/storage/ndb/test/ndbapi/flex_bench_mysql.cpp similarity index 100% rename from ndb/test/ndbapi/flex_bench_mysql.cpp rename to storage/ndb/test/ndbapi/flex_bench_mysql.cpp diff --git a/ndb/test/ndbapi/index.cpp b/storage/ndb/test/ndbapi/index.cpp similarity index 100% rename from ndb/test/ndbapi/index.cpp rename to storage/ndb/test/ndbapi/index.cpp diff --git a/ndb/test/ndbapi/index2.cpp b/storage/ndb/test/ndbapi/index2.cpp similarity index 100% rename from ndb/test/ndbapi/index2.cpp rename to storage/ndb/test/ndbapi/index2.cpp diff --git a/ndb/test/ndbapi/initronja.cpp b/storage/ndb/test/ndbapi/initronja.cpp similarity index 100% rename from ndb/test/ndbapi/initronja.cpp rename to storage/ndb/test/ndbapi/initronja.cpp diff --git a/ndb/test/ndbapi/interpreterInTup.cpp b/storage/ndb/test/ndbapi/interpreterInTup.cpp similarity index 100% rename from ndb/test/ndbapi/interpreterInTup.cpp rename to storage/ndb/test/ndbapi/interpreterInTup.cpp diff --git a/ndb/test/ndbapi/mainAsyncGenerator.cpp b/storage/ndb/test/ndbapi/mainAsyncGenerator.cpp similarity index 100% rename from ndb/test/ndbapi/mainAsyncGenerator.cpp rename to storage/ndb/test/ndbapi/mainAsyncGenerator.cpp diff --git a/ndb/test/ndbapi/msa.cpp b/storage/ndb/test/ndbapi/msa.cpp similarity index 100% rename from ndb/test/ndbapi/msa.cpp rename to storage/ndb/test/ndbapi/msa.cpp diff --git a/ndb/test/ndbapi/ndb_async1.cpp b/storage/ndb/test/ndbapi/ndb_async1.cpp similarity index 100% rename from ndb/test/ndbapi/ndb_async1.cpp rename to storage/ndb/test/ndbapi/ndb_async1.cpp diff --git a/ndb/test/ndbapi/ndb_async2.cpp b/storage/ndb/test/ndbapi/ndb_async2.cpp similarity index 100% rename from ndb/test/ndbapi/ndb_async2.cpp rename to storage/ndb/test/ndbapi/ndb_async2.cpp diff --git a/ndb/test/ndbapi/ndb_user_populate.cpp b/storage/ndb/test/ndbapi/ndb_user_populate.cpp similarity index 100% rename from ndb/test/ndbapi/ndb_user_populate.cpp rename to storage/ndb/test/ndbapi/ndb_user_populate.cpp diff --git a/ndb/test/ndbapi/ndb_user_transaction.cpp b/storage/ndb/test/ndbapi/ndb_user_transaction.cpp similarity index 100% rename from ndb/test/ndbapi/ndb_user_transaction.cpp rename to storage/ndb/test/ndbapi/ndb_user_transaction.cpp diff --git a/ndb/test/ndbapi/ndb_user_transaction2.cpp b/storage/ndb/test/ndbapi/ndb_user_transaction2.cpp similarity index 100% rename from ndb/test/ndbapi/ndb_user_transaction2.cpp rename to storage/ndb/test/ndbapi/ndb_user_transaction2.cpp diff --git a/ndb/test/ndbapi/ndb_user_transaction3.cpp b/storage/ndb/test/ndbapi/ndb_user_transaction3.cpp similarity index 100% rename from ndb/test/ndbapi/ndb_user_transaction3.cpp rename to storage/ndb/test/ndbapi/ndb_user_transaction3.cpp diff --git a/ndb/test/ndbapi/ndb_user_transaction4.cpp b/storage/ndb/test/ndbapi/ndb_user_transaction4.cpp similarity index 100% rename from ndb/test/ndbapi/ndb_user_transaction4.cpp rename to storage/ndb/test/ndbapi/ndb_user_transaction4.cpp diff --git a/ndb/test/ndbapi/ndb_user_transaction5.cpp b/storage/ndb/test/ndbapi/ndb_user_transaction5.cpp similarity index 100% rename from ndb/test/ndbapi/ndb_user_transaction5.cpp rename to storage/ndb/test/ndbapi/ndb_user_transaction5.cpp diff --git a/ndb/test/ndbapi/ndb_user_transaction6.cpp b/storage/ndb/test/ndbapi/ndb_user_transaction6.cpp similarity index 100% rename from ndb/test/ndbapi/ndb_user_transaction6.cpp rename to storage/ndb/test/ndbapi/ndb_user_transaction6.cpp diff --git a/ndb/test/ndbapi/old_dirs/acid/Makefile b/storage/ndb/test/ndbapi/old_dirs/acid/Makefile similarity index 100% rename from ndb/test/ndbapi/old_dirs/acid/Makefile rename to storage/ndb/test/ndbapi/old_dirs/acid/Makefile diff --git a/ndb/test/ndbapi/old_dirs/acid2/Makefile b/storage/ndb/test/ndbapi/old_dirs/acid2/Makefile similarity index 100% rename from ndb/test/ndbapi/old_dirs/acid2/Makefile rename to storage/ndb/test/ndbapi/old_dirs/acid2/Makefile diff --git a/ndb/test/ndbapi/old_dirs/acid2/TraceNdbApi.hpp b/storage/ndb/test/ndbapi/old_dirs/acid2/TraceNdbApi.hpp similarity index 100% rename from ndb/test/ndbapi/old_dirs/acid2/TraceNdbApi.hpp rename to storage/ndb/test/ndbapi/old_dirs/acid2/TraceNdbApi.hpp diff --git a/ndb/test/ndbapi/old_dirs/acid2/VerifyNdbApi.hpp b/storage/ndb/test/ndbapi/old_dirs/acid2/VerifyNdbApi.hpp similarity index 100% rename from ndb/test/ndbapi/old_dirs/acid2/VerifyNdbApi.hpp rename to storage/ndb/test/ndbapi/old_dirs/acid2/VerifyNdbApi.hpp diff --git a/ndb/test/ndbapi/old_dirs/basicAsynch/Makefile b/storage/ndb/test/ndbapi/old_dirs/basicAsynch/Makefile similarity index 100% rename from ndb/test/ndbapi/old_dirs/basicAsynch/Makefile rename to storage/ndb/test/ndbapi/old_dirs/basicAsynch/Makefile diff --git a/ndb/test/ndbapi/old_dirs/bulk_copy/Makefile b/storage/ndb/test/ndbapi/old_dirs/bulk_copy/Makefile similarity index 100% rename from ndb/test/ndbapi/old_dirs/bulk_copy/Makefile rename to storage/ndb/test/ndbapi/old_dirs/bulk_copy/Makefile diff --git a/ndb/test/ndbapi/old_dirs/create_all_tabs/Makefile b/storage/ndb/test/ndbapi/old_dirs/create_all_tabs/Makefile similarity index 100% rename from ndb/test/ndbapi/old_dirs/create_all_tabs/Makefile rename to storage/ndb/test/ndbapi/old_dirs/create_all_tabs/Makefile diff --git a/ndb/test/ndbapi/old_dirs/create_tab/Makefile b/storage/ndb/test/ndbapi/old_dirs/create_tab/Makefile similarity index 100% rename from ndb/test/ndbapi/old_dirs/create_tab/Makefile rename to storage/ndb/test/ndbapi/old_dirs/create_tab/Makefile diff --git a/ndb/test/ndbapi/old_dirs/drop_all_tabs/Makefile b/storage/ndb/test/ndbapi/old_dirs/drop_all_tabs/Makefile similarity index 100% rename from ndb/test/ndbapi/old_dirs/drop_all_tabs/Makefile rename to storage/ndb/test/ndbapi/old_dirs/drop_all_tabs/Makefile diff --git a/ndb/test/ndbapi/old_dirs/flexAsynch/Makefile b/storage/ndb/test/ndbapi/old_dirs/flexAsynch/Makefile similarity index 100% rename from ndb/test/ndbapi/old_dirs/flexAsynch/Makefile rename to storage/ndb/test/ndbapi/old_dirs/flexAsynch/Makefile diff --git a/ndb/test/ndbapi/old_dirs/flexBench/Makefile.am b/storage/ndb/test/ndbapi/old_dirs/flexBench/Makefile.am similarity index 100% rename from ndb/test/ndbapi/old_dirs/flexBench/Makefile.am rename to storage/ndb/test/ndbapi/old_dirs/flexBench/Makefile.am diff --git a/ndb/test/ndbapi/old_dirs/flexBench/ndbplot.pl b/storage/ndb/test/ndbapi/old_dirs/flexBench/ndbplot.pl similarity index 100% rename from ndb/test/ndbapi/old_dirs/flexBench/ndbplot.pl rename to storage/ndb/test/ndbapi/old_dirs/flexBench/ndbplot.pl diff --git a/ndb/test/ndbapi/old_dirs/flexHammer/Makefile b/storage/ndb/test/ndbapi/old_dirs/flexHammer/Makefile similarity index 100% rename from ndb/test/ndbapi/old_dirs/flexHammer/Makefile rename to storage/ndb/test/ndbapi/old_dirs/flexHammer/Makefile diff --git a/ndb/test/ndbapi/old_dirs/flexHammer/README b/storage/ndb/test/ndbapi/old_dirs/flexHammer/README similarity index 100% rename from ndb/test/ndbapi/old_dirs/flexHammer/README rename to storage/ndb/test/ndbapi/old_dirs/flexHammer/README diff --git a/ndb/test/ndbapi/old_dirs/flexScan/Makefile b/storage/ndb/test/ndbapi/old_dirs/flexScan/Makefile similarity index 100% rename from ndb/test/ndbapi/old_dirs/flexScan/Makefile rename to storage/ndb/test/ndbapi/old_dirs/flexScan/Makefile diff --git a/ndb/test/ndbapi/old_dirs/flexScan/README b/storage/ndb/test/ndbapi/old_dirs/flexScan/README similarity index 100% rename from ndb/test/ndbapi/old_dirs/flexScan/README rename to storage/ndb/test/ndbapi/old_dirs/flexScan/README diff --git a/ndb/test/ndbapi/old_dirs/flexTT/Makefile b/storage/ndb/test/ndbapi/old_dirs/flexTT/Makefile similarity index 100% rename from ndb/test/ndbapi/old_dirs/flexTT/Makefile rename to storage/ndb/test/ndbapi/old_dirs/flexTT/Makefile diff --git a/ndb/test/ndbapi/old_dirs/flexTimedAsynch/Makefile b/storage/ndb/test/ndbapi/old_dirs/flexTimedAsynch/Makefile similarity index 100% rename from ndb/test/ndbapi/old_dirs/flexTimedAsynch/Makefile rename to storage/ndb/test/ndbapi/old_dirs/flexTimedAsynch/Makefile diff --git a/ndb/test/ndbapi/old_dirs/flex_bench_mysql/Makefile b/storage/ndb/test/ndbapi/old_dirs/flex_bench_mysql/Makefile similarity index 100% rename from ndb/test/ndbapi/old_dirs/flex_bench_mysql/Makefile rename to storage/ndb/test/ndbapi/old_dirs/flex_bench_mysql/Makefile diff --git a/ndb/test/ndbapi/old_dirs/indexTest/Makefile b/storage/ndb/test/ndbapi/old_dirs/indexTest/Makefile similarity index 100% rename from ndb/test/ndbapi/old_dirs/indexTest/Makefile rename to storage/ndb/test/ndbapi/old_dirs/indexTest/Makefile diff --git a/ndb/test/ndbapi/old_dirs/indexTest2/Makefile b/storage/ndb/test/ndbapi/old_dirs/indexTest2/Makefile similarity index 100% rename from ndb/test/ndbapi/old_dirs/indexTest2/Makefile rename to storage/ndb/test/ndbapi/old_dirs/indexTest2/Makefile diff --git a/ndb/test/ndbapi/old_dirs/interpreterInTup/Makefile b/storage/ndb/test/ndbapi/old_dirs/interpreterInTup/Makefile similarity index 100% rename from ndb/test/ndbapi/old_dirs/interpreterInTup/Makefile rename to storage/ndb/test/ndbapi/old_dirs/interpreterInTup/Makefile diff --git a/ndb/test/ndbapi/old_dirs/lmc-bench/Makefile b/storage/ndb/test/ndbapi/old_dirs/lmc-bench/Makefile similarity index 100% rename from ndb/test/ndbapi/old_dirs/lmc-bench/Makefile rename to storage/ndb/test/ndbapi/old_dirs/lmc-bench/Makefile diff --git a/ndb/test/ndbapi/old_dirs/lmc-bench/async-src/Makefile b/storage/ndb/test/ndbapi/old_dirs/lmc-bench/async-src/Makefile similarity index 100% rename from ndb/test/ndbapi/old_dirs/lmc-bench/async-src/Makefile rename to storage/ndb/test/ndbapi/old_dirs/lmc-bench/async-src/Makefile diff --git a/ndb/test/ndbapi/old_dirs/lmc-bench/async-src/generator/Makefile b/storage/ndb/test/ndbapi/old_dirs/lmc-bench/async-src/generator/Makefile similarity index 100% rename from ndb/test/ndbapi/old_dirs/lmc-bench/async-src/generator/Makefile rename to storage/ndb/test/ndbapi/old_dirs/lmc-bench/async-src/generator/Makefile diff --git a/ndb/test/ndbapi/old_dirs/lmc-bench/async-src/include/dbGenerator.h b/storage/ndb/test/ndbapi/old_dirs/lmc-bench/async-src/include/dbGenerator.h similarity index 100% rename from ndb/test/ndbapi/old_dirs/lmc-bench/async-src/include/dbGenerator.h rename to storage/ndb/test/ndbapi/old_dirs/lmc-bench/async-src/include/dbGenerator.h diff --git a/ndb/test/ndbapi/old_dirs/lmc-bench/async-src/include/testData.h b/storage/ndb/test/ndbapi/old_dirs/lmc-bench/async-src/include/testData.h similarity index 100% rename from ndb/test/ndbapi/old_dirs/lmc-bench/async-src/include/testData.h rename to storage/ndb/test/ndbapi/old_dirs/lmc-bench/async-src/include/testData.h diff --git a/ndb/test/ndbapi/old_dirs/lmc-bench/async-src/include/userInterface.h b/storage/ndb/test/ndbapi/old_dirs/lmc-bench/async-src/include/userInterface.h similarity index 100% rename from ndb/test/ndbapi/old_dirs/lmc-bench/async-src/include/userInterface.h rename to storage/ndb/test/ndbapi/old_dirs/lmc-bench/async-src/include/userInterface.h diff --git a/ndb/test/ndbapi/old_dirs/lmc-bench/async-src/user/Makefile b/storage/ndb/test/ndbapi/old_dirs/lmc-bench/async-src/user/Makefile similarity index 100% rename from ndb/test/ndbapi/old_dirs/lmc-bench/async-src/user/Makefile rename to storage/ndb/test/ndbapi/old_dirs/lmc-bench/async-src/user/Makefile diff --git a/ndb/test/ndbapi/old_dirs/lmc-bench/async-src/user/macros.h b/storage/ndb/test/ndbapi/old_dirs/lmc-bench/async-src/user/macros.h similarity index 100% rename from ndb/test/ndbapi/old_dirs/lmc-bench/async-src/user/macros.h rename to storage/ndb/test/ndbapi/old_dirs/lmc-bench/async-src/user/macros.h diff --git a/ndb/test/ndbapi/old_dirs/lmc-bench/async-src/user/ndb_error.hpp b/storage/ndb/test/ndbapi/old_dirs/lmc-bench/async-src/user/ndb_error.hpp similarity index 100% rename from ndb/test/ndbapi/old_dirs/lmc-bench/async-src/user/ndb_error.hpp rename to storage/ndb/test/ndbapi/old_dirs/lmc-bench/async-src/user/ndb_error.hpp diff --git a/ndb/test/ndbapi/old_dirs/lmc-bench/bin/.empty b/storage/ndb/test/ndbapi/old_dirs/lmc-bench/bin/.empty similarity index 100% rename from ndb/test/ndbapi/old_dirs/lmc-bench/bin/.empty rename to storage/ndb/test/ndbapi/old_dirs/lmc-bench/bin/.empty diff --git a/ndb/test/ndbapi/old_dirs/lmc-bench/include/ndb_schema.hpp b/storage/ndb/test/ndbapi/old_dirs/lmc-bench/include/ndb_schema.hpp similarity index 100% rename from ndb/test/ndbapi/old_dirs/lmc-bench/include/ndb_schema.hpp rename to storage/ndb/test/ndbapi/old_dirs/lmc-bench/include/ndb_schema.hpp diff --git a/ndb/test/ndbapi/old_dirs/lmc-bench/include/testDefinitions.h b/storage/ndb/test/ndbapi/old_dirs/lmc-bench/include/testDefinitions.h similarity index 100% rename from ndb/test/ndbapi/old_dirs/lmc-bench/include/testDefinitions.h rename to storage/ndb/test/ndbapi/old_dirs/lmc-bench/include/testDefinitions.h diff --git a/ndb/test/ndbapi/old_dirs/lmc-bench/lib/.empty b/storage/ndb/test/ndbapi/old_dirs/lmc-bench/lib/.empty similarity index 100% rename from ndb/test/ndbapi/old_dirs/lmc-bench/lib/.empty rename to storage/ndb/test/ndbapi/old_dirs/lmc-bench/lib/.empty diff --git a/ndb/test/ndbapi/old_dirs/lmc-bench/script/Makefile b/storage/ndb/test/ndbapi/old_dirs/lmc-bench/script/Makefile similarity index 100% rename from ndb/test/ndbapi/old_dirs/lmc-bench/script/Makefile rename to storage/ndb/test/ndbapi/old_dirs/lmc-bench/script/Makefile diff --git a/ndb/test/ndbapi/old_dirs/lmc-bench/script/async-lmc-bench-l-p10.sh b/storage/ndb/test/ndbapi/old_dirs/lmc-bench/script/async-lmc-bench-l-p10.sh similarity index 100% rename from ndb/test/ndbapi/old_dirs/lmc-bench/script/async-lmc-bench-l-p10.sh rename to storage/ndb/test/ndbapi/old_dirs/lmc-bench/script/async-lmc-bench-l-p10.sh diff --git a/ndb/test/ndbapi/old_dirs/lmc-bench/script/async-lmc-bench-l.sh b/storage/ndb/test/ndbapi/old_dirs/lmc-bench/script/async-lmc-bench-l.sh similarity index 100% rename from ndb/test/ndbapi/old_dirs/lmc-bench/script/async-lmc-bench-l.sh rename to storage/ndb/test/ndbapi/old_dirs/lmc-bench/script/async-lmc-bench-l.sh diff --git a/ndb/test/ndbapi/old_dirs/lmc-bench/script/async-lmc-bench-p10.sh b/storage/ndb/test/ndbapi/old_dirs/lmc-bench/script/async-lmc-bench-p10.sh similarity index 100% rename from ndb/test/ndbapi/old_dirs/lmc-bench/script/async-lmc-bench-p10.sh rename to storage/ndb/test/ndbapi/old_dirs/lmc-bench/script/async-lmc-bench-p10.sh diff --git a/ndb/test/ndbapi/old_dirs/lmc-bench/script/async-lmc-bench.sh b/storage/ndb/test/ndbapi/old_dirs/lmc-bench/script/async-lmc-bench.sh similarity index 100% rename from ndb/test/ndbapi/old_dirs/lmc-bench/script/async-lmc-bench.sh rename to storage/ndb/test/ndbapi/old_dirs/lmc-bench/script/async-lmc-bench.sh diff --git a/ndb/test/ndbapi/old_dirs/lmc-bench/src/Makefile b/storage/ndb/test/ndbapi/old_dirs/lmc-bench/src/Makefile similarity index 100% rename from ndb/test/ndbapi/old_dirs/lmc-bench/src/Makefile rename to storage/ndb/test/ndbapi/old_dirs/lmc-bench/src/Makefile diff --git a/ndb/test/ndbapi/old_dirs/lmc-bench/src/README b/storage/ndb/test/ndbapi/old_dirs/lmc-bench/src/README similarity index 100% rename from ndb/test/ndbapi/old_dirs/lmc-bench/src/README rename to storage/ndb/test/ndbapi/old_dirs/lmc-bench/src/README diff --git a/ndb/test/ndbapi/old_dirs/lmc-bench/src/generator/Makefile b/storage/ndb/test/ndbapi/old_dirs/lmc-bench/src/generator/Makefile similarity index 100% rename from ndb/test/ndbapi/old_dirs/lmc-bench/src/generator/Makefile rename to storage/ndb/test/ndbapi/old_dirs/lmc-bench/src/generator/Makefile diff --git a/ndb/test/ndbapi/old_dirs/lmc-bench/src/generator/dbGenerator.c b/storage/ndb/test/ndbapi/old_dirs/lmc-bench/src/generator/dbGenerator.c similarity index 100% rename from ndb/test/ndbapi/old_dirs/lmc-bench/src/generator/dbGenerator.c rename to storage/ndb/test/ndbapi/old_dirs/lmc-bench/src/generator/dbGenerator.c diff --git a/ndb/test/ndbapi/old_dirs/lmc-bench/src/generator/dbGenerator.h b/storage/ndb/test/ndbapi/old_dirs/lmc-bench/src/generator/dbGenerator.h similarity index 100% rename from ndb/test/ndbapi/old_dirs/lmc-bench/src/generator/dbGenerator.h rename to storage/ndb/test/ndbapi/old_dirs/lmc-bench/src/generator/dbGenerator.h diff --git a/ndb/test/ndbapi/old_dirs/lmc-bench/src/generator/mainGenerator.c b/storage/ndb/test/ndbapi/old_dirs/lmc-bench/src/generator/mainGenerator.c similarity index 100% rename from ndb/test/ndbapi/old_dirs/lmc-bench/src/generator/mainGenerator.c rename to storage/ndb/test/ndbapi/old_dirs/lmc-bench/src/generator/mainGenerator.c diff --git a/ndb/test/ndbapi/old_dirs/lmc-bench/src/include/testData.h b/storage/ndb/test/ndbapi/old_dirs/lmc-bench/src/include/testData.h similarity index 100% rename from ndb/test/ndbapi/old_dirs/lmc-bench/src/include/testData.h rename to storage/ndb/test/ndbapi/old_dirs/lmc-bench/src/include/testData.h diff --git a/ndb/test/ndbapi/old_dirs/lmc-bench/src/include/userInterface.h b/storage/ndb/test/ndbapi/old_dirs/lmc-bench/src/include/userInterface.h similarity index 100% rename from ndb/test/ndbapi/old_dirs/lmc-bench/src/include/userInterface.h rename to storage/ndb/test/ndbapi/old_dirs/lmc-bench/src/include/userInterface.h diff --git a/ndb/test/ndbapi/old_dirs/lmc-bench/src/makevars.linux b/storage/ndb/test/ndbapi/old_dirs/lmc-bench/src/makevars.linux similarity index 100% rename from ndb/test/ndbapi/old_dirs/lmc-bench/src/makevars.linux rename to storage/ndb/test/ndbapi/old_dirs/lmc-bench/src/makevars.linux diff --git a/ndb/test/ndbapi/old_dirs/lmc-bench/src/makevars.sparc b/storage/ndb/test/ndbapi/old_dirs/lmc-bench/src/makevars.sparc similarity index 100% rename from ndb/test/ndbapi/old_dirs/lmc-bench/src/makevars.sparc rename to storage/ndb/test/ndbapi/old_dirs/lmc-bench/src/makevars.sparc diff --git a/ndb/test/ndbapi/old_dirs/lmc-bench/src/populator/Makefile b/storage/ndb/test/ndbapi/old_dirs/lmc-bench/src/populator/Makefile similarity index 100% rename from ndb/test/ndbapi/old_dirs/lmc-bench/src/populator/Makefile rename to storage/ndb/test/ndbapi/old_dirs/lmc-bench/src/populator/Makefile diff --git a/ndb/test/ndbapi/old_dirs/lmc-bench/src/populator/dbPopulate.c b/storage/ndb/test/ndbapi/old_dirs/lmc-bench/src/populator/dbPopulate.c similarity index 100% rename from ndb/test/ndbapi/old_dirs/lmc-bench/src/populator/dbPopulate.c rename to storage/ndb/test/ndbapi/old_dirs/lmc-bench/src/populator/dbPopulate.c diff --git a/ndb/test/ndbapi/old_dirs/lmc-bench/src/populator/dbPopulate.h b/storage/ndb/test/ndbapi/old_dirs/lmc-bench/src/populator/dbPopulate.h similarity index 100% rename from ndb/test/ndbapi/old_dirs/lmc-bench/src/populator/dbPopulate.h rename to storage/ndb/test/ndbapi/old_dirs/lmc-bench/src/populator/dbPopulate.h diff --git a/ndb/test/ndbapi/old_dirs/lmc-bench/src/populator/mainPopulate.c b/storage/ndb/test/ndbapi/old_dirs/lmc-bench/src/populator/mainPopulate.c similarity index 100% rename from ndb/test/ndbapi/old_dirs/lmc-bench/src/populator/mainPopulate.c rename to storage/ndb/test/ndbapi/old_dirs/lmc-bench/src/populator/mainPopulate.c diff --git a/ndb/test/ndbapi/old_dirs/lmc-bench/src/user/Makefile b/storage/ndb/test/ndbapi/old_dirs/lmc-bench/src/user/Makefile similarity index 100% rename from ndb/test/ndbapi/old_dirs/lmc-bench/src/user/Makefile rename to storage/ndb/test/ndbapi/old_dirs/lmc-bench/src/user/Makefile diff --git a/ndb/test/ndbapi/old_dirs/lmc-bench/src/user/localDbPrepare.c b/storage/ndb/test/ndbapi/old_dirs/lmc-bench/src/user/localDbPrepare.c similarity index 100% rename from ndb/test/ndbapi/old_dirs/lmc-bench/src/user/localDbPrepare.c rename to storage/ndb/test/ndbapi/old_dirs/lmc-bench/src/user/localDbPrepare.c diff --git a/ndb/test/ndbapi/old_dirs/lmc-bench/src/user/macros.h b/storage/ndb/test/ndbapi/old_dirs/lmc-bench/src/user/macros.h similarity index 100% rename from ndb/test/ndbapi/old_dirs/lmc-bench/src/user/macros.h rename to storage/ndb/test/ndbapi/old_dirs/lmc-bench/src/user/macros.h diff --git a/ndb/test/ndbapi/old_dirs/lmc-bench/src/user/ndb_error.hpp b/storage/ndb/test/ndbapi/old_dirs/lmc-bench/src/user/ndb_error.hpp similarity index 100% rename from ndb/test/ndbapi/old_dirs/lmc-bench/src/user/ndb_error.hpp rename to storage/ndb/test/ndbapi/old_dirs/lmc-bench/src/user/ndb_error.hpp diff --git a/ndb/test/ndbapi/old_dirs/lmc-bench/src/user/old/Makefile b/storage/ndb/test/ndbapi/old_dirs/lmc-bench/src/user/old/Makefile similarity index 100% rename from ndb/test/ndbapi/old_dirs/lmc-bench/src/user/old/Makefile rename to storage/ndb/test/ndbapi/old_dirs/lmc-bench/src/user/old/Makefile diff --git a/ndb/test/ndbapi/old_dirs/lmc-bench/src/user/old/userHandle.h b/storage/ndb/test/ndbapi/old_dirs/lmc-bench/src/user/old/userHandle.h similarity index 100% rename from ndb/test/ndbapi/old_dirs/lmc-bench/src/user/old/userHandle.h rename to storage/ndb/test/ndbapi/old_dirs/lmc-bench/src/user/old/userHandle.h diff --git a/ndb/test/ndbapi/old_dirs/lmc-bench/src/user/old/userInterface.c b/storage/ndb/test/ndbapi/old_dirs/lmc-bench/src/user/old/userInterface.c similarity index 100% rename from ndb/test/ndbapi/old_dirs/lmc-bench/src/user/old/userInterface.c rename to storage/ndb/test/ndbapi/old_dirs/lmc-bench/src/user/old/userInterface.c diff --git a/ndb/test/ndbapi/old_dirs/lmc-bench/src/user/old/userTransaction.c b/storage/ndb/test/ndbapi/old_dirs/lmc-bench/src/user/old/userTransaction.c similarity index 100% rename from ndb/test/ndbapi/old_dirs/lmc-bench/src/user/old/userTransaction.c rename to storage/ndb/test/ndbapi/old_dirs/lmc-bench/src/user/old/userTransaction.c diff --git a/ndb/test/ndbapi/old_dirs/lmc-bench/src/user/userHandle.h b/storage/ndb/test/ndbapi/old_dirs/lmc-bench/src/user/userHandle.h similarity index 100% rename from ndb/test/ndbapi/old_dirs/lmc-bench/src/user/userHandle.h rename to storage/ndb/test/ndbapi/old_dirs/lmc-bench/src/user/userHandle.h diff --git a/ndb/test/ndbapi/old_dirs/lmc-bench/src/user/userInterface.cpp b/storage/ndb/test/ndbapi/old_dirs/lmc-bench/src/user/userInterface.cpp similarity index 100% rename from ndb/test/ndbapi/old_dirs/lmc-bench/src/user/userInterface.cpp rename to storage/ndb/test/ndbapi/old_dirs/lmc-bench/src/user/userInterface.cpp diff --git a/ndb/test/ndbapi/old_dirs/lmc-bench/src/user/userTransaction.c b/storage/ndb/test/ndbapi/old_dirs/lmc-bench/src/user/userTransaction.c similarity index 100% rename from ndb/test/ndbapi/old_dirs/lmc-bench/src/user/userTransaction.c rename to storage/ndb/test/ndbapi/old_dirs/lmc-bench/src/user/userTransaction.c diff --git a/ndb/test/ndbapi/old_dirs/restarter/Makefile b/storage/ndb/test/ndbapi/old_dirs/restarter/Makefile similarity index 100% rename from ndb/test/ndbapi/old_dirs/restarter/Makefile rename to storage/ndb/test/ndbapi/old_dirs/restarter/Makefile diff --git a/ndb/test/ndbapi/old_dirs/restarter2/Makefile b/storage/ndb/test/ndbapi/old_dirs/restarter2/Makefile similarity index 100% rename from ndb/test/ndbapi/old_dirs/restarter2/Makefile rename to storage/ndb/test/ndbapi/old_dirs/restarter2/Makefile diff --git a/ndb/test/ndbapi/old_dirs/restarts/Makefile b/storage/ndb/test/ndbapi/old_dirs/restarts/Makefile similarity index 100% rename from ndb/test/ndbapi/old_dirs/restarts/Makefile rename to storage/ndb/test/ndbapi/old_dirs/restarts/Makefile diff --git a/ndb/test/ndbapi/old_dirs/ronja/Makefile b/storage/ndb/test/ndbapi/old_dirs/ronja/Makefile similarity index 100% rename from ndb/test/ndbapi/old_dirs/ronja/Makefile rename to storage/ndb/test/ndbapi/old_dirs/ronja/Makefile diff --git a/ndb/test/ndbapi/old_dirs/ronja/benchronja/Makefile b/storage/ndb/test/ndbapi/old_dirs/ronja/benchronja/Makefile similarity index 100% rename from ndb/test/ndbapi/old_dirs/ronja/benchronja/Makefile rename to storage/ndb/test/ndbapi/old_dirs/ronja/benchronja/Makefile diff --git a/ndb/test/ndbapi/old_dirs/ronja/initronja/Makefile b/storage/ndb/test/ndbapi/old_dirs/ronja/initronja/Makefile similarity index 100% rename from ndb/test/ndbapi/old_dirs/ronja/initronja/Makefile rename to storage/ndb/test/ndbapi/old_dirs/ronja/initronja/Makefile diff --git a/ndb/test/ndbapi/old_dirs/telco/Makefile b/storage/ndb/test/ndbapi/old_dirs/telco/Makefile similarity index 100% rename from ndb/test/ndbapi/old_dirs/telco/Makefile rename to storage/ndb/test/ndbapi/old_dirs/telco/Makefile diff --git a/ndb/test/ndbapi/old_dirs/telco/readme b/storage/ndb/test/ndbapi/old_dirs/telco/readme similarity index 100% rename from ndb/test/ndbapi/old_dirs/telco/readme rename to storage/ndb/test/ndbapi/old_dirs/telco/readme diff --git a/ndb/test/ndbapi/old_dirs/testBackup/Makefile b/storage/ndb/test/ndbapi/old_dirs/testBackup/Makefile similarity index 100% rename from ndb/test/ndbapi/old_dirs/testBackup/Makefile rename to storage/ndb/test/ndbapi/old_dirs/testBackup/Makefile diff --git a/ndb/test/ndbapi/old_dirs/testBasic/Makefile b/storage/ndb/test/ndbapi/old_dirs/testBasic/Makefile similarity index 100% rename from ndb/test/ndbapi/old_dirs/testBasic/Makefile rename to storage/ndb/test/ndbapi/old_dirs/testBasic/Makefile diff --git a/ndb/test/ndbapi/old_dirs/testBlobs/Makefile b/storage/ndb/test/ndbapi/old_dirs/testBlobs/Makefile similarity index 100% rename from ndb/test/ndbapi/old_dirs/testBlobs/Makefile rename to storage/ndb/test/ndbapi/old_dirs/testBlobs/Makefile diff --git a/ndb/test/ndbapi/old_dirs/testDataBuffers/Makefile b/storage/ndb/test/ndbapi/old_dirs/testDataBuffers/Makefile similarity index 100% rename from ndb/test/ndbapi/old_dirs/testDataBuffers/Makefile rename to storage/ndb/test/ndbapi/old_dirs/testDataBuffers/Makefile diff --git a/ndb/test/ndbapi/old_dirs/testDict/Makefile b/storage/ndb/test/ndbapi/old_dirs/testDict/Makefile similarity index 100% rename from ndb/test/ndbapi/old_dirs/testDict/Makefile rename to storage/ndb/test/ndbapi/old_dirs/testDict/Makefile diff --git a/ndb/test/ndbapi/old_dirs/testGrep/Makefile b/storage/ndb/test/ndbapi/old_dirs/testGrep/Makefile similarity index 100% rename from ndb/test/ndbapi/old_dirs/testGrep/Makefile rename to storage/ndb/test/ndbapi/old_dirs/testGrep/Makefile diff --git a/ndb/test/ndbapi/old_dirs/testGrep/verify/Makefile b/storage/ndb/test/ndbapi/old_dirs/testGrep/verify/Makefile similarity index 100% rename from ndb/test/ndbapi/old_dirs/testGrep/verify/Makefile rename to storage/ndb/test/ndbapi/old_dirs/testGrep/verify/Makefile diff --git a/ndb/test/ndbapi/old_dirs/testIndex/Makefile b/storage/ndb/test/ndbapi/old_dirs/testIndex/Makefile similarity index 100% rename from ndb/test/ndbapi/old_dirs/testIndex/Makefile rename to storage/ndb/test/ndbapi/old_dirs/testIndex/Makefile diff --git a/ndb/test/ndbapi/old_dirs/testInterpreter/Makefile b/storage/ndb/test/ndbapi/old_dirs/testInterpreter/Makefile similarity index 100% rename from ndb/test/ndbapi/old_dirs/testInterpreter/Makefile rename to storage/ndb/test/ndbapi/old_dirs/testInterpreter/Makefile diff --git a/ndb/test/ndbapi/old_dirs/testMgm/Makefile b/storage/ndb/test/ndbapi/old_dirs/testMgm/Makefile similarity index 100% rename from ndb/test/ndbapi/old_dirs/testMgm/Makefile rename to storage/ndb/test/ndbapi/old_dirs/testMgm/Makefile diff --git a/ndb/test/ndbapi/old_dirs/testNdbApi/Makefile b/storage/ndb/test/ndbapi/old_dirs/testNdbApi/Makefile similarity index 100% rename from ndb/test/ndbapi/old_dirs/testNdbApi/Makefile rename to storage/ndb/test/ndbapi/old_dirs/testNdbApi/Makefile diff --git a/ndb/test/ndbapi/old_dirs/testNodeRestart/Makefile b/storage/ndb/test/ndbapi/old_dirs/testNodeRestart/Makefile similarity index 100% rename from ndb/test/ndbapi/old_dirs/testNodeRestart/Makefile rename to storage/ndb/test/ndbapi/old_dirs/testNodeRestart/Makefile diff --git a/ndb/test/ndbapi/old_dirs/testOIBasic/Makefile b/storage/ndb/test/ndbapi/old_dirs/testOIBasic/Makefile similarity index 100% rename from ndb/test/ndbapi/old_dirs/testOIBasic/Makefile rename to storage/ndb/test/ndbapi/old_dirs/testOIBasic/Makefile diff --git a/ndb/test/ndbapi/old_dirs/testOIBasic/times.txt b/storage/ndb/test/ndbapi/old_dirs/testOIBasic/times.txt similarity index 100% rename from ndb/test/ndbapi/old_dirs/testOIBasic/times.txt rename to storage/ndb/test/ndbapi/old_dirs/testOIBasic/times.txt diff --git a/ndb/test/ndbapi/old_dirs/testOperations/Makefile b/storage/ndb/test/ndbapi/old_dirs/testOperations/Makefile similarity index 100% rename from ndb/test/ndbapi/old_dirs/testOperations/Makefile rename to storage/ndb/test/ndbapi/old_dirs/testOperations/Makefile diff --git a/ndb/test/ndbapi/old_dirs/testOrderedIndex/Makefile b/storage/ndb/test/ndbapi/old_dirs/testOrderedIndex/Makefile similarity index 100% rename from ndb/test/ndbapi/old_dirs/testOrderedIndex/Makefile rename to storage/ndb/test/ndbapi/old_dirs/testOrderedIndex/Makefile diff --git a/ndb/test/ndbapi/old_dirs/testRestartGci/Makefile b/storage/ndb/test/ndbapi/old_dirs/testRestartGci/Makefile similarity index 100% rename from ndb/test/ndbapi/old_dirs/testRestartGci/Makefile rename to storage/ndb/test/ndbapi/old_dirs/testRestartGci/Makefile diff --git a/ndb/test/ndbapi/old_dirs/testScan/Makefile b/storage/ndb/test/ndbapi/old_dirs/testScan/Makefile similarity index 100% rename from ndb/test/ndbapi/old_dirs/testScan/Makefile rename to storage/ndb/test/ndbapi/old_dirs/testScan/Makefile diff --git a/ndb/test/ndbapi/old_dirs/testScanInterpreter/Makefile b/storage/ndb/test/ndbapi/old_dirs/testScanInterpreter/Makefile similarity index 100% rename from ndb/test/ndbapi/old_dirs/testScanInterpreter/Makefile rename to storage/ndb/test/ndbapi/old_dirs/testScanInterpreter/Makefile diff --git a/ndb/test/ndbapi/old_dirs/testSystemRestart/Makefile b/storage/ndb/test/ndbapi/old_dirs/testSystemRestart/Makefile similarity index 100% rename from ndb/test/ndbapi/old_dirs/testSystemRestart/Makefile rename to storage/ndb/test/ndbapi/old_dirs/testSystemRestart/Makefile diff --git a/ndb/test/ndbapi/old_dirs/testTimeout/Makefile b/storage/ndb/test/ndbapi/old_dirs/testTimeout/Makefile similarity index 100% rename from ndb/test/ndbapi/old_dirs/testTimeout/Makefile rename to storage/ndb/test/ndbapi/old_dirs/testTimeout/Makefile diff --git a/ndb/test/ndbapi/old_dirs/testTransactions/Makefile b/storage/ndb/test/ndbapi/old_dirs/testTransactions/Makefile similarity index 100% rename from ndb/test/ndbapi/old_dirs/testTransactions/Makefile rename to storage/ndb/test/ndbapi/old_dirs/testTransactions/Makefile diff --git a/ndb/test/ndbapi/old_dirs/test_event/Makefile b/storage/ndb/test/ndbapi/old_dirs/test_event/Makefile similarity index 100% rename from ndb/test/ndbapi/old_dirs/test_event/Makefile rename to storage/ndb/test/ndbapi/old_dirs/test_event/Makefile diff --git a/ndb/test/ndbapi/old_dirs/vw_test/Makefile b/storage/ndb/test/ndbapi/old_dirs/vw_test/Makefile similarity index 100% rename from ndb/test/ndbapi/old_dirs/vw_test/Makefile rename to storage/ndb/test/ndbapi/old_dirs/vw_test/Makefile diff --git a/ndb/test/ndbapi/old_dirs/vw_test/bcd.h b/storage/ndb/test/ndbapi/old_dirs/vw_test/bcd.h similarity index 100% rename from ndb/test/ndbapi/old_dirs/vw_test/bcd.h rename to storage/ndb/test/ndbapi/old_dirs/vw_test/bcd.h diff --git a/ndb/test/ndbapi/old_dirs/vw_test/script/client_start b/storage/ndb/test/ndbapi/old_dirs/vw_test/script/client_start similarity index 100% rename from ndb/test/ndbapi/old_dirs/vw_test/script/client_start rename to storage/ndb/test/ndbapi/old_dirs/vw_test/script/client_start diff --git a/ndb/test/ndbapi/old_dirs/vw_test/utv.h b/storage/ndb/test/ndbapi/old_dirs/vw_test/utv.h similarity index 100% rename from ndb/test/ndbapi/old_dirs/vw_test/utv.h rename to storage/ndb/test/ndbapi/old_dirs/vw_test/utv.h diff --git a/ndb/test/ndbapi/old_dirs/vw_test/vcdrfunc.h b/storage/ndb/test/ndbapi/old_dirs/vw_test/vcdrfunc.h similarity index 100% rename from ndb/test/ndbapi/old_dirs/vw_test/vcdrfunc.h rename to storage/ndb/test/ndbapi/old_dirs/vw_test/vcdrfunc.h diff --git a/ndb/test/ndbapi/restarter.cpp b/storage/ndb/test/ndbapi/restarter.cpp similarity index 100% rename from ndb/test/ndbapi/restarter.cpp rename to storage/ndb/test/ndbapi/restarter.cpp diff --git a/ndb/test/ndbapi/restarter2.cpp b/storage/ndb/test/ndbapi/restarter2.cpp similarity index 100% rename from ndb/test/ndbapi/restarter2.cpp rename to storage/ndb/test/ndbapi/restarter2.cpp diff --git a/ndb/test/ndbapi/restarts.cpp b/storage/ndb/test/ndbapi/restarts.cpp similarity index 100% rename from ndb/test/ndbapi/restarts.cpp rename to storage/ndb/test/ndbapi/restarts.cpp diff --git a/ndb/test/ndbapi/size.cpp b/storage/ndb/test/ndbapi/size.cpp similarity index 100% rename from ndb/test/ndbapi/size.cpp rename to storage/ndb/test/ndbapi/size.cpp diff --git a/ndb/test/ndbapi/slow_select.cpp b/storage/ndb/test/ndbapi/slow_select.cpp similarity index 100% rename from ndb/test/ndbapi/slow_select.cpp rename to storage/ndb/test/ndbapi/slow_select.cpp diff --git a/ndb/test/ndbapi/testBackup.cpp b/storage/ndb/test/ndbapi/testBackup.cpp similarity index 100% rename from ndb/test/ndbapi/testBackup.cpp rename to storage/ndb/test/ndbapi/testBackup.cpp diff --git a/ndb/test/ndbapi/testBasic.cpp b/storage/ndb/test/ndbapi/testBasic.cpp similarity index 100% rename from ndb/test/ndbapi/testBasic.cpp rename to storage/ndb/test/ndbapi/testBasic.cpp diff --git a/ndb/test/ndbapi/testBasicAsynch.cpp b/storage/ndb/test/ndbapi/testBasicAsynch.cpp similarity index 100% rename from ndb/test/ndbapi/testBasicAsynch.cpp rename to storage/ndb/test/ndbapi/testBasicAsynch.cpp diff --git a/ndb/test/ndbapi/testBitfield.cpp b/storage/ndb/test/ndbapi/testBitfield.cpp similarity index 100% rename from ndb/test/ndbapi/testBitfield.cpp rename to storage/ndb/test/ndbapi/testBitfield.cpp diff --git a/ndb/test/ndbapi/testBlobs.cpp b/storage/ndb/test/ndbapi/testBlobs.cpp similarity index 100% rename from ndb/test/ndbapi/testBlobs.cpp rename to storage/ndb/test/ndbapi/testBlobs.cpp diff --git a/ndb/test/ndbapi/testDataBuffers.cpp b/storage/ndb/test/ndbapi/testDataBuffers.cpp similarity index 100% rename from ndb/test/ndbapi/testDataBuffers.cpp rename to storage/ndb/test/ndbapi/testDataBuffers.cpp diff --git a/ndb/test/ndbapi/testDeadlock.cpp b/storage/ndb/test/ndbapi/testDeadlock.cpp similarity index 100% rename from ndb/test/ndbapi/testDeadlock.cpp rename to storage/ndb/test/ndbapi/testDeadlock.cpp diff --git a/ndb/test/ndbapi/testDict.cpp b/storage/ndb/test/ndbapi/testDict.cpp similarity index 100% rename from ndb/test/ndbapi/testDict.cpp rename to storage/ndb/test/ndbapi/testDict.cpp diff --git a/ndb/test/ndbapi/testGrep.cpp b/storage/ndb/test/ndbapi/testGrep.cpp similarity index 100% rename from ndb/test/ndbapi/testGrep.cpp rename to storage/ndb/test/ndbapi/testGrep.cpp diff --git a/ndb/test/ndbapi/testGrepVerify.cpp b/storage/ndb/test/ndbapi/testGrepVerify.cpp similarity index 100% rename from ndb/test/ndbapi/testGrepVerify.cpp rename to storage/ndb/test/ndbapi/testGrepVerify.cpp diff --git a/ndb/test/ndbapi/testIndex.cpp b/storage/ndb/test/ndbapi/testIndex.cpp similarity index 100% rename from ndb/test/ndbapi/testIndex.cpp rename to storage/ndb/test/ndbapi/testIndex.cpp diff --git a/ndb/test/ndbapi/testInterpreter.cpp b/storage/ndb/test/ndbapi/testInterpreter.cpp similarity index 100% rename from ndb/test/ndbapi/testInterpreter.cpp rename to storage/ndb/test/ndbapi/testInterpreter.cpp diff --git a/ndb/test/ndbapi/testLcp.cpp b/storage/ndb/test/ndbapi/testLcp.cpp similarity index 100% rename from ndb/test/ndbapi/testLcp.cpp rename to storage/ndb/test/ndbapi/testLcp.cpp diff --git a/ndb/test/ndbapi/testMgm.cpp b/storage/ndb/test/ndbapi/testMgm.cpp similarity index 100% rename from ndb/test/ndbapi/testMgm.cpp rename to storage/ndb/test/ndbapi/testMgm.cpp diff --git a/ndb/test/ndbapi/testNdbApi.cpp b/storage/ndb/test/ndbapi/testNdbApi.cpp similarity index 100% rename from ndb/test/ndbapi/testNdbApi.cpp rename to storage/ndb/test/ndbapi/testNdbApi.cpp diff --git a/ndb/test/ndbapi/testNodeRestart.cpp b/storage/ndb/test/ndbapi/testNodeRestart.cpp similarity index 100% rename from ndb/test/ndbapi/testNodeRestart.cpp rename to storage/ndb/test/ndbapi/testNodeRestart.cpp diff --git a/ndb/test/ndbapi/testOIBasic.cpp b/storage/ndb/test/ndbapi/testOIBasic.cpp similarity index 100% rename from ndb/test/ndbapi/testOIBasic.cpp rename to storage/ndb/test/ndbapi/testOIBasic.cpp diff --git a/ndb/test/ndbapi/testOperations.cpp b/storage/ndb/test/ndbapi/testOperations.cpp similarity index 100% rename from ndb/test/ndbapi/testOperations.cpp rename to storage/ndb/test/ndbapi/testOperations.cpp diff --git a/ndb/test/ndbapi/testOrderedIndex.cpp b/storage/ndb/test/ndbapi/testOrderedIndex.cpp similarity index 100% rename from ndb/test/ndbapi/testOrderedIndex.cpp rename to storage/ndb/test/ndbapi/testOrderedIndex.cpp diff --git a/ndb/test/ndbapi/testPartitioning.cpp b/storage/ndb/test/ndbapi/testPartitioning.cpp similarity index 100% rename from ndb/test/ndbapi/testPartitioning.cpp rename to storage/ndb/test/ndbapi/testPartitioning.cpp diff --git a/ndb/test/ndbapi/testReadPerf.cpp b/storage/ndb/test/ndbapi/testReadPerf.cpp similarity index 100% rename from ndb/test/ndbapi/testReadPerf.cpp rename to storage/ndb/test/ndbapi/testReadPerf.cpp diff --git a/ndb/test/ndbapi/testRestartGci.cpp b/storage/ndb/test/ndbapi/testRestartGci.cpp similarity index 100% rename from ndb/test/ndbapi/testRestartGci.cpp rename to storage/ndb/test/ndbapi/testRestartGci.cpp diff --git a/ndb/test/ndbapi/testScan.cpp b/storage/ndb/test/ndbapi/testScan.cpp similarity index 100% rename from ndb/test/ndbapi/testScan.cpp rename to storage/ndb/test/ndbapi/testScan.cpp diff --git a/ndb/test/ndbapi/testScanInterpreter.cpp b/storage/ndb/test/ndbapi/testScanInterpreter.cpp similarity index 100% rename from ndb/test/ndbapi/testScanInterpreter.cpp rename to storage/ndb/test/ndbapi/testScanInterpreter.cpp diff --git a/ndb/test/ndbapi/testScanPerf.cpp b/storage/ndb/test/ndbapi/testScanPerf.cpp similarity index 100% rename from ndb/test/ndbapi/testScanPerf.cpp rename to storage/ndb/test/ndbapi/testScanPerf.cpp diff --git a/ndb/test/ndbapi/testSystemRestart.cpp b/storage/ndb/test/ndbapi/testSystemRestart.cpp similarity index 100% rename from ndb/test/ndbapi/testSystemRestart.cpp rename to storage/ndb/test/ndbapi/testSystemRestart.cpp diff --git a/ndb/test/ndbapi/testTimeout.cpp b/storage/ndb/test/ndbapi/testTimeout.cpp similarity index 100% rename from ndb/test/ndbapi/testTimeout.cpp rename to storage/ndb/test/ndbapi/testTimeout.cpp diff --git a/ndb/test/ndbapi/testTransactions.cpp b/storage/ndb/test/ndbapi/testTransactions.cpp similarity index 100% rename from ndb/test/ndbapi/testTransactions.cpp rename to storage/ndb/test/ndbapi/testTransactions.cpp diff --git a/ndb/test/ndbapi/test_event.cpp b/storage/ndb/test/ndbapi/test_event.cpp similarity index 100% rename from ndb/test/ndbapi/test_event.cpp rename to storage/ndb/test/ndbapi/test_event.cpp diff --git a/ndb/test/ndbapi/test_event_multi_table.cpp b/storage/ndb/test/ndbapi/test_event_multi_table.cpp similarity index 100% rename from ndb/test/ndbapi/test_event_multi_table.cpp rename to storage/ndb/test/ndbapi/test_event_multi_table.cpp diff --git a/ndb/test/ndbapi/userInterface.cpp b/storage/ndb/test/ndbapi/userInterface.cpp similarity index 100% rename from ndb/test/ndbapi/userInterface.cpp rename to storage/ndb/test/ndbapi/userInterface.cpp diff --git a/ndb/test/ndbnet/test.run b/storage/ndb/test/ndbnet/test.run similarity index 100% rename from ndb/test/ndbnet/test.run rename to storage/ndb/test/ndbnet/test.run diff --git a/ndb/test/ndbnet/testError.run b/storage/ndb/test/ndbnet/testError.run similarity index 100% rename from ndb/test/ndbnet/testError.run rename to storage/ndb/test/ndbnet/testError.run diff --git a/ndb/test/ndbnet/testMNF.run b/storage/ndb/test/ndbnet/testMNF.run similarity index 100% rename from ndb/test/ndbnet/testMNF.run rename to storage/ndb/test/ndbnet/testMNF.run diff --git a/ndb/test/ndbnet/testNR.run b/storage/ndb/test/ndbnet/testNR.run similarity index 100% rename from ndb/test/ndbnet/testNR.run rename to storage/ndb/test/ndbnet/testNR.run diff --git a/ndb/test/ndbnet/testNR1.run b/storage/ndb/test/ndbnet/testNR1.run similarity index 100% rename from ndb/test/ndbnet/testNR1.run rename to storage/ndb/test/ndbnet/testNR1.run diff --git a/ndb/test/ndbnet/testNR4.run b/storage/ndb/test/ndbnet/testNR4.run similarity index 100% rename from ndb/test/ndbnet/testNR4.run rename to storage/ndb/test/ndbnet/testNR4.run diff --git a/ndb/test/ndbnet/testSRhang.run b/storage/ndb/test/ndbnet/testSRhang.run similarity index 100% rename from ndb/test/ndbnet/testSRhang.run rename to storage/ndb/test/ndbnet/testSRhang.run diff --git a/ndb/test/ndbnet/testTR295.run b/storage/ndb/test/ndbnet/testTR295.run similarity index 100% rename from ndb/test/ndbnet/testTR295.run rename to storage/ndb/test/ndbnet/testTR295.run diff --git a/ndb/test/newtonapi/basic_test/Makefile b/storage/ndb/test/newtonapi/basic_test/Makefile similarity index 100% rename from ndb/test/newtonapi/basic_test/Makefile rename to storage/ndb/test/newtonapi/basic_test/Makefile diff --git a/ndb/test/newtonapi/basic_test/basic/Makefile b/storage/ndb/test/newtonapi/basic_test/basic/Makefile similarity index 100% rename from ndb/test/newtonapi/basic_test/basic/Makefile rename to storage/ndb/test/newtonapi/basic_test/basic/Makefile diff --git a/ndb/test/newtonapi/basic_test/basic/basic.cpp b/storage/ndb/test/newtonapi/basic_test/basic/basic.cpp similarity index 100% rename from ndb/test/newtonapi/basic_test/basic/basic.cpp rename to storage/ndb/test/newtonapi/basic_test/basic/basic.cpp diff --git a/ndb/test/newtonapi/basic_test/bulk_read/Makefile b/storage/ndb/test/newtonapi/basic_test/bulk_read/Makefile similarity index 100% rename from ndb/test/newtonapi/basic_test/bulk_read/Makefile rename to storage/ndb/test/newtonapi/basic_test/bulk_read/Makefile diff --git a/ndb/test/newtonapi/basic_test/bulk_read/br_test.cpp b/storage/ndb/test/newtonapi/basic_test/bulk_read/br_test.cpp similarity index 100% rename from ndb/test/newtonapi/basic_test/bulk_read/br_test.cpp rename to storage/ndb/test/newtonapi/basic_test/bulk_read/br_test.cpp diff --git a/ndb/test/newtonapi/basic_test/common.cpp b/storage/ndb/test/newtonapi/basic_test/common.cpp similarity index 100% rename from ndb/test/newtonapi/basic_test/common.cpp rename to storage/ndb/test/newtonapi/basic_test/common.cpp diff --git a/ndb/test/newtonapi/basic_test/common.hpp b/storage/ndb/test/newtonapi/basic_test/common.hpp similarity index 100% rename from ndb/test/newtonapi/basic_test/common.hpp rename to storage/ndb/test/newtonapi/basic_test/common.hpp diff --git a/ndb/test/newtonapi/basic_test/ptr_binding/Makefile b/storage/ndb/test/newtonapi/basic_test/ptr_binding/Makefile similarity index 100% rename from ndb/test/newtonapi/basic_test/ptr_binding/Makefile rename to storage/ndb/test/newtonapi/basic_test/ptr_binding/Makefile diff --git a/ndb/test/newtonapi/basic_test/ptr_binding/ptr_binding_test.cpp b/storage/ndb/test/newtonapi/basic_test/ptr_binding/ptr_binding_test.cpp similarity index 100% rename from ndb/test/newtonapi/basic_test/ptr_binding/ptr_binding_test.cpp rename to storage/ndb/test/newtonapi/basic_test/ptr_binding/ptr_binding_test.cpp diff --git a/ndb/test/newtonapi/basic_test/too_basic.cpp b/storage/ndb/test/newtonapi/basic_test/too_basic.cpp similarity index 100% rename from ndb/test/newtonapi/basic_test/too_basic.cpp rename to storage/ndb/test/newtonapi/basic_test/too_basic.cpp diff --git a/ndb/test/newtonapi/perf_test/Makefile b/storage/ndb/test/newtonapi/perf_test/Makefile similarity index 100% rename from ndb/test/newtonapi/perf_test/Makefile rename to storage/ndb/test/newtonapi/perf_test/Makefile diff --git a/ndb/test/newtonapi/perf_test/perf.cpp b/storage/ndb/test/newtonapi/perf_test/perf.cpp similarity index 100% rename from ndb/test/newtonapi/perf_test/perf.cpp rename to storage/ndb/test/newtonapi/perf_test/perf.cpp diff --git a/ndb/test/odbc/SQL99_test/Makefile b/storage/ndb/test/odbc/SQL99_test/Makefile similarity index 100% rename from ndb/test/odbc/SQL99_test/Makefile rename to storage/ndb/test/odbc/SQL99_test/Makefile diff --git a/ndb/test/odbc/SQL99_test/SQL99_test.cpp b/storage/ndb/test/odbc/SQL99_test/SQL99_test.cpp similarity index 100% rename from ndb/test/odbc/SQL99_test/SQL99_test.cpp rename to storage/ndb/test/odbc/SQL99_test/SQL99_test.cpp diff --git a/ndb/test/odbc/SQL99_test/SQL99_test.h b/storage/ndb/test/odbc/SQL99_test/SQL99_test.h similarity index 100% rename from ndb/test/odbc/SQL99_test/SQL99_test.h rename to storage/ndb/test/odbc/SQL99_test/SQL99_test.h diff --git a/ndb/test/odbc/client/Makefile b/storage/ndb/test/odbc/client/Makefile similarity index 100% rename from ndb/test/odbc/client/Makefile rename to storage/ndb/test/odbc/client/Makefile diff --git a/ndb/test/odbc/client/NDBT_ALLOCHANDLE.cpp b/storage/ndb/test/odbc/client/NDBT_ALLOCHANDLE.cpp similarity index 100% rename from ndb/test/odbc/client/NDBT_ALLOCHANDLE.cpp rename to storage/ndb/test/odbc/client/NDBT_ALLOCHANDLE.cpp diff --git a/ndb/test/odbc/client/NDBT_ALLOCHANDLE_HDBC.cpp b/storage/ndb/test/odbc/client/NDBT_ALLOCHANDLE_HDBC.cpp similarity index 100% rename from ndb/test/odbc/client/NDBT_ALLOCHANDLE_HDBC.cpp rename to storage/ndb/test/odbc/client/NDBT_ALLOCHANDLE_HDBC.cpp diff --git a/ndb/test/odbc/client/NDBT_SQLConnect.cpp b/storage/ndb/test/odbc/client/NDBT_SQLConnect.cpp similarity index 100% rename from ndb/test/odbc/client/NDBT_SQLConnect.cpp rename to storage/ndb/test/odbc/client/NDBT_SQLConnect.cpp diff --git a/ndb/test/odbc/client/NDBT_SQLPrepare.cpp b/storage/ndb/test/odbc/client/NDBT_SQLPrepare.cpp similarity index 100% rename from ndb/test/odbc/client/NDBT_SQLPrepare.cpp rename to storage/ndb/test/odbc/client/NDBT_SQLPrepare.cpp diff --git a/ndb/test/odbc/client/SQLAllocEnvTest.cpp b/storage/ndb/test/odbc/client/SQLAllocEnvTest.cpp similarity index 100% rename from ndb/test/odbc/client/SQLAllocEnvTest.cpp rename to storage/ndb/test/odbc/client/SQLAllocEnvTest.cpp diff --git a/ndb/test/odbc/client/SQLAllocHandleTest.cpp b/storage/ndb/test/odbc/client/SQLAllocHandleTest.cpp similarity index 100% rename from ndb/test/odbc/client/SQLAllocHandleTest.cpp rename to storage/ndb/test/odbc/client/SQLAllocHandleTest.cpp diff --git a/ndb/test/odbc/client/SQLAllocHandleTest_bf.cpp b/storage/ndb/test/odbc/client/SQLAllocHandleTest_bf.cpp similarity index 100% rename from ndb/test/odbc/client/SQLAllocHandleTest_bf.cpp rename to storage/ndb/test/odbc/client/SQLAllocHandleTest_bf.cpp diff --git a/ndb/test/odbc/client/SQLBindColTest.cpp b/storage/ndb/test/odbc/client/SQLBindColTest.cpp similarity index 100% rename from ndb/test/odbc/client/SQLBindColTest.cpp rename to storage/ndb/test/odbc/client/SQLBindColTest.cpp diff --git a/ndb/test/odbc/client/SQLBindParameterTest.cpp b/storage/ndb/test/odbc/client/SQLBindParameterTest.cpp similarity index 100% rename from ndb/test/odbc/client/SQLBindParameterTest.cpp rename to storage/ndb/test/odbc/client/SQLBindParameterTest.cpp diff --git a/ndb/test/odbc/client/SQLCancelTest.cpp b/storage/ndb/test/odbc/client/SQLCancelTest.cpp similarity index 100% rename from ndb/test/odbc/client/SQLCancelTest.cpp rename to storage/ndb/test/odbc/client/SQLCancelTest.cpp diff --git a/ndb/test/odbc/client/SQLCloseCursorTest.cpp b/storage/ndb/test/odbc/client/SQLCloseCursorTest.cpp similarity index 100% rename from ndb/test/odbc/client/SQLCloseCursorTest.cpp rename to storage/ndb/test/odbc/client/SQLCloseCursorTest.cpp diff --git a/ndb/test/odbc/client/SQLColAttributeTest.cpp b/storage/ndb/test/odbc/client/SQLColAttributeTest.cpp similarity index 100% rename from ndb/test/odbc/client/SQLColAttributeTest.cpp rename to storage/ndb/test/odbc/client/SQLColAttributeTest.cpp diff --git a/ndb/test/odbc/client/SQLColAttributeTest1.cpp b/storage/ndb/test/odbc/client/SQLColAttributeTest1.cpp similarity index 100% rename from ndb/test/odbc/client/SQLColAttributeTest1.cpp rename to storage/ndb/test/odbc/client/SQLColAttributeTest1.cpp diff --git a/ndb/test/odbc/client/SQLColAttributeTest2.cpp b/storage/ndb/test/odbc/client/SQLColAttributeTest2.cpp similarity index 100% rename from ndb/test/odbc/client/SQLColAttributeTest2.cpp rename to storage/ndb/test/odbc/client/SQLColAttributeTest2.cpp diff --git a/ndb/test/odbc/client/SQLColAttributeTest3.cpp b/storage/ndb/test/odbc/client/SQLColAttributeTest3.cpp similarity index 100% rename from ndb/test/odbc/client/SQLColAttributeTest3.cpp rename to storage/ndb/test/odbc/client/SQLColAttributeTest3.cpp diff --git a/ndb/test/odbc/client/SQLConnectTest.cpp b/storage/ndb/test/odbc/client/SQLConnectTest.cpp similarity index 100% rename from ndb/test/odbc/client/SQLConnectTest.cpp rename to storage/ndb/test/odbc/client/SQLConnectTest.cpp diff --git a/ndb/test/odbc/client/SQLCopyDescTest.cpp b/storage/ndb/test/odbc/client/SQLCopyDescTest.cpp similarity index 100% rename from ndb/test/odbc/client/SQLCopyDescTest.cpp rename to storage/ndb/test/odbc/client/SQLCopyDescTest.cpp diff --git a/ndb/test/odbc/client/SQLDescribeColTest.cpp b/storage/ndb/test/odbc/client/SQLDescribeColTest.cpp similarity index 100% rename from ndb/test/odbc/client/SQLDescribeColTest.cpp rename to storage/ndb/test/odbc/client/SQLDescribeColTest.cpp diff --git a/ndb/test/odbc/client/SQLDisconnectTest.cpp b/storage/ndb/test/odbc/client/SQLDisconnectTest.cpp similarity index 100% rename from ndb/test/odbc/client/SQLDisconnectTest.cpp rename to storage/ndb/test/odbc/client/SQLDisconnectTest.cpp diff --git a/ndb/test/odbc/client/SQLDriverConnectTest.cpp b/storage/ndb/test/odbc/client/SQLDriverConnectTest.cpp similarity index 100% rename from ndb/test/odbc/client/SQLDriverConnectTest.cpp rename to storage/ndb/test/odbc/client/SQLDriverConnectTest.cpp diff --git a/ndb/test/odbc/client/SQLEndTranTest.cpp b/storage/ndb/test/odbc/client/SQLEndTranTest.cpp similarity index 100% rename from ndb/test/odbc/client/SQLEndTranTest.cpp rename to storage/ndb/test/odbc/client/SQLEndTranTest.cpp diff --git a/ndb/test/odbc/client/SQLErrorTest.cpp b/storage/ndb/test/odbc/client/SQLErrorTest.cpp similarity index 100% rename from ndb/test/odbc/client/SQLErrorTest.cpp rename to storage/ndb/test/odbc/client/SQLErrorTest.cpp diff --git a/ndb/test/odbc/client/SQLExecDirectTest.cpp b/storage/ndb/test/odbc/client/SQLExecDirectTest.cpp similarity index 100% rename from ndb/test/odbc/client/SQLExecDirectTest.cpp rename to storage/ndb/test/odbc/client/SQLExecDirectTest.cpp diff --git a/ndb/test/odbc/client/SQLExecuteTest.cpp b/storage/ndb/test/odbc/client/SQLExecuteTest.cpp similarity index 100% rename from ndb/test/odbc/client/SQLExecuteTest.cpp rename to storage/ndb/test/odbc/client/SQLExecuteTest.cpp diff --git a/ndb/test/odbc/client/SQLFetchScrollTest.cpp b/storage/ndb/test/odbc/client/SQLFetchScrollTest.cpp similarity index 100% rename from ndb/test/odbc/client/SQLFetchScrollTest.cpp rename to storage/ndb/test/odbc/client/SQLFetchScrollTest.cpp diff --git a/ndb/test/odbc/client/SQLFetchTest.cpp b/storage/ndb/test/odbc/client/SQLFetchTest.cpp similarity index 100% rename from ndb/test/odbc/client/SQLFetchTest.cpp rename to storage/ndb/test/odbc/client/SQLFetchTest.cpp diff --git a/ndb/test/odbc/client/SQLFreeHandleTest.cpp b/storage/ndb/test/odbc/client/SQLFreeHandleTest.cpp similarity index 100% rename from ndb/test/odbc/client/SQLFreeHandleTest.cpp rename to storage/ndb/test/odbc/client/SQLFreeHandleTest.cpp diff --git a/ndb/test/odbc/client/SQLFreeStmtTest.cpp b/storage/ndb/test/odbc/client/SQLFreeStmtTest.cpp similarity index 100% rename from ndb/test/odbc/client/SQLFreeStmtTest.cpp rename to storage/ndb/test/odbc/client/SQLFreeStmtTest.cpp diff --git a/ndb/test/odbc/client/SQLGetConnectAttrTest.cpp b/storage/ndb/test/odbc/client/SQLGetConnectAttrTest.cpp similarity index 100% rename from ndb/test/odbc/client/SQLGetConnectAttrTest.cpp rename to storage/ndb/test/odbc/client/SQLGetConnectAttrTest.cpp diff --git a/ndb/test/odbc/client/SQLGetCursorNameTest.cpp b/storage/ndb/test/odbc/client/SQLGetCursorNameTest.cpp similarity index 100% rename from ndb/test/odbc/client/SQLGetCursorNameTest.cpp rename to storage/ndb/test/odbc/client/SQLGetCursorNameTest.cpp diff --git a/ndb/test/odbc/client/SQLGetDataTest.cpp b/storage/ndb/test/odbc/client/SQLGetDataTest.cpp similarity index 100% rename from ndb/test/odbc/client/SQLGetDataTest.cpp rename to storage/ndb/test/odbc/client/SQLGetDataTest.cpp diff --git a/ndb/test/odbc/client/SQLGetDescFieldTest.cpp b/storage/ndb/test/odbc/client/SQLGetDescFieldTest.cpp similarity index 100% rename from ndb/test/odbc/client/SQLGetDescFieldTest.cpp rename to storage/ndb/test/odbc/client/SQLGetDescFieldTest.cpp diff --git a/ndb/test/odbc/client/SQLGetDescRecTest.cpp b/storage/ndb/test/odbc/client/SQLGetDescRecTest.cpp similarity index 100% rename from ndb/test/odbc/client/SQLGetDescRecTest.cpp rename to storage/ndb/test/odbc/client/SQLGetDescRecTest.cpp diff --git a/ndb/test/odbc/client/SQLGetDiagFieldTest.cpp b/storage/ndb/test/odbc/client/SQLGetDiagFieldTest.cpp similarity index 100% rename from ndb/test/odbc/client/SQLGetDiagFieldTest.cpp rename to storage/ndb/test/odbc/client/SQLGetDiagFieldTest.cpp diff --git a/ndb/test/odbc/client/SQLGetDiagRecSimpleTest.cpp b/storage/ndb/test/odbc/client/SQLGetDiagRecSimpleTest.cpp similarity index 100% rename from ndb/test/odbc/client/SQLGetDiagRecSimpleTest.cpp rename to storage/ndb/test/odbc/client/SQLGetDiagRecSimpleTest.cpp diff --git a/ndb/test/odbc/client/SQLGetDiagRecTest.cpp b/storage/ndb/test/odbc/client/SQLGetDiagRecTest.cpp similarity index 100% rename from ndb/test/odbc/client/SQLGetDiagRecTest.cpp rename to storage/ndb/test/odbc/client/SQLGetDiagRecTest.cpp diff --git a/ndb/test/odbc/client/SQLGetEnvAttrTest.cpp b/storage/ndb/test/odbc/client/SQLGetEnvAttrTest.cpp similarity index 100% rename from ndb/test/odbc/client/SQLGetEnvAttrTest.cpp rename to storage/ndb/test/odbc/client/SQLGetEnvAttrTest.cpp diff --git a/ndb/test/odbc/client/SQLGetFunctionsTest.cpp b/storage/ndb/test/odbc/client/SQLGetFunctionsTest.cpp similarity index 100% rename from ndb/test/odbc/client/SQLGetFunctionsTest.cpp rename to storage/ndb/test/odbc/client/SQLGetFunctionsTest.cpp diff --git a/ndb/test/odbc/client/SQLGetInfoTest.cpp b/storage/ndb/test/odbc/client/SQLGetInfoTest.cpp similarity index 100% rename from ndb/test/odbc/client/SQLGetInfoTest.cpp rename to storage/ndb/test/odbc/client/SQLGetInfoTest.cpp diff --git a/ndb/test/odbc/client/SQLGetStmtAttrTest.cpp b/storage/ndb/test/odbc/client/SQLGetStmtAttrTest.cpp similarity index 100% rename from ndb/test/odbc/client/SQLGetStmtAttrTest.cpp rename to storage/ndb/test/odbc/client/SQLGetStmtAttrTest.cpp diff --git a/ndb/test/odbc/client/SQLGetTypeInfoTest.cpp b/storage/ndb/test/odbc/client/SQLGetTypeInfoTest.cpp similarity index 100% rename from ndb/test/odbc/client/SQLGetTypeInfoTest.cpp rename to storage/ndb/test/odbc/client/SQLGetTypeInfoTest.cpp diff --git a/ndb/test/odbc/client/SQLMoreResultsTest.cpp b/storage/ndb/test/odbc/client/SQLMoreResultsTest.cpp similarity index 100% rename from ndb/test/odbc/client/SQLMoreResultsTest.cpp rename to storage/ndb/test/odbc/client/SQLMoreResultsTest.cpp diff --git a/ndb/test/odbc/client/SQLNumResultColsTest.cpp b/storage/ndb/test/odbc/client/SQLNumResultColsTest.cpp similarity index 100% rename from ndb/test/odbc/client/SQLNumResultColsTest.cpp rename to storage/ndb/test/odbc/client/SQLNumResultColsTest.cpp diff --git a/ndb/test/odbc/client/SQLParamDataTest.cpp b/storage/ndb/test/odbc/client/SQLParamDataTest.cpp similarity index 100% rename from ndb/test/odbc/client/SQLParamDataTest.cpp rename to storage/ndb/test/odbc/client/SQLParamDataTest.cpp diff --git a/ndb/test/odbc/client/SQLPrepareTest.cpp b/storage/ndb/test/odbc/client/SQLPrepareTest.cpp similarity index 100% rename from ndb/test/odbc/client/SQLPrepareTest.cpp rename to storage/ndb/test/odbc/client/SQLPrepareTest.cpp diff --git a/ndb/test/odbc/client/SQLPutDataTest.cpp b/storage/ndb/test/odbc/client/SQLPutDataTest.cpp similarity index 100% rename from ndb/test/odbc/client/SQLPutDataTest.cpp rename to storage/ndb/test/odbc/client/SQLPutDataTest.cpp diff --git a/ndb/test/odbc/client/SQLRowCountTest.cpp b/storage/ndb/test/odbc/client/SQLRowCountTest.cpp similarity index 100% rename from ndb/test/odbc/client/SQLRowCountTest.cpp rename to storage/ndb/test/odbc/client/SQLRowCountTest.cpp diff --git a/ndb/test/odbc/client/SQLSetConnectAttrTest.cpp b/storage/ndb/test/odbc/client/SQLSetConnectAttrTest.cpp similarity index 100% rename from ndb/test/odbc/client/SQLSetConnectAttrTest.cpp rename to storage/ndb/test/odbc/client/SQLSetConnectAttrTest.cpp diff --git a/ndb/test/odbc/client/SQLSetCursorNameTest.cpp b/storage/ndb/test/odbc/client/SQLSetCursorNameTest.cpp similarity index 100% rename from ndb/test/odbc/client/SQLSetCursorNameTest.cpp rename to storage/ndb/test/odbc/client/SQLSetCursorNameTest.cpp diff --git a/ndb/test/odbc/client/SQLSetDescFieldTest.cpp b/storage/ndb/test/odbc/client/SQLSetDescFieldTest.cpp similarity index 100% rename from ndb/test/odbc/client/SQLSetDescFieldTest.cpp rename to storage/ndb/test/odbc/client/SQLSetDescFieldTest.cpp diff --git a/ndb/test/odbc/client/SQLSetDescRecTest.cpp b/storage/ndb/test/odbc/client/SQLSetDescRecTest.cpp similarity index 100% rename from ndb/test/odbc/client/SQLSetDescRecTest.cpp rename to storage/ndb/test/odbc/client/SQLSetDescRecTest.cpp diff --git a/ndb/test/odbc/client/SQLSetEnvAttrTest.cpp b/storage/ndb/test/odbc/client/SQLSetEnvAttrTest.cpp similarity index 100% rename from ndb/test/odbc/client/SQLSetEnvAttrTest.cpp rename to storage/ndb/test/odbc/client/SQLSetEnvAttrTest.cpp diff --git a/ndb/test/odbc/client/SQLSetStmtAttrTest.cpp b/storage/ndb/test/odbc/client/SQLSetStmtAttrTest.cpp similarity index 100% rename from ndb/test/odbc/client/SQLSetStmtAttrTest.cpp rename to storage/ndb/test/odbc/client/SQLSetStmtAttrTest.cpp diff --git a/ndb/test/odbc/client/SQLTablesTest.cpp b/storage/ndb/test/odbc/client/SQLTablesTest.cpp similarity index 100% rename from ndb/test/odbc/client/SQLTablesTest.cpp rename to storage/ndb/test/odbc/client/SQLTablesTest.cpp diff --git a/ndb/test/odbc/client/SQLTransactTest.cpp b/storage/ndb/test/odbc/client/SQLTransactTest.cpp similarity index 100% rename from ndb/test/odbc/client/SQLTransactTest.cpp rename to storage/ndb/test/odbc/client/SQLTransactTest.cpp diff --git a/ndb/test/odbc/client/common.hpp b/storage/ndb/test/odbc/client/common.hpp similarity index 100% rename from ndb/test/odbc/client/common.hpp rename to storage/ndb/test/odbc/client/common.hpp diff --git a/ndb/test/odbc/client/main.cpp b/storage/ndb/test/odbc/client/main.cpp similarity index 100% rename from ndb/test/odbc/client/main.cpp rename to storage/ndb/test/odbc/client/main.cpp diff --git a/ndb/test/odbc/dm-iodbc/Makefile b/storage/ndb/test/odbc/dm-iodbc/Makefile similarity index 100% rename from ndb/test/odbc/dm-iodbc/Makefile rename to storage/ndb/test/odbc/dm-iodbc/Makefile diff --git a/ndb/test/odbc/dm-unixodbc/Makefile b/storage/ndb/test/odbc/dm-unixodbc/Makefile similarity index 100% rename from ndb/test/odbc/dm-unixodbc/Makefile rename to storage/ndb/test/odbc/dm-unixodbc/Makefile diff --git a/ndb/test/odbc/driver/Makefile b/storage/ndb/test/odbc/driver/Makefile similarity index 100% rename from ndb/test/odbc/driver/Makefile rename to storage/ndb/test/odbc/driver/Makefile diff --git a/ndb/test/odbc/driver/testOdbcDriver.cpp b/storage/ndb/test/odbc/driver/testOdbcDriver.cpp similarity index 100% rename from ndb/test/odbc/driver/testOdbcDriver.cpp rename to storage/ndb/test/odbc/driver/testOdbcDriver.cpp diff --git a/ndb/test/odbc/test_compiler/Makefile b/storage/ndb/test/odbc/test_compiler/Makefile similarity index 100% rename from ndb/test/odbc/test_compiler/Makefile rename to storage/ndb/test/odbc/test_compiler/Makefile diff --git a/ndb/test/odbc/test_compiler/test_compiler.cpp b/storage/ndb/test/odbc/test_compiler/test_compiler.cpp similarity index 100% rename from ndb/test/odbc/test_compiler/test_compiler.cpp rename to storage/ndb/test/odbc/test_compiler/test_compiler.cpp diff --git a/ndb/test/run-test/16node-tests.txt b/storage/ndb/test/run-test/16node-tests.txt similarity index 100% rename from ndb/test/run-test/16node-tests.txt rename to storage/ndb/test/run-test/16node-tests.txt diff --git a/ndb/test/run-test/Makefile.am b/storage/ndb/test/run-test/Makefile.am similarity index 66% rename from ndb/test/run-test/Makefile.am rename to storage/ndb/test/run-test/Makefile.am index 1067328dcc3..63d2933b6c6 100644 --- a/ndb/test/run-test/Makefile.am +++ b/storage/ndb/test/run-test/Makefile.am @@ -1,9 +1,9 @@ testdir=$(prefix)/mysql-test/ndb -include $(top_srcdir)/ndb/config/common.mk.am -include $(top_srcdir)/ndb/config/type_util.mk.am -include $(top_srcdir)/ndb/config/type_mgmapiclient.mk.am +include $(top_srcdir)/storage/ndb/config/common.mk.am +include $(top_srcdir)/storage/ndb/config/type_util.mk.am +include $(top_srcdir)/storage/ndb/config/type_mgmapiclient.mk.am test_PROGRAMS = atrt test_DATA=daily-basic-tests.txt daily-devel-tests.txt 16node-tests.txt @@ -11,9 +11,9 @@ test_SCRIPTS=atrt-analyze-result.sh atrt-gather-result.sh atrt-setup.sh \ atrt-clear-result.sh make-config.sh make-index.sh make-html-reports.sh atrt_SOURCES = main.cpp run-test.hpp -INCLUDES_LOC = -I$(top_srcdir)/ndb/test/include -LDADD_LOC = $(top_builddir)/ndb/test/src/libNDBT.a \ - $(top_builddir)/ndb/src/libndbclient.la \ +INCLUDES_LOC = -I$(top_srcdir)/storage/ndb/test/include +LDADD_LOC = $(top_builddir)/storage/ndb/test/src/libNDBT.a \ + $(top_builddir)/storage/ndb/src/libndbclient.la \ $(top_builddir)/dbug/libdbug.a \ $(top_builddir)/mysys/libmysys.a \ $(top_builddir)/strings/libmystrings.a @NDB_SCI_LIBS@ diff --git a/ndb/test/run-test/README b/storage/ndb/test/run-test/README similarity index 100% rename from ndb/test/run-test/README rename to storage/ndb/test/run-test/README diff --git a/ndb/test/run-test/README.ATRT b/storage/ndb/test/run-test/README.ATRT similarity index 100% rename from ndb/test/run-test/README.ATRT rename to storage/ndb/test/run-test/README.ATRT diff --git a/ndb/test/run-test/atrt-analyze-result.sh b/storage/ndb/test/run-test/atrt-analyze-result.sh similarity index 100% rename from ndb/test/run-test/atrt-analyze-result.sh rename to storage/ndb/test/run-test/atrt-analyze-result.sh diff --git a/ndb/test/run-test/atrt-clear-result.sh b/storage/ndb/test/run-test/atrt-clear-result.sh similarity index 100% rename from ndb/test/run-test/atrt-clear-result.sh rename to storage/ndb/test/run-test/atrt-clear-result.sh diff --git a/ndb/test/run-test/atrt-example.tgz b/storage/ndb/test/run-test/atrt-example.tgz similarity index 100% rename from ndb/test/run-test/atrt-example.tgz rename to storage/ndb/test/run-test/atrt-example.tgz diff --git a/ndb/test/run-test/atrt-gather-result.sh b/storage/ndb/test/run-test/atrt-gather-result.sh similarity index 100% rename from ndb/test/run-test/atrt-gather-result.sh rename to storage/ndb/test/run-test/atrt-gather-result.sh diff --git a/ndb/test/run-test/atrt-mysql-test-run b/storage/ndb/test/run-test/atrt-mysql-test-run similarity index 100% rename from ndb/test/run-test/atrt-mysql-test-run rename to storage/ndb/test/run-test/atrt-mysql-test-run diff --git a/ndb/test/run-test/atrt-setup.sh b/storage/ndb/test/run-test/atrt-setup.sh similarity index 100% rename from ndb/test/run-test/atrt-setup.sh rename to storage/ndb/test/run-test/atrt-setup.sh diff --git a/ndb/test/run-test/atrt-testBackup b/storage/ndb/test/run-test/atrt-testBackup similarity index 100% rename from ndb/test/run-test/atrt-testBackup rename to storage/ndb/test/run-test/atrt-testBackup diff --git a/ndb/test/run-test/basic.txt b/storage/ndb/test/run-test/basic.txt similarity index 100% rename from ndb/test/run-test/basic.txt rename to storage/ndb/test/run-test/basic.txt diff --git a/ndb/test/run-test/daily-basic-tests.txt b/storage/ndb/test/run-test/daily-basic-tests.txt similarity index 100% rename from ndb/test/run-test/daily-basic-tests.txt rename to storage/ndb/test/run-test/daily-basic-tests.txt diff --git a/ndb/test/run-test/daily-devel-tests.txt b/storage/ndb/test/run-test/daily-devel-tests.txt similarity index 100% rename from ndb/test/run-test/daily-devel-tests.txt rename to storage/ndb/test/run-test/daily-devel-tests.txt diff --git a/ndb/test/run-test/example.conf b/storage/ndb/test/run-test/example.conf similarity index 100% rename from ndb/test/run-test/example.conf rename to storage/ndb/test/run-test/example.conf diff --git a/ndb/test/run-test/main.cpp b/storage/ndb/test/run-test/main.cpp similarity index 100% rename from ndb/test/run-test/main.cpp rename to storage/ndb/test/run-test/main.cpp diff --git a/ndb/test/run-test/make-config.sh b/storage/ndb/test/run-test/make-config.sh similarity index 100% rename from ndb/test/run-test/make-config.sh rename to storage/ndb/test/run-test/make-config.sh diff --git a/ndb/test/run-test/make-html-reports.sh b/storage/ndb/test/run-test/make-html-reports.sh similarity index 100% rename from ndb/test/run-test/make-html-reports.sh rename to storage/ndb/test/run-test/make-html-reports.sh diff --git a/ndb/test/run-test/make-index.sh b/storage/ndb/test/run-test/make-index.sh similarity index 100% rename from ndb/test/run-test/make-index.sh rename to storage/ndb/test/run-test/make-index.sh diff --git a/ndb/test/run-test/ndb-autotest.sh b/storage/ndb/test/run-test/ndb-autotest.sh similarity index 100% rename from ndb/test/run-test/ndb-autotest.sh rename to storage/ndb/test/run-test/ndb-autotest.sh diff --git a/ndb/test/run-test/run-test.hpp b/storage/ndb/test/run-test/run-test.hpp similarity index 100% rename from ndb/test/run-test/run-test.hpp rename to storage/ndb/test/run-test/run-test.hpp diff --git a/ndb/test/src/CpcClient.cpp b/storage/ndb/test/src/CpcClient.cpp similarity index 100% rename from ndb/test/src/CpcClient.cpp rename to storage/ndb/test/src/CpcClient.cpp diff --git a/ndb/test/src/HugoAsynchTransactions.cpp b/storage/ndb/test/src/HugoAsynchTransactions.cpp similarity index 100% rename from ndb/test/src/HugoAsynchTransactions.cpp rename to storage/ndb/test/src/HugoAsynchTransactions.cpp diff --git a/ndb/test/src/HugoCalculator.cpp b/storage/ndb/test/src/HugoCalculator.cpp similarity index 100% rename from ndb/test/src/HugoCalculator.cpp rename to storage/ndb/test/src/HugoCalculator.cpp diff --git a/ndb/test/src/HugoOperations.cpp b/storage/ndb/test/src/HugoOperations.cpp similarity index 100% rename from ndb/test/src/HugoOperations.cpp rename to storage/ndb/test/src/HugoOperations.cpp diff --git a/ndb/test/src/HugoTransactions.cpp b/storage/ndb/test/src/HugoTransactions.cpp similarity index 100% rename from ndb/test/src/HugoTransactions.cpp rename to storage/ndb/test/src/HugoTransactions.cpp diff --git a/storage/ndb/test/src/Makefile.am b/storage/ndb/test/src/Makefile.am new file mode 100644 index 00000000000..d141a356ac0 --- /dev/null +++ b/storage/ndb/test/src/Makefile.am @@ -0,0 +1,35 @@ + +noinst_LIBRARIES = libNDBT.a + +libNDBT_a_SOURCES = \ + NDBT_ReturnCodes.cpp \ + NDBT_Error.cpp NDBT_Tables.cpp NDBT_ResultRow.cpp \ + NDBT_Test.cpp HugoCalculator.cpp \ + HugoOperations.cpp HugoTransactions.cpp \ + HugoAsynchTransactions.cpp UtilTransactions.cpp \ + NdbRestarter.cpp NdbRestarts.cpp NDBT_Output.cpp \ + NdbBackup.cpp NdbConfig.cpp NdbGrep.cpp NDBT_Table.cpp \ + NdbSchemaCon.cpp NdbSchemaOp.cpp getarg.c \ + CpcClient.cpp + +INCLUDES_LOC = -I$(top_srcdir)/storage/ndb/src/common/mgmcommon -I$(top_srcdir)/storage/ndb/include/mgmcommon -I$(top_srcdir)/storage/ndb/include/kernel -I$(top_srcdir)/storage/ndb/src/mgmapi + +include $(top_srcdir)/storage/ndb/config/common.mk.am +include $(top_srcdir)/storage/ndb/config/type_ndbapitest.mk.am + +# Don't update the files from bitkeeper +%::SCCS/s.% + +windoze-dsp: libNDBT.dsp + +libNDBT.dsp: Makefile \ + $(top_srcdir)/storage/ndb/config/win-lib.am \ + $(top_srcdir)/storage/ndb/config/win-name \ + $(top_srcdir)/storage/ndb/config/win-includes \ + $(top_srcdir)/storage/ndb/config/win-sources \ + $(top_srcdir)/storage/ndb/config/win-libraries + cat $(top_srcdir)/storage/ndb/config/win-lib.am > $@ + @$(top_srcdir)/storage/ndb/config/win-name $@ $(noinst_LIBRARIES) + @$(top_srcdir)/storage/ndb/config/win-includes $@ $(INCLUDES) + @$(top_srcdir)/storage/ndb/config/win-sources $@ $(libNDBT_a_SOURCES) + @$(top_srcdir)/storage/ndb/config/win-libraries $@ LIB diff --git a/ndb/test/src/NDBT_Error.cpp b/storage/ndb/test/src/NDBT_Error.cpp similarity index 100% rename from ndb/test/src/NDBT_Error.cpp rename to storage/ndb/test/src/NDBT_Error.cpp diff --git a/ndb/test/src/NDBT_Output.cpp b/storage/ndb/test/src/NDBT_Output.cpp similarity index 100% rename from ndb/test/src/NDBT_Output.cpp rename to storage/ndb/test/src/NDBT_Output.cpp diff --git a/ndb/test/src/NDBT_ResultRow.cpp b/storage/ndb/test/src/NDBT_ResultRow.cpp similarity index 100% rename from ndb/test/src/NDBT_ResultRow.cpp rename to storage/ndb/test/src/NDBT_ResultRow.cpp diff --git a/ndb/test/src/NDBT_ReturnCodes.cpp b/storage/ndb/test/src/NDBT_ReturnCodes.cpp similarity index 100% rename from ndb/test/src/NDBT_ReturnCodes.cpp rename to storage/ndb/test/src/NDBT_ReturnCodes.cpp diff --git a/ndb/test/src/NDBT_Table.cpp b/storage/ndb/test/src/NDBT_Table.cpp similarity index 100% rename from ndb/test/src/NDBT_Table.cpp rename to storage/ndb/test/src/NDBT_Table.cpp diff --git a/ndb/test/src/NDBT_Tables.cpp b/storage/ndb/test/src/NDBT_Tables.cpp similarity index 100% rename from ndb/test/src/NDBT_Tables.cpp rename to storage/ndb/test/src/NDBT_Tables.cpp diff --git a/ndb/test/src/NDBT_Test.cpp b/storage/ndb/test/src/NDBT_Test.cpp similarity index 100% rename from ndb/test/src/NDBT_Test.cpp rename to storage/ndb/test/src/NDBT_Test.cpp diff --git a/ndb/test/src/NdbBackup.cpp b/storage/ndb/test/src/NdbBackup.cpp similarity index 100% rename from ndb/test/src/NdbBackup.cpp rename to storage/ndb/test/src/NdbBackup.cpp diff --git a/ndb/test/src/NdbConfig.cpp b/storage/ndb/test/src/NdbConfig.cpp similarity index 100% rename from ndb/test/src/NdbConfig.cpp rename to storage/ndb/test/src/NdbConfig.cpp diff --git a/ndb/test/src/NdbGrep.cpp b/storage/ndb/test/src/NdbGrep.cpp similarity index 100% rename from ndb/test/src/NdbGrep.cpp rename to storage/ndb/test/src/NdbGrep.cpp diff --git a/ndb/test/src/NdbRestarter.cpp b/storage/ndb/test/src/NdbRestarter.cpp similarity index 100% rename from ndb/test/src/NdbRestarter.cpp rename to storage/ndb/test/src/NdbRestarter.cpp diff --git a/ndb/test/src/NdbRestarts.cpp b/storage/ndb/test/src/NdbRestarts.cpp similarity index 100% rename from ndb/test/src/NdbRestarts.cpp rename to storage/ndb/test/src/NdbRestarts.cpp diff --git a/ndb/test/src/NdbSchemaCon.cpp b/storage/ndb/test/src/NdbSchemaCon.cpp similarity index 100% rename from ndb/test/src/NdbSchemaCon.cpp rename to storage/ndb/test/src/NdbSchemaCon.cpp diff --git a/ndb/test/src/NdbSchemaOp.cpp b/storage/ndb/test/src/NdbSchemaOp.cpp similarity index 100% rename from ndb/test/src/NdbSchemaOp.cpp rename to storage/ndb/test/src/NdbSchemaOp.cpp diff --git a/ndb/test/src/UtilTransactions.cpp b/storage/ndb/test/src/UtilTransactions.cpp similarity index 100% rename from ndb/test/src/UtilTransactions.cpp rename to storage/ndb/test/src/UtilTransactions.cpp diff --git a/ndb/test/src/getarg.c b/storage/ndb/test/src/getarg.c similarity index 100% rename from ndb/test/src/getarg.c rename to storage/ndb/test/src/getarg.c diff --git a/ndb/test/tools/Makefile.am b/storage/ndb/test/tools/Makefile.am similarity index 88% rename from ndb/test/tools/Makefile.am rename to storage/ndb/test/tools/Makefile.am index 873136e254d..a7ab7669052 100644 --- a/ndb/test/tools/Makefile.am +++ b/storage/ndb/test/tools/Makefile.am @@ -19,8 +19,8 @@ copy_tab_SOURCES = copy_tab.cpp create_index_SOURCES = create_index.cpp ndb_cpcc_SOURCES = cpcc.cpp -include $(top_srcdir)/ndb/config/common.mk.am -include $(top_srcdir)/ndb/config/type_ndbapitest.mk.am +include $(top_srcdir)/storage/ndb/config/common.mk.am +include $(top_srcdir)/storage/ndb/config/type_ndbapitest.mk.am ndb_cpcc_LDADD = $(LDADD) diff --git a/ndb/test/tools/copy_tab.cpp b/storage/ndb/test/tools/copy_tab.cpp similarity index 100% rename from ndb/test/tools/copy_tab.cpp rename to storage/ndb/test/tools/copy_tab.cpp diff --git a/ndb/test/tools/cpcc.cpp b/storage/ndb/test/tools/cpcc.cpp similarity index 100% rename from ndb/test/tools/cpcc.cpp rename to storage/ndb/test/tools/cpcc.cpp diff --git a/ndb/test/tools/create_index.cpp b/storage/ndb/test/tools/create_index.cpp similarity index 100% rename from ndb/test/tools/create_index.cpp rename to storage/ndb/test/tools/create_index.cpp diff --git a/ndb/test/tools/hugoCalculator.cpp b/storage/ndb/test/tools/hugoCalculator.cpp similarity index 100% rename from ndb/test/tools/hugoCalculator.cpp rename to storage/ndb/test/tools/hugoCalculator.cpp diff --git a/ndb/test/tools/hugoFill.cpp b/storage/ndb/test/tools/hugoFill.cpp similarity index 100% rename from ndb/test/tools/hugoFill.cpp rename to storage/ndb/test/tools/hugoFill.cpp diff --git a/ndb/test/tools/hugoLoad.cpp b/storage/ndb/test/tools/hugoLoad.cpp similarity index 100% rename from ndb/test/tools/hugoLoad.cpp rename to storage/ndb/test/tools/hugoLoad.cpp diff --git a/ndb/test/tools/hugoLockRecords.cpp b/storage/ndb/test/tools/hugoLockRecords.cpp similarity index 100% rename from ndb/test/tools/hugoLockRecords.cpp rename to storage/ndb/test/tools/hugoLockRecords.cpp diff --git a/ndb/test/tools/hugoPkDelete.cpp b/storage/ndb/test/tools/hugoPkDelete.cpp similarity index 100% rename from ndb/test/tools/hugoPkDelete.cpp rename to storage/ndb/test/tools/hugoPkDelete.cpp diff --git a/ndb/test/tools/hugoPkRead.cpp b/storage/ndb/test/tools/hugoPkRead.cpp similarity index 100% rename from ndb/test/tools/hugoPkRead.cpp rename to storage/ndb/test/tools/hugoPkRead.cpp diff --git a/ndb/test/tools/hugoPkReadRecord.cpp b/storage/ndb/test/tools/hugoPkReadRecord.cpp similarity index 100% rename from ndb/test/tools/hugoPkReadRecord.cpp rename to storage/ndb/test/tools/hugoPkReadRecord.cpp diff --git a/ndb/test/tools/hugoPkUpdate.cpp b/storage/ndb/test/tools/hugoPkUpdate.cpp similarity index 100% rename from ndb/test/tools/hugoPkUpdate.cpp rename to storage/ndb/test/tools/hugoPkUpdate.cpp diff --git a/ndb/test/tools/hugoScanRead.cpp b/storage/ndb/test/tools/hugoScanRead.cpp similarity index 100% rename from ndb/test/tools/hugoScanRead.cpp rename to storage/ndb/test/tools/hugoScanRead.cpp diff --git a/ndb/test/tools/hugoScanUpdate.cpp b/storage/ndb/test/tools/hugoScanUpdate.cpp similarity index 100% rename from ndb/test/tools/hugoScanUpdate.cpp rename to storage/ndb/test/tools/hugoScanUpdate.cpp diff --git a/ndb/test/tools/old_dirs/hugoCalculator/Makefile b/storage/ndb/test/tools/old_dirs/hugoCalculator/Makefile similarity index 100% rename from ndb/test/tools/old_dirs/hugoCalculator/Makefile rename to storage/ndb/test/tools/old_dirs/hugoCalculator/Makefile diff --git a/ndb/test/tools/old_dirs/hugoFill/Makefile b/storage/ndb/test/tools/old_dirs/hugoFill/Makefile similarity index 100% rename from ndb/test/tools/old_dirs/hugoFill/Makefile rename to storage/ndb/test/tools/old_dirs/hugoFill/Makefile diff --git a/ndb/test/tools/old_dirs/hugoLoad/Makefile b/storage/ndb/test/tools/old_dirs/hugoLoad/Makefile similarity index 100% rename from ndb/test/tools/old_dirs/hugoLoad/Makefile rename to storage/ndb/test/tools/old_dirs/hugoLoad/Makefile diff --git a/ndb/test/tools/old_dirs/hugoLockRecords/Makefile b/storage/ndb/test/tools/old_dirs/hugoLockRecords/Makefile similarity index 100% rename from ndb/test/tools/old_dirs/hugoLockRecords/Makefile rename to storage/ndb/test/tools/old_dirs/hugoLockRecords/Makefile diff --git a/ndb/test/tools/old_dirs/hugoPkDelete/Makefile b/storage/ndb/test/tools/old_dirs/hugoPkDelete/Makefile similarity index 100% rename from ndb/test/tools/old_dirs/hugoPkDelete/Makefile rename to storage/ndb/test/tools/old_dirs/hugoPkDelete/Makefile diff --git a/ndb/test/tools/old_dirs/hugoPkRead/Makefile b/storage/ndb/test/tools/old_dirs/hugoPkRead/Makefile similarity index 100% rename from ndb/test/tools/old_dirs/hugoPkRead/Makefile rename to storage/ndb/test/tools/old_dirs/hugoPkRead/Makefile diff --git a/ndb/test/tools/old_dirs/hugoPkReadRecord/Makefile b/storage/ndb/test/tools/old_dirs/hugoPkReadRecord/Makefile similarity index 100% rename from ndb/test/tools/old_dirs/hugoPkReadRecord/Makefile rename to storage/ndb/test/tools/old_dirs/hugoPkReadRecord/Makefile diff --git a/ndb/test/tools/old_dirs/hugoPkUpdate/Makefile b/storage/ndb/test/tools/old_dirs/hugoPkUpdate/Makefile similarity index 100% rename from ndb/test/tools/old_dirs/hugoPkUpdate/Makefile rename to storage/ndb/test/tools/old_dirs/hugoPkUpdate/Makefile diff --git a/ndb/test/tools/old_dirs/hugoScanRead/Makefile b/storage/ndb/test/tools/old_dirs/hugoScanRead/Makefile similarity index 100% rename from ndb/test/tools/old_dirs/hugoScanRead/Makefile rename to storage/ndb/test/tools/old_dirs/hugoScanRead/Makefile diff --git a/ndb/test/tools/old_dirs/hugoScanUpdate/Makefile b/storage/ndb/test/tools/old_dirs/hugoScanUpdate/Makefile similarity index 100% rename from ndb/test/tools/old_dirs/hugoScanUpdate/Makefile rename to storage/ndb/test/tools/old_dirs/hugoScanUpdate/Makefile diff --git a/ndb/test/tools/old_dirs/restart/Makefile b/storage/ndb/test/tools/old_dirs/restart/Makefile similarity index 100% rename from ndb/test/tools/old_dirs/restart/Makefile rename to storage/ndb/test/tools/old_dirs/restart/Makefile diff --git a/ndb/test/tools/old_dirs/transproxy/Makefile b/storage/ndb/test/tools/old_dirs/transproxy/Makefile similarity index 100% rename from ndb/test/tools/old_dirs/transproxy/Makefile rename to storage/ndb/test/tools/old_dirs/transproxy/Makefile diff --git a/ndb/test/tools/old_dirs/verify_index/Makefile b/storage/ndb/test/tools/old_dirs/verify_index/Makefile similarity index 100% rename from ndb/test/tools/old_dirs/verify_index/Makefile rename to storage/ndb/test/tools/old_dirs/verify_index/Makefile diff --git a/ndb/test/tools/old_dirs/waiter/waiter.cpp b/storage/ndb/test/tools/old_dirs/waiter/waiter.cpp similarity index 100% rename from ndb/test/tools/old_dirs/waiter/waiter.cpp rename to storage/ndb/test/tools/old_dirs/waiter/waiter.cpp diff --git a/ndb/test/tools/restart.cpp b/storage/ndb/test/tools/restart.cpp similarity index 100% rename from ndb/test/tools/restart.cpp rename to storage/ndb/test/tools/restart.cpp diff --git a/ndb/test/tools/transproxy.cpp b/storage/ndb/test/tools/transproxy.cpp similarity index 100% rename from ndb/test/tools/transproxy.cpp rename to storage/ndb/test/tools/transproxy.cpp diff --git a/ndb/test/tools/verify_index.cpp b/storage/ndb/test/tools/verify_index.cpp similarity index 100% rename from ndb/test/tools/verify_index.cpp rename to storage/ndb/test/tools/verify_index.cpp diff --git a/storage/ndb/tools/Makefile.am b/storage/ndb/tools/Makefile.am new file mode 100644 index 00000000000..958f28bae02 --- /dev/null +++ b/storage/ndb/tools/Makefile.am @@ -0,0 +1,156 @@ + +ndbtools_PROGRAMS = \ + ndb_test_platform \ + ndb_waiter \ + ndb_drop_table \ + ndb_delete_all \ + ndb_desc \ + ndb_drop_index \ + ndb_show_tables \ + ndb_select_all \ + ndb_select_count \ + ndb_restore + +tools_common_sources = ../test/src/NDBT_ReturnCodes.cpp \ + ../test/src/NDBT_Table.cpp \ + ../test/src/NDBT_Output.cpp + +ndb_test_platform_SOURCES = ndb_test_platform.cpp +ndb_waiter_SOURCES = waiter.cpp $(tools_common_sources) +ndb_delete_all_SOURCES = delete_all.cpp $(tools_common_sources) +ndb_desc_SOURCES = desc.cpp $(tools_common_sources) +ndb_drop_index_SOURCES = drop_index.cpp $(tools_common_sources) +ndb_drop_table_SOURCES = drop_tab.cpp $(tools_common_sources) +ndb_show_tables_SOURCES = listTables.cpp $(tools_common_sources) +ndb_select_all_SOURCES = select_all.cpp \ + ../test/src/NDBT_ResultRow.cpp \ + $(tools_common_sources) +ndb_select_count_SOURCES = select_count.cpp $(tools_common_sources) +ndb_restore_SOURCES = restore/restore_main.cpp \ + restore/consumer.cpp \ + restore/consumer_restore.cpp \ + restore/consumer_printer.cpp \ + restore/Restore.cpp + +include $(top_srcdir)/storage/ndb/config/common.mk.am +include $(top_srcdir)/storage/ndb/config/type_ndbapitools.mk.am + +ndb_test_platform_LDFLAGS = @ndb_bin_am_ldflags@ +ndb_waiter_LDFLAGS = @ndb_bin_am_ldflags@ +ndb_drop_table_LDFLAGS = @ndb_bin_am_ldflags@ +ndb_delete_all_LDFLAGS = @ndb_bin_am_ldflags@ +ndb_desc_LDFLAGS = @ndb_bin_am_ldflags@ +ndb_drop_index_LDFLAGS = @ndb_bin_am_ldflags@ +ndb_show_tables_LDFLAGS = @ndb_bin_am_ldflags@ +ndb_select_all_LDFLAGS = @ndb_bin_am_ldflags@ +ndb_select_count_LDFLAGS = @ndb_bin_am_ldflags@ +ndb_restore_LDFLAGS = @ndb_bin_am_ldflags@ + +# Don't update the files from bitkeeper +%::SCCS/s.% + +windoze-dsp: \ + ndb_waiter.dsp \ + ndb_drop_table.dsp \ + ndb_delete_all.dsp \ + ndb_desc.dsp \ + ndb_drop_index.dsp \ + ndb_show_tables.dsp \ + ndb_select_all.dsp \ + ndb_select_count.dsp + +ndb_waiter.dsp: Makefile \ + $(top_srcdir)/storage/ndb/config/win-prg.am \ + $(top_srcdir)/storage/ndb/config/win-name \ + $(top_srcdir)/storage/ndb/config/win-includes \ + $(top_srcdir)/storage/ndb/config/win-sources \ + $(top_srcdir)/storage/ndb/config/win-libraries + cat $(top_srcdir)/storage/ndb/config/win-prg.am > $@ + @$(top_srcdir)/storage/ndb/config/win-name $@ ndb_waiter + @$(top_srcdir)/storage/ndb/config/win-includes $@ $(INCLUDES) + @$(top_srcdir)/storage/ndb/config/win-sources $@ $(ndb_waiter_SOURCES) + @$(top_srcdir)/storage/ndb/config/win-libraries $@ LINK $(LDADD) + +ndb_drop_table.dsp: Makefile \ + $(top_srcdir)/storage/ndb/config/win-prg.am \ + $(top_srcdir)/storage/ndb/config/win-name \ + $(top_srcdir)/storage/ndb/config/win-includes \ + $(top_srcdir)/storage/ndb/config/win-sources \ + $(top_srcdir)/storage/ndb/config/win-libraries + cat $(top_srcdir)/storage/ndb/config/win-prg.am > $@ + @$(top_srcdir)/storage/ndb/config/win-name $@ ndb_drop_table + @$(top_srcdir)/storage/ndb/config/win-includes $@ $(INCLUDES) + @$(top_srcdir)/storage/ndb/config/win-sources $@ $(ndb_drop_table_SOURCES) + @$(top_srcdir)/storage/ndb/config/win-libraries $@ LINK $(LDADD) + +ndb_delete_all.dsp: Makefile \ + $(top_srcdir)/storage/ndb/config/win-prg.am \ + $(top_srcdir)/storage/ndb/config/win-name \ + $(top_srcdir)/storage/ndb/config/win-includes \ + $(top_srcdir)/storage/ndb/config/win-sources \ + $(top_srcdir)/storage/ndb/config/win-libraries + cat $(top_srcdir)/storage/ndb/config/win-prg.am > $@ + @$(top_srcdir)/storage/ndb/config/win-name $@ ndb_delete_all + @$(top_srcdir)/storage/ndb/config/win-includes $@ $(INCLUDES) + @$(top_srcdir)/storage/ndb/config/win-sources $@ $(ndb_delete_all_SOURCES) + @$(top_srcdir)/storage/ndb/config/win-libraries $@ LINK $(LDADD) + +ndb_desc.dsp: Makefile \ + $(top_srcdir)/storage/ndb/config/win-prg.am \ + $(top_srcdir)/storage/ndb/config/win-name \ + $(top_srcdir)/storage/ndb/config/win-includes \ + $(top_srcdir)/storage/ndb/config/win-sources \ + $(top_srcdir)/storage/ndb/config/win-libraries + cat $(top_srcdir)/storage/ndb/config/win-prg.am > $@ + @$(top_srcdir)/storage/ndb/config/win-name $@ ndb_desc + @$(top_srcdir)/storage/ndb/config/win-includes $@ $(INCLUDES) + @$(top_srcdir)/storage/ndb/config/win-sources $@ $(ndb_desc_SOURCES) + @$(top_srcdir)/storage/ndb/config/win-libraries $@ LINK $(LDADD) + +ndb_drop_index.dsp: Makefile \ + $(top_srcdir)/storage/ndb/config/win-prg.am \ + $(top_srcdir)/storage/ndb/config/win-name \ + $(top_srcdir)/storage/ndb/config/win-includes \ + $(top_srcdir)/storage/ndb/config/win-sources \ + $(top_srcdir)/storage/ndb/config/win-libraries + cat $(top_srcdir)/storage/ndb/config/win-prg.am > $@ + @$(top_srcdir)/storage/ndb/config/win-name $@ ndb_drop_index + @$(top_srcdir)/storage/ndb/config/win-includes $@ $(INCLUDES) + @$(top_srcdir)/storage/ndb/config/win-sources $@ $(ndb_drop_index_SOURCES) + @$(top_srcdir)/storage/ndb/config/win-libraries $@ LINK $(LDADD) + +ndb_show_tables.dsp: Makefile \ + $(top_srcdir)/ndb/config/win-prg.am \ + $(top_srcdir)/storage/ndb/config/win-name \ + $(top_srcdir)/storage/ndb/config/win-includes \ + $(top_srcdir)/storage/ndb/config/win-sources \ + $(top_srcdir)/storage/ndb/config/win-libraries + cat $(top_srcdir)/storage/ndb/config/win-prg.am > $@ + @$(top_srcdir)/storage/ndb/config/win-name $@ ndb_show_tables + @$(top_srcdir)/storage/ndb/config/win-includes $@ $(INCLUDES) + @$(top_srcdir)/storage/ndb/config/win-sources $@ $(ndb_show_tables_SOURCES) + @$(top_srcdir)/storage/ndb/config/win-libraries $@ LINK $(LDADD) + +ndb_select_all.dsp: Makefile \ + $(top_srcdir)/storage/ndb/config/win-prg.am \ + $(top_srcdir)/storage/ndb/config/win-name \ + $(top_srcdir)/storage/ndb/config/win-includes \ + $(top_srcdir)/storage/ndb/config/win-sources \ + $(top_srcdir)/storage/ndb/config/win-libraries + cat $(top_srcdir)/storage/ndb/config/win-prg.am > $@ + @$(top_srcdir)/storage/ndb/config/win-name $@ ndb_select_all + @$(top_srcdir)/storage/ndb/config/win-includes $@ $(INCLUDES) + @$(top_srcdir)/storage/ndb/config/win-sources $@ $(ndb_select_all_SOURCES) + @$(top_srcdir)/storage/ndb/config/win-libraries $@ LINK $(LDADD) + +ndb_select_count.dsp: Makefile \ + $(top_srcdir)/storage/ndb/config/win-prg.am \ + $(top_srcdir)/storage/ndb/config/win-name \ + $(top_srcdir)/storage/ndb/config/win-includes \ + $(top_srcdir)/storage/ndb/config/win-sources \ + $(top_srcdir)/storage/ndb/config/win-libraries + cat $(top_srcdir)/storage/ndb/config/win-prg.am > $@ + @$(top_srcdir)/storage/ndb/config/win-name $@ ndb_select_count + @$(top_srcdir)/storage/ndb/config/win-includes $@ $(INCLUDES) + @$(top_srcdir)/storage/ndb/config/win-sources $@ $(ndb_select_count_SOURCES) + @$(top_srcdir)/storage/ndb/config/win-libraries $@ LINK $(LDADD) diff --git a/ndb/tools/clean-links.sh b/storage/ndb/tools/clean-links.sh similarity index 100% rename from ndb/tools/clean-links.sh rename to storage/ndb/tools/clean-links.sh diff --git a/ndb/tools/delete_all.cpp b/storage/ndb/tools/delete_all.cpp similarity index 100% rename from ndb/tools/delete_all.cpp rename to storage/ndb/tools/delete_all.cpp diff --git a/ndb/tools/desc.cpp b/storage/ndb/tools/desc.cpp similarity index 100% rename from ndb/tools/desc.cpp rename to storage/ndb/tools/desc.cpp diff --git a/ndb/tools/drop_index.cpp b/storage/ndb/tools/drop_index.cpp similarity index 100% rename from ndb/tools/drop_index.cpp rename to storage/ndb/tools/drop_index.cpp diff --git a/ndb/tools/drop_tab.cpp b/storage/ndb/tools/drop_tab.cpp similarity index 100% rename from ndb/tools/drop_tab.cpp rename to storage/ndb/tools/drop_tab.cpp diff --git a/ndb/tools/listTables.cpp b/storage/ndb/tools/listTables.cpp similarity index 100% rename from ndb/tools/listTables.cpp rename to storage/ndb/tools/listTables.cpp diff --git a/ndb/tools/make-errors.pl b/storage/ndb/tools/make-errors.pl similarity index 100% rename from ndb/tools/make-errors.pl rename to storage/ndb/tools/make-errors.pl diff --git a/ndb/tools/make-links.sh b/storage/ndb/tools/make-links.sh similarity index 100% rename from ndb/tools/make-links.sh rename to storage/ndb/tools/make-links.sh diff --git a/ndb/tools/ndb_test_platform.cpp b/storage/ndb/tools/ndb_test_platform.cpp similarity index 100% rename from ndb/tools/ndb_test_platform.cpp rename to storage/ndb/tools/ndb_test_platform.cpp diff --git a/ndb/tools/ndbsql.cpp b/storage/ndb/tools/ndbsql.cpp similarity index 100% rename from ndb/tools/ndbsql.cpp rename to storage/ndb/tools/ndbsql.cpp diff --git a/ndb/tools/old_dirs/copy_tab/Makefile b/storage/ndb/tools/old_dirs/copy_tab/Makefile similarity index 100% rename from ndb/tools/old_dirs/copy_tab/Makefile rename to storage/ndb/tools/old_dirs/copy_tab/Makefile diff --git a/ndb/tools/old_dirs/cpcc/Makefile b/storage/ndb/tools/old_dirs/cpcc/Makefile similarity index 100% rename from ndb/tools/old_dirs/cpcc/Makefile rename to storage/ndb/tools/old_dirs/cpcc/Makefile diff --git a/ndb/tools/old_dirs/create_index/Makefile b/storage/ndb/tools/old_dirs/create_index/Makefile similarity index 100% rename from ndb/tools/old_dirs/create_index/Makefile rename to storage/ndb/tools/old_dirs/create_index/Makefile diff --git a/ndb/tools/old_dirs/delete_all/Makefile b/storage/ndb/tools/old_dirs/delete_all/Makefile similarity index 100% rename from ndb/tools/old_dirs/delete_all/Makefile rename to storage/ndb/tools/old_dirs/delete_all/Makefile diff --git a/ndb/tools/old_dirs/desc/Makefile b/storage/ndb/tools/old_dirs/desc/Makefile similarity index 100% rename from ndb/tools/old_dirs/desc/Makefile rename to storage/ndb/tools/old_dirs/desc/Makefile diff --git a/ndb/tools/old_dirs/drop_index/Makefile b/storage/ndb/tools/old_dirs/drop_index/Makefile similarity index 100% rename from ndb/tools/old_dirs/drop_index/Makefile rename to storage/ndb/tools/old_dirs/drop_index/Makefile diff --git a/ndb/tools/old_dirs/drop_tab/Makefile b/storage/ndb/tools/old_dirs/drop_tab/Makefile similarity index 100% rename from ndb/tools/old_dirs/drop_tab/Makefile rename to storage/ndb/tools/old_dirs/drop_tab/Makefile diff --git a/ndb/tools/old_dirs/list_tables/Makefile b/storage/ndb/tools/old_dirs/list_tables/Makefile similarity index 100% rename from ndb/tools/old_dirs/list_tables/Makefile rename to storage/ndb/tools/old_dirs/list_tables/Makefile diff --git a/ndb/tools/old_dirs/ndbnet/Makefile.PL b/storage/ndb/tools/old_dirs/ndbnet/Makefile.PL similarity index 100% rename from ndb/tools/old_dirs/ndbnet/Makefile.PL rename to storage/ndb/tools/old_dirs/ndbnet/Makefile.PL diff --git a/ndb/tools/old_dirs/ndbnet/lib/NDB/Net.pm b/storage/ndb/tools/old_dirs/ndbnet/lib/NDB/Net.pm similarity index 100% rename from ndb/tools/old_dirs/ndbnet/lib/NDB/Net.pm rename to storage/ndb/tools/old_dirs/ndbnet/lib/NDB/Net.pm diff --git a/ndb/tools/old_dirs/ndbnet/lib/NDB/Net/Base.pm b/storage/ndb/tools/old_dirs/ndbnet/lib/NDB/Net/Base.pm similarity index 100% rename from ndb/tools/old_dirs/ndbnet/lib/NDB/Net/Base.pm rename to storage/ndb/tools/old_dirs/ndbnet/lib/NDB/Net/Base.pm diff --git a/ndb/tools/old_dirs/ndbnet/lib/NDB/Net/Client.pm b/storage/ndb/tools/old_dirs/ndbnet/lib/NDB/Net/Client.pm similarity index 100% rename from ndb/tools/old_dirs/ndbnet/lib/NDB/Net/Client.pm rename to storage/ndb/tools/old_dirs/ndbnet/lib/NDB/Net/Client.pm diff --git a/ndb/tools/old_dirs/ndbnet/lib/NDB/Net/Command.pm b/storage/ndb/tools/old_dirs/ndbnet/lib/NDB/Net/Command.pm similarity index 100% rename from ndb/tools/old_dirs/ndbnet/lib/NDB/Net/Command.pm rename to storage/ndb/tools/old_dirs/ndbnet/lib/NDB/Net/Command.pm diff --git a/ndb/tools/old_dirs/ndbnet/lib/NDB/Net/Config.pm b/storage/ndb/tools/old_dirs/ndbnet/lib/NDB/Net/Config.pm similarity index 100% rename from ndb/tools/old_dirs/ndbnet/lib/NDB/Net/Config.pm rename to storage/ndb/tools/old_dirs/ndbnet/lib/NDB/Net/Config.pm diff --git a/ndb/tools/old_dirs/ndbnet/lib/NDB/Net/Database.pm b/storage/ndb/tools/old_dirs/ndbnet/lib/NDB/Net/Database.pm similarity index 100% rename from ndb/tools/old_dirs/ndbnet/lib/NDB/Net/Database.pm rename to storage/ndb/tools/old_dirs/ndbnet/lib/NDB/Net/Database.pm diff --git a/ndb/tools/old_dirs/ndbnet/lib/NDB/Net/Env.pm b/storage/ndb/tools/old_dirs/ndbnet/lib/NDB/Net/Env.pm similarity index 100% rename from ndb/tools/old_dirs/ndbnet/lib/NDB/Net/Env.pm rename to storage/ndb/tools/old_dirs/ndbnet/lib/NDB/Net/Env.pm diff --git a/ndb/tools/old_dirs/ndbnet/lib/NDB/Net/Node.pm b/storage/ndb/tools/old_dirs/ndbnet/lib/NDB/Net/Node.pm similarity index 100% rename from ndb/tools/old_dirs/ndbnet/lib/NDB/Net/Node.pm rename to storage/ndb/tools/old_dirs/ndbnet/lib/NDB/Net/Node.pm diff --git a/ndb/tools/old_dirs/ndbnet/lib/NDB/Net/NodeApi.pm b/storage/ndb/tools/old_dirs/ndbnet/lib/NDB/Net/NodeApi.pm similarity index 100% rename from ndb/tools/old_dirs/ndbnet/lib/NDB/Net/NodeApi.pm rename to storage/ndb/tools/old_dirs/ndbnet/lib/NDB/Net/NodeApi.pm diff --git a/ndb/tools/old_dirs/ndbnet/lib/NDB/Net/NodeDb.pm b/storage/ndb/tools/old_dirs/ndbnet/lib/NDB/Net/NodeDb.pm similarity index 100% rename from ndb/tools/old_dirs/ndbnet/lib/NDB/Net/NodeDb.pm rename to storage/ndb/tools/old_dirs/ndbnet/lib/NDB/Net/NodeDb.pm diff --git a/ndb/tools/old_dirs/ndbnet/lib/NDB/Net/NodeMgmt.pm b/storage/ndb/tools/old_dirs/ndbnet/lib/NDB/Net/NodeMgmt.pm similarity index 100% rename from ndb/tools/old_dirs/ndbnet/lib/NDB/Net/NodeMgmt.pm rename to storage/ndb/tools/old_dirs/ndbnet/lib/NDB/Net/NodeMgmt.pm diff --git a/ndb/tools/old_dirs/ndbnet/lib/NDB/Net/Server.pm b/storage/ndb/tools/old_dirs/ndbnet/lib/NDB/Net/Server.pm similarity index 100% rename from ndb/tools/old_dirs/ndbnet/lib/NDB/Net/Server.pm rename to storage/ndb/tools/old_dirs/ndbnet/lib/NDB/Net/Server.pm diff --git a/ndb/tools/old_dirs/ndbnet/lib/NDB/Net/ServerINET.pm b/storage/ndb/tools/old_dirs/ndbnet/lib/NDB/Net/ServerINET.pm similarity index 100% rename from ndb/tools/old_dirs/ndbnet/lib/NDB/Net/ServerINET.pm rename to storage/ndb/tools/old_dirs/ndbnet/lib/NDB/Net/ServerINET.pm diff --git a/ndb/tools/old_dirs/ndbnet/lib/NDB/Net/ServerUNIX.pm b/storage/ndb/tools/old_dirs/ndbnet/lib/NDB/Net/ServerUNIX.pm similarity index 100% rename from ndb/tools/old_dirs/ndbnet/lib/NDB/Net/ServerUNIX.pm rename to storage/ndb/tools/old_dirs/ndbnet/lib/NDB/Net/ServerUNIX.pm diff --git a/ndb/tools/old_dirs/ndbnet/lib/NDB/Run.pm b/storage/ndb/tools/old_dirs/ndbnet/lib/NDB/Run.pm similarity index 100% rename from ndb/tools/old_dirs/ndbnet/lib/NDB/Run.pm rename to storage/ndb/tools/old_dirs/ndbnet/lib/NDB/Run.pm diff --git a/ndb/tools/old_dirs/ndbnet/lib/NDB/Run/Base.pm b/storage/ndb/tools/old_dirs/ndbnet/lib/NDB/Run/Base.pm similarity index 100% rename from ndb/tools/old_dirs/ndbnet/lib/NDB/Run/Base.pm rename to storage/ndb/tools/old_dirs/ndbnet/lib/NDB/Run/Base.pm diff --git a/ndb/tools/old_dirs/ndbnet/lib/NDB/Run/Database.pm b/storage/ndb/tools/old_dirs/ndbnet/lib/NDB/Run/Database.pm similarity index 100% rename from ndb/tools/old_dirs/ndbnet/lib/NDB/Run/Database.pm rename to storage/ndb/tools/old_dirs/ndbnet/lib/NDB/Run/Database.pm diff --git a/ndb/tools/old_dirs/ndbnet/lib/NDB/Run/Env.pm b/storage/ndb/tools/old_dirs/ndbnet/lib/NDB/Run/Env.pm similarity index 100% rename from ndb/tools/old_dirs/ndbnet/lib/NDB/Run/Env.pm rename to storage/ndb/tools/old_dirs/ndbnet/lib/NDB/Run/Env.pm diff --git a/ndb/tools/old_dirs/ndbnet/lib/NDB/Run/Node.pm b/storage/ndb/tools/old_dirs/ndbnet/lib/NDB/Run/Node.pm similarity index 100% rename from ndb/tools/old_dirs/ndbnet/lib/NDB/Run/Node.pm rename to storage/ndb/tools/old_dirs/ndbnet/lib/NDB/Run/Node.pm diff --git a/ndb/tools/old_dirs/ndbnet/lib/NDB/Util.pm b/storage/ndb/tools/old_dirs/ndbnet/lib/NDB/Util.pm similarity index 100% rename from ndb/tools/old_dirs/ndbnet/lib/NDB/Util.pm rename to storage/ndb/tools/old_dirs/ndbnet/lib/NDB/Util.pm diff --git a/ndb/tools/old_dirs/ndbnet/lib/NDB/Util/Base.pm b/storage/ndb/tools/old_dirs/ndbnet/lib/NDB/Util/Base.pm similarity index 100% rename from ndb/tools/old_dirs/ndbnet/lib/NDB/Util/Base.pm rename to storage/ndb/tools/old_dirs/ndbnet/lib/NDB/Util/Base.pm diff --git a/ndb/tools/old_dirs/ndbnet/lib/NDB/Util/Dir.pm b/storage/ndb/tools/old_dirs/ndbnet/lib/NDB/Util/Dir.pm similarity index 100% rename from ndb/tools/old_dirs/ndbnet/lib/NDB/Util/Dir.pm rename to storage/ndb/tools/old_dirs/ndbnet/lib/NDB/Util/Dir.pm diff --git a/ndb/tools/old_dirs/ndbnet/lib/NDB/Util/Event.pm b/storage/ndb/tools/old_dirs/ndbnet/lib/NDB/Util/Event.pm similarity index 100% rename from ndb/tools/old_dirs/ndbnet/lib/NDB/Util/Event.pm rename to storage/ndb/tools/old_dirs/ndbnet/lib/NDB/Util/Event.pm diff --git a/ndb/tools/old_dirs/ndbnet/lib/NDB/Util/File.pm b/storage/ndb/tools/old_dirs/ndbnet/lib/NDB/Util/File.pm similarity index 100% rename from ndb/tools/old_dirs/ndbnet/lib/NDB/Util/File.pm rename to storage/ndb/tools/old_dirs/ndbnet/lib/NDB/Util/File.pm diff --git a/ndb/tools/old_dirs/ndbnet/lib/NDB/Util/IO.pm b/storage/ndb/tools/old_dirs/ndbnet/lib/NDB/Util/IO.pm similarity index 100% rename from ndb/tools/old_dirs/ndbnet/lib/NDB/Util/IO.pm rename to storage/ndb/tools/old_dirs/ndbnet/lib/NDB/Util/IO.pm diff --git a/ndb/tools/old_dirs/ndbnet/lib/NDB/Util/Lock.pm b/storage/ndb/tools/old_dirs/ndbnet/lib/NDB/Util/Lock.pm similarity index 100% rename from ndb/tools/old_dirs/ndbnet/lib/NDB/Util/Lock.pm rename to storage/ndb/tools/old_dirs/ndbnet/lib/NDB/Util/Lock.pm diff --git a/ndb/tools/old_dirs/ndbnet/lib/NDB/Util/Log.pm b/storage/ndb/tools/old_dirs/ndbnet/lib/NDB/Util/Log.pm similarity index 100% rename from ndb/tools/old_dirs/ndbnet/lib/NDB/Util/Log.pm rename to storage/ndb/tools/old_dirs/ndbnet/lib/NDB/Util/Log.pm diff --git a/ndb/tools/old_dirs/ndbnet/lib/NDB/Util/Socket.pm b/storage/ndb/tools/old_dirs/ndbnet/lib/NDB/Util/Socket.pm similarity index 100% rename from ndb/tools/old_dirs/ndbnet/lib/NDB/Util/Socket.pm rename to storage/ndb/tools/old_dirs/ndbnet/lib/NDB/Util/Socket.pm diff --git a/ndb/tools/old_dirs/ndbnet/lib/NDB/Util/SocketINET.pm b/storage/ndb/tools/old_dirs/ndbnet/lib/NDB/Util/SocketINET.pm similarity index 100% rename from ndb/tools/old_dirs/ndbnet/lib/NDB/Util/SocketINET.pm rename to storage/ndb/tools/old_dirs/ndbnet/lib/NDB/Util/SocketINET.pm diff --git a/ndb/tools/old_dirs/ndbnet/lib/NDB/Util/SocketUNIX.pm b/storage/ndb/tools/old_dirs/ndbnet/lib/NDB/Util/SocketUNIX.pm similarity index 100% rename from ndb/tools/old_dirs/ndbnet/lib/NDB/Util/SocketUNIX.pm rename to storage/ndb/tools/old_dirs/ndbnet/lib/NDB/Util/SocketUNIX.pm diff --git a/ndb/tools/old_dirs/ndbnet/ndbnet.pl b/storage/ndb/tools/old_dirs/ndbnet/ndbnet.pl similarity index 100% rename from ndb/tools/old_dirs/ndbnet/ndbnet.pl rename to storage/ndb/tools/old_dirs/ndbnet/ndbnet.pl diff --git a/ndb/tools/old_dirs/ndbnet/ndbnetd.pl b/storage/ndb/tools/old_dirs/ndbnet/ndbnetd.pl similarity index 100% rename from ndb/tools/old_dirs/ndbnet/ndbnetd.pl rename to storage/ndb/tools/old_dirs/ndbnet/ndbnetd.pl diff --git a/ndb/tools/old_dirs/ndbnet/ndbrun b/storage/ndb/tools/old_dirs/ndbnet/ndbrun similarity index 100% rename from ndb/tools/old_dirs/ndbnet/ndbrun rename to storage/ndb/tools/old_dirs/ndbnet/ndbrun diff --git a/ndb/tools/old_dirs/ndbsql/Makefile b/storage/ndb/tools/old_dirs/ndbsql/Makefile similarity index 100% rename from ndb/tools/old_dirs/ndbsql/Makefile rename to storage/ndb/tools/old_dirs/ndbsql/Makefile diff --git a/ndb/tools/old_dirs/select_all/Makefile b/storage/ndb/tools/old_dirs/select_all/Makefile similarity index 100% rename from ndb/tools/old_dirs/select_all/Makefile rename to storage/ndb/tools/old_dirs/select_all/Makefile diff --git a/ndb/tools/old_dirs/select_count/Makefile b/storage/ndb/tools/old_dirs/select_count/Makefile similarity index 100% rename from ndb/tools/old_dirs/select_count/Makefile rename to storage/ndb/tools/old_dirs/select_count/Makefile diff --git a/ndb/tools/old_dirs/src/counterviewer/CounterViewer.java b/storage/ndb/tools/old_dirs/src/counterviewer/CounterViewer.java similarity index 100% rename from ndb/tools/old_dirs/src/counterviewer/CounterViewer.java rename to storage/ndb/tools/old_dirs/src/counterviewer/CounterViewer.java diff --git a/ndb/tools/restore/Restore.cpp b/storage/ndb/tools/restore/Restore.cpp similarity index 100% rename from ndb/tools/restore/Restore.cpp rename to storage/ndb/tools/restore/Restore.cpp diff --git a/ndb/tools/restore/Restore.hpp b/storage/ndb/tools/restore/Restore.hpp similarity index 100% rename from ndb/tools/restore/Restore.hpp rename to storage/ndb/tools/restore/Restore.hpp diff --git a/ndb/tools/restore/consumer.cpp b/storage/ndb/tools/restore/consumer.cpp similarity index 100% rename from ndb/tools/restore/consumer.cpp rename to storage/ndb/tools/restore/consumer.cpp diff --git a/ndb/tools/restore/consumer.hpp b/storage/ndb/tools/restore/consumer.hpp similarity index 100% rename from ndb/tools/restore/consumer.hpp rename to storage/ndb/tools/restore/consumer.hpp diff --git a/ndb/tools/restore/consumer_printer.cpp b/storage/ndb/tools/restore/consumer_printer.cpp similarity index 100% rename from ndb/tools/restore/consumer_printer.cpp rename to storage/ndb/tools/restore/consumer_printer.cpp diff --git a/ndb/tools/restore/consumer_printer.hpp b/storage/ndb/tools/restore/consumer_printer.hpp similarity index 100% rename from ndb/tools/restore/consumer_printer.hpp rename to storage/ndb/tools/restore/consumer_printer.hpp diff --git a/ndb/tools/restore/consumer_restore.cpp b/storage/ndb/tools/restore/consumer_restore.cpp similarity index 100% rename from ndb/tools/restore/consumer_restore.cpp rename to storage/ndb/tools/restore/consumer_restore.cpp diff --git a/ndb/tools/restore/consumer_restore.hpp b/storage/ndb/tools/restore/consumer_restore.hpp similarity index 100% rename from ndb/tools/restore/consumer_restore.hpp rename to storage/ndb/tools/restore/consumer_restore.hpp diff --git a/ndb/tools/restore/consumer_restorem.cpp b/storage/ndb/tools/restore/consumer_restorem.cpp similarity index 100% rename from ndb/tools/restore/consumer_restorem.cpp rename to storage/ndb/tools/restore/consumer_restorem.cpp diff --git a/ndb/tools/restore/restore_main.cpp b/storage/ndb/tools/restore/restore_main.cpp similarity index 100% rename from ndb/tools/restore/restore_main.cpp rename to storage/ndb/tools/restore/restore_main.cpp diff --git a/ndb/tools/rgrep b/storage/ndb/tools/rgrep similarity index 100% rename from ndb/tools/rgrep rename to storage/ndb/tools/rgrep diff --git a/ndb/tools/select_all.cpp b/storage/ndb/tools/select_all.cpp similarity index 100% rename from ndb/tools/select_all.cpp rename to storage/ndb/tools/select_all.cpp diff --git a/ndb/tools/select_count.cpp b/storage/ndb/tools/select_count.cpp similarity index 100% rename from ndb/tools/select_count.cpp rename to storage/ndb/tools/select_count.cpp diff --git a/ndb/tools/waiter.cpp b/storage/ndb/tools/waiter.cpp similarity index 100% rename from ndb/tools/waiter.cpp rename to storage/ndb/tools/waiter.cpp