An error occurred fetching the project authors.
  1. 05 Aug, 2005 1 commit
    • unknown's avatar
      client_priv.h: · 8853c9f8
      unknown authored
        Removed ending comma in enum
      Makefile.am:
        config.cpp => ndb_config.cpp, solves link problems on case insensitive OS
      ndb_config.cpp:
        Rename: ndb/tools/config.cpp -> ndb/tools/ndb_config.cpp
      
      
      ndb/tools/ndb_config.cpp:
        Rename: ndb/tools/config.cpp -> ndb/tools/ndb_config.cpp
      ndb/tools/Makefile.am:
        config.cpp => ndb_config.cpp, solves link problems on case insensitive OS
      client/client_priv.h:
        Removed ending comma in enum
      8853c9f8
  2. 23 Jul, 2005 1 commit
    • unknown's avatar
      Add tool to extract config info from ndb_mgmd · 848341df
      unknown authored
      ndb/include/mgmapi/mgmapi.h:
        Add feature to redirect error printouts
      ndb/src/mgmapi/mgmapi.cpp:
        Add feature to redirect error printouts
      ndb/src/mgmsrv/ConfigInfo.hpp:
        Make param info public
      ndb/tools/Makefile.am:
        Add ndb_config
      ndb/tools/config.cpp:
        New BitKeeper file ``ndb/tools/config.cpp''
      848341df
  3. 26 May, 2005 1 commit
    • unknown's avatar
      bug#10190 - ndb · 9077fea5
      unknown authored
        ndb_restore invalid handling of distribution keys when restoring meta data
        (also aligned printout with that of ndb_desc)
      
      
      ndb/src/ndbapi/NdbDictionaryImpl.cpp:
        Don't call it a distribution key if all keys are set as distribution key
      ndb/tools/Makefile.am:
        Use same format as desc when printing meta in ndb_restore
      ndb/tools/restore/Restore.cpp:
        Use same format as desc when printing meta in ndb_restore
      9077fea5
  4. 18 Nov, 2004 1 commit
    • unknown's avatar
      change file name to avoid conflict · c35400bc
      unknown authored
          corrected mistake in previous patch
      
      
      ndb/tools/Makefile.am:
        change file name to avoid conflict
      ndb/tools/restore/restore_main.cpp:
        corrected mistake in previous patch
      c35400bc
  5. 16 Nov, 2004 1 commit
    • unknown's avatar
      wl1744 - ndb on windows · b97d4bc4
      unknown authored
      ndb/include/ndb_global.h.in:
        remove defines and put them into basestring
      ndb/src/common/logger/FileLogHandler.cpp:
        fix
      ndb/src/common/logger/Logger.cpp:
        fix
      ndb/src/common/portlib/win32/NdbMutex.c:
        fix
      ndb/src/common/util/basestring_vsnprintf.c:
        fix
      ndb/src/mgmapi/mgmapi.cpp:
        fix
      ndb/src/mgmsrv/MgmtSrvr.cpp:
        fix
      ndb/src/mgmsrv/Services.cpp:
        fix
      ndb/test/ndbapi/Makefile.am:
        fix
      ndb/tools/Makefile.am:
        fix
      b97d4bc4
  6. 14 Nov, 2004 1 commit
    • unknown's avatar
      moved ndb_restore together with rest of the ndb tools · fe27637b
      unknown authored
          kernel includes needed by ndb_restore
          changed link order
          moved LocalConfig to mgmapi
          Moved NdbConfig to Portlib
          mgmapi to use LocalConfig for connectstring parsing instead of it's own
          enable usage of "NULL" connectstring for default
          new ndbmgmclient lib that can be used by e.g. mysqladmin later
          LocalConfig no longer needed here, now in mgmapi
          Send connectstring to mgmapi instead
          added valid connectstring to be with only host without port i.e.
          valid connectstring =host1,host2,host3
          default port will be added
      
      
      ndb/src/common/portlib/NdbConfig.c:
        Rename: ndb/src/common/mgmcommon/NdbConfig.c -> ndb/src/common/portlib/NdbConfig.c
      ndb/include/portlib/NdbConfig.h:
        Rename: ndb/include/mgmcommon/NdbConfig.h -> ndb/include/portlib/NdbConfig.h
      ndb/include/mgmapi/LocalConfig.hpp:
        Rename: ndb/include/mgmcommon/LocalConfig.hpp -> ndb/include/mgmapi/LocalConfig.hpp
      ndb/tools/restore/Makefile.am:
        Rename: ndb/src/kernel/blocks/backup/restore/Makefile.am -> ndb/tools/restore/Makefile.am
      ndb/tools/restore/consumer.cpp:
        Rename: ndb/src/kernel/blocks/backup/restore/consumer.cpp -> ndb/tools/restore/consumer.cpp
      ndb/tools/restore/consumer.hpp:
        Rename: ndb/src/kernel/blocks/backup/restore/consumer.hpp -> ndb/tools/restore/consumer.hpp
      ndb/tools/restore/consumer_printer.hpp:
        Rename: ndb/src/kernel/blocks/backup/restore/consumer_printer.hpp -> ndb/tools/restore/consumer_printer.hpp
      ndb/tools/restore/consumer_printer.cpp:
        Rename: ndb/src/kernel/blocks/backup/restore/consumer_printer.cpp -> ndb/tools/restore/consumer_printer.cpp
      ndb/tools/restore/consumer_restore.hpp:
        Rename: ndb/src/kernel/blocks/backup/restore/consumer_restore.hpp -> ndb/tools/restore/consumer_restore.hpp
      ndb/tools/restore/main.cpp:
        Rename: ndb/src/kernel/blocks/backup/restore/main.cpp -> ndb/tools/restore/main.cpp
      ndb/tools/restore/consumer_restorem.cpp:
        Rename: ndb/src/kernel/blocks/backup/restore/consumer_restorem.cpp -> ndb/tools/restore/consumer_restorem.cpp
      configure.in:
        moved ndb_restore together with rest of the ndb tools
      ndb/config/type_ndbapitools.mk.am:
        kernel includes needed by ndb_restore
      ndb/src/Makefile.am:
        changed link order
      ndb/src/common/mgmcommon/Makefile.am:
        mived LocalConfig to mgmapi
      ndb/src/common/portlib/Makefile.am:
        Moved NdbConfig to Portlib
      ndb/src/kernel/blocks/backup/Makefile.am:
        moved restore together with rest of ndb tools
      ndb/src/mgmapi/LocalConfig.cpp:
        added valid connectstring to be with only host without port i.e.
        valid connectstring =host1,host2,host3
        default port will be added
      ndb/src/mgmapi/Makefile.am:
        LocalConfig part of the libmgmapi
      ndb/src/mgmapi/mgmapi.cpp:
        mgmapi to use LocalConfig for connectstring parsing instead of it's own
      ndb/src/mgmclient/CommandInterpreter.cpp:
        enable usage of "NULL" connectstring for default
      ndb/src/mgmclient/Makefile.am:
        new ndbmgmclient lib that can be used by e.g. mysqladmin later
      ndb/src/mgmclient/main.cpp:
        LocalConfig no longer needed here, now in mgmapi
        Send connectstring to mgmapi instead
      ndb/tools/Makefile.am:
        add ndb_restore to make of tools
      ndb/tools/restore/Restore.cpp:
        moved include BackupFormat and NdbDictionaryImpl to Restore.hpp
      ndb/tools/restore/Restore.hpp:
        moved include BackupFormat and NdbDictionaryImpl to Restore.hpp
      ndb/tools/restore/consumer_restore.cpp:
        moved include BackupFormat and NdbDictionaryImpl to Restore.hpp
      ndb/tools/waiter.cpp:
        LocalConfig moved
      fe27637b
  7. 09 Nov, 2004 1 commit
  8. 08 Nov, 2004 1 commit
  9. 08 Jun, 2004 1 commit
  10. 03 Jun, 2004 1 commit
    • unknown's avatar
      ndb make updates · 25d66d30
      unknown authored
      ndb/src/common/portlib/NdbCondition.c:
        Rename: ndb/src/common/portlib/unix/NdbCondition.c -> ndb/src/common/portlib/NdbCondition.c
      ndb/src/common/portlib/NdbDaemon.c:
        Rename: ndb/src/common/portlib/unix/NdbDaemon.c -> ndb/src/common/portlib/NdbDaemon.c
      ndb/src/common/portlib/NdbEnv.c:
        Rename: ndb/src/common/portlib/unix/NdbEnv.c -> ndb/src/common/portlib/NdbEnv.c
      ndb/src/common/portlib/NdbHost.c:
        Rename: ndb/src/common/portlib/unix/NdbHost.c -> ndb/src/common/portlib/NdbHost.c
      ndb/src/common/portlib/NdbMem.c:
        Rename: ndb/src/common/portlib/unix/NdbMem.c -> ndb/src/common/portlib/NdbMem.c
      ndb/src/common/portlib/NdbMutex.c:
        Rename: ndb/src/common/portlib/unix/NdbMutex.c -> ndb/src/common/portlib/NdbMutex.c
      ndb/src/common/portlib/NdbSleep.c:
        Rename: ndb/src/common/portlib/unix/NdbSleep.c -> ndb/src/common/portlib/NdbSleep.c
      ndb/src/common/portlib/NdbTCP.c:
        Rename: ndb/src/common/portlib/unix/NdbTCP.c -> ndb/src/common/portlib/NdbTCP.c
      ndb/src/common/portlib/NdbThread.c:
        Rename: ndb/src/common/portlib/unix/NdbThread.c -> ndb/src/common/portlib/NdbThread.c
      ndb/src/common/portlib/NdbTick.c:
        Rename: ndb/src/common/portlib/unix/NdbTick.c -> ndb/src/common/portlib/NdbTick.c
      BitKeeper/deleted/.del-Makefile.am~4d9c81a4353f3ee8:
        Delete: ndb/src/common/portlib/unix/Makefile.am
      ndb/src/common/portlib/old_dirs/unix/Makefile_old:
        mvdir
      ndb/src/common/portlib/old_dirs/win32/Makefile:
        mvdir
      ndb/src/common/portlib/old_dirs/win32/NdbCondition.c:
        mvdir
      ndb/src/common/portlib/old_dirs/win32/NdbDaemon.c:
        mvdir
      ndb/src/common/portlib/old_dirs/win32/NdbEnv.c:
        mvdir
      ndb/src/common/portlib/old_dirs/win32/NdbHost.c:
        mvdir
      ndb/src/common/portlib/old_dirs/win32/NdbMem.c:
        mvdir
      ndb/src/common/portlib/old_dirs/win32/NdbMutex.c:
        mvdir
      ndb/src/common/portlib/old_dirs/win32/NdbSleep.c:
        mvdir
      ndb/src/common/portlib/old_dirs/win32/NdbTCP.c:
        mvdir
      ndb/src/common/portlib/old_dirs/win32/NdbThread.c:
        mvdir
      ndb/src/common/portlib/old_dirs/win32/NdbTick.c:
        mvdir
      ndb/src/common/portlib/old_dirs/ose/Makefile:
        mvdir
      ndb/src/common/portlib/old_dirs/ose/NdbCondition.c:
        mvdir
      ndb/src/common/portlib/old_dirs/ose/NdbConditionOSE.h:
        mvdir
      ndb/src/common/portlib/old_dirs/ose/NdbEnv.c:
        mvdir
      ndb/src/common/portlib/old_dirs/ose/NdbHost.c:
        mvdir
      ndb/src/common/portlib/old_dirs/ose/NdbMem.c:
        mvdir
      ndb/src/common/portlib/old_dirs/ose/NdbMem_SoftOse.cpp:
        mvdir
      ndb/src/common/portlib/old_dirs/ose/NdbMutex.c:
        mvdir
      ndb/src/common/portlib/old_dirs/ose/NdbOut.cpp:
        mvdir
      ndb/src/common/portlib/old_dirs/ose/NdbSleep.c:
        mvdir
      ndb/src/common/portlib/old_dirs/ose/NdbTCP.c:
        mvdir
      ndb/src/common/portlib/old_dirs/ose/NdbThread.c:
        mvdir
      ndb/src/common/portlib/old_dirs/ose/NdbTick.c:
        mvdir
      ndb/src/common/portlib/memtest.c:
        Rename: ndb/src/common/portlib/memtest/memtest.c -> ndb/src/common/portlib/memtest.c
      ndb/src/common/portlib/munmaptest.cpp:
        Rename: ndb/src/common/portlib/memtest/munmaptest/munmaptest.cpp -> ndb/src/common/portlib/munmaptest.cpp
      ndb/src/common/portlib/mmslist.cpp:
        Rename: ndb/src/common/portlib/mmstest/mmslist.cpp -> ndb/src/common/portlib/mmslist.cpp
      ndb/src/common/portlib/mmstest.cpp:
        Rename: ndb/src/common/portlib/mmstest/mmstest.cpp -> ndb/src/common/portlib/mmstest.cpp
      ndb/src/common/portlib/old_dirs/memtest/Makefile:
        mvdir
      ndb/src/common/portlib/old_dirs/memtest/munmaptest/Makefile:
        mvdir
      ndb/src/common/portlib/NdbPortLibTest.cpp:
        Rename: ndb/src/common/portlib/test/NdbPortLibTest.cpp -> ndb/src/common/portlib/NdbPortLibTest.cpp
      ndb/src/common/portlib/old_dirs/test/Makefile:
        mvdir
      25d66d30
  11. 02 Jun, 2004 2 commits
    • unknown's avatar
      collapsed ndb start/stop scripts in mysql-test-run + ndb bin name changes · 9a0a301d
      unknown authored
      BitKeeper/deleted/.del-stop_ndbcluster.sh~b3b9e9505384aca1:
        Delete: mysql-test/ndb/stop_ndbcluster.sh
      mysql-test/mysql-test-run.sh:
        collapsed ndb start/stop scripts
      mysql-test/ndb/Makefile.am:
        collapsed ndb start/stop scripts
      mysql-test/ndb/ndbcluster.sh:
        collapsed ndb start/stop scripts + ndb bin name changes
      ndb/src/kernel/Makefile.am:
        ndb bin name changes
      ndb/src/kernel/blocks/backup/restore/Makefile.am:
        ndb bin name changes
      ndb/src/mgmclient/Makefile.am:
        ndb bin name changes
      ndb/src/mgmsrv/Makefile.am:
        ndb bin name changes
      ndb/tools/Makefile.am:
        ndb bin name changes
      9a0a301d
    • unknown's avatar
      several ndb make changes, see respective file · 90dabc71
      unknown authored
      ndb/src/kernel/Main.cpp:
        Rename: ndb/src/kernel/ndb-main/Main.cpp -> ndb/src/kernel/Main.cpp
      ndb/src/kernel/SimBlockList.cpp:
        Rename: ndb/src/kernel/ndb-main/SimBlockList.cpp -> ndb/src/kernel/SimBlockList.cpp
      BitKeeper/deleted/.del-Makefile.am~dbb6038d7163a54d:
        Delete: ndb/src/kernel/ndb-main/Makefile.am
      BitKeeper/deleted/.del-Makefile_old~1f37e763ba5d06d0:
        Delete: ndb/src/kernel/ndb-main/Makefile_old
      ndb/old_files/BinDist.sh:
        Rename: ndb/BinDist.sh -> ndb/old_files/BinDist.sh
      ndb/old_files/Defs.mk:
        Rename: ndb/Defs.mk -> ndb/old_files/Defs.mk
      ndb/old_files/Makefile:
        Rename: ndb/Makefile_old -> ndb/old_files/Makefile
      ndb/old_files/SrcDist.sh:
        Rename: ndb/SrcDist.sh -> ndb/old_files/SrcDist.sh
      ndb/old_files/configure:
        Rename: ndb/configure_old -> ndb/old_files/configure
      ndb/old_files/Epilogue.mk:
        Rename: ndb/Epilogue.mk_old -> ndb/old_files/Epilogue.mk
      ndb/config/old_files/Defs.DEBUG.mk:
        Rename: ndb/config/Defs.DEBUG.mk -> ndb/config/old_files/Defs.DEBUG.mk
      ndb/config/old_files/Defs.HPUX.HPPA.GCC.mk:
        Rename: ndb/config/Defs.HPUX.HPPA.GCC.mk -> ndb/config/old_files/Defs.HPUX.HPPA.GCC.mk
      ndb/config/old_files/Defs.IBMAIX.POWERPC.GCC.mk:
        Rename: ndb/config/Defs.IBMAIX.POWERPC.GCC.mk -> ndb/config/old_files/Defs.IBMAIX.POWERPC.GCC.mk
      ndb/config/old_files/Defs.LINUX.x86.GCC.mk:
        Rename: ndb/config/Defs.LINUX.x86.GCC.mk -> ndb/config/old_files/Defs.LINUX.x86.GCC.mk
      ndb/config/old_files/Defs.LINUX.x86.ICC.mk:
        Rename: ndb/config/Defs.LINUX.x86.ICC.mk -> ndb/config/old_files/Defs.LINUX.x86.ICC.mk
      ndb/config/old_files/Defs.LINUX.x86_64.GCC.mk:
        Rename: ndb/config/Defs.LINUX.x86_64.GCC.mk -> ndb/config/old_files/Defs.LINUX.x86_64.GCC.mk
      ndb/config/old_files/Defs.MACOSX.POWERPC.GCC.mk:
        Rename: ndb/config/Defs.MACOSX.POWERPC.GCC.mk -> ndb/config/old_files/Defs.MACOSX.POWERPC.GCC.mk
      ndb/config/old_files/Defs.OSE.PPC750.DIAB.mk:
        Rename: ndb/config/Defs.OSE.PPC750.DIAB.mk -> ndb/config/old_files/Defs.OSE.PPC750.DIAB.mk
      ndb/config/old_files/Defs.RELEASE.mk:
        Rename: ndb/config/Defs.RELEASE.mk -> ndb/config/old_files/Defs.RELEASE.mk
      ndb/config/old_files/Defs.RELEASE_TRACE.mk:
        Rename: ndb/config/Defs.RELEASE_TRACE.mk -> ndb/config/old_files/Defs.RELEASE_TRACE.mk
      ndb/config/old_files/Defs.SIMCELLO.SOFTOSE.GCC.mk:
        Rename: ndb/config/Defs.SIMCELLO.SOFTOSE.GCC.mk -> ndb/config/old_files/Defs.SIMCELLO.SOFTOSE.GCC.mk
      ndb/config/old_files/Defs.SOFTOSE.SPARC.GCC.mk:
        Rename: ndb/config/Defs.SOFTOSE.SPARC.GCC.mk -> ndb/config/old_files/Defs.SOFTOSE.SPARC.GCC.mk
      ndb/config/old_files/Defs.SOLARIS.SPARC.FORTE6.mk:
        Rename: ndb/config/Defs.SOLARIS.SPARC.FORTE6.mk -> ndb/config/old_files/Defs.SOLARIS.SPARC.FORTE6.mk
      ndb/config/old_files/Defs.SOLARIS.SPARC.GCC.mk:
        Rename: ndb/config/Defs.SOLARIS.SPARC.GCC.mk -> ndb/config/old_files/Defs.SOLARIS.SPARC.GCC.mk
      ndb/config/old_files/Defs.SOLARIS.SPARC_64.GCC.mk:
        Rename: ndb/config/Defs.SOLARIS.SPARC_64.GCC.mk -> ndb/config/old_files/Defs.SOLARIS.SPARC_64.GCC.mk
      ndb/config/old_files/Defs.SOLARIS6.SPARC.GCC.mk:
        Rename: ndb/config/Defs.SOLARIS6.SPARC.GCC.mk -> ndb/config/old_files/Defs.SOLARIS6.SPARC.GCC.mk
      ndb/config/old_files/Defs.TRU64X.ALPHA.GCC.mk:
        Rename: ndb/config/Defs.TRU64X.ALPHA.GCC.mk -> ndb/config/old_files/Defs.TRU64X.ALPHA.GCC.mk
      ndb/config/old_files/Defs.WIN32.x86.VC7.mk:
        Rename: ndb/config/Defs.WIN32.x86.VC7.mk -> ndb/config/old_files/Defs.WIN32.x86.VC7.mk
      ndb/config/old_files/acinclude.m4:
        Rename: ndb/config/acinclude.m4 -> ndb/config/old_files/acinclude.m4
      ndb/config/old_files/Makefile.am:
        Rename: ndb/config/Makefile.am_old -> ndb/config/old_files/Makefile.am
      ndb/config/old_files/GuessConfig.sh:
        Rename: ndb/config/GuessConfig.sh_old -> ndb/config/old_files/GuessConfig.sh
      ndb/config/old_files/configure.in:
        Rename: ndb/config/configure.in -> ndb/config/old_files/configure.in
      ndb/config/old_files/config.h.in:
        Rename: ndb/config/config.h.in -> ndb/config/old_files/config.h.in
      ndb/old_files/README:
        Rename: ndb/README -> ndb/old_files/README
      ndb/old_files/mysqlclusterenv.sh:
        Rename: ndb/mysqlclusterenv.sh -> ndb/old_files/mysqlclusterenv.sh
      ndb/old_files/env.sh:
        Rename: ndb/env.sh -> ndb/old_files/env.sh
      BitKeeper/deleted/.del-Makefile~650473b0dabb331b:
        Delete: ndb/src/scripts/Makefile
      ndb/src/old_files/ndbbaseclient/Makefile:
        mvdir
      ndb/src/old_files/ndbbaseclient/ndbbaseclient_dummy.cpp:
        mvdir
      ndb/src/old_files/ndbclient/Makefile:
        mvdir
      ndb/src/old_files/ndbclient/ndbclient_dummy.cpp:
        mvdir
      ndb/src/old_files/Makefile:
        Rename: ndb/src/Makefile_old -> ndb/src/old_files/Makefile
      acinclude.m4:
        added ndb configure options
      configure.in:
        moved lots of stuff for ndb over to Makefile.ams and added some config opt for ndb
      mysql-test/ndb/install_ndbcluster.sh:
        adopt to new ndb install
      mysql-test/ndb/stop_ndbcluster.sh:
        adopt to new ndb install
      ndb/Makefile.am:
        moved some things to include/Makefile.am
      ndb/config/common.mk.am:
        moved some things from configure.in
      ndb/config/type_kernel.mk.am:
        moved some things from configure.in
      ndb/config/type_mgmapiclient.mk.am:
        moved some things from configure.in
      ndb/config/type_ndbapi.mk.am:
        moved some things from configure.in
      ndb/config/type_ndbapiclient.mk.am:
        moved some things from configure.in
      ndb/config/type_ndbapitest.mk.am:
        moved some things from configure.in
      ndb/config/type_ndbapitools.mk.am:
        moved some things from configure.in
      ndb/config/type_util.mk.am:
        moved some things from configure.in
      ndb/src/Makefile.am:
        .
      ndb/src/common/portlib/Makefile.am:
        fix for make distdir
      ndb/src/cw/cpcd/Makefile.am:
        added configurable ldflags
      ndb/src/kernel/Makefile.am:
        moved up ndb-main one level
      ndb/src/kernel/blocks/backup/restore/Makefile.am:
        added configurable ldflags
      ndb/src/kernel/blocks/suma/Makefile.am:
        fixed error
      ndb/src/kernel/error/Makefile.am:
        fix error
      ndb/src/kernel/vm/Makefile.am:
        fix error
      ndb/src/mgmapi/Makefile.am:
        removed libMGM_API
      ndb/src/mgmclient/Makefile.am:
        added configurable ldflags
      ndb/src/mgmsrv/Makefile.am:
        added configurable ldflags
      ndb/src/ndbapi/Makefile.am:
        removed libNDB_API
      ndb/test/Makefile.am:
        added optional build of ndbapi tests
      ndb/tools/Makefile.am:
        added configurable ldflags
      ndb/include/Makefile.am:
        fixed missing .h files in make distdir
      scripts/make_binary_distribution.sh:
        updated for ndb and new make
      90dabc71
  12. 01 Jun, 2004 1 commit
    • unknown's avatar
      various ndb make changes, see respective file · efeb3c68
      unknown authored
      BitKeeper/deleted/.del-Makefile.am~d4e228ebd21fc066:
        Delete: ndb/include/Makefile.am
      acinclude.m4:
        static linking of ndbclient into mysqld
      configure.in:
        removed ndb/include/Makefile.am + fixed conditional compile of ndb shm, sci
      ndb/Makefile.am:
        dist-hook for make distdir in ndb
      ndb/config/type_ndbapitest.mk.am:
        use of libndbclient.so in testprograms
      ndb/config/type_ndbapitools.mk.am:
        static linking to binary distributed ndb tools
      ndb/src/Makefile.am:
        enable libndbclient.so
      ndb/src/common/transporter/Makefile.am:
        added support for optional inclusion of shared mem and sci in ndb transporter
      ndb/tools/Makefile.am:
        new type for tools which should be statically linked with libndbclient
      BitKeeper/etc/logging_ok:
        Logging to logging@openlogging.org accepted
      efeb3c68
  13. 27 May, 2004 1 commit
    • unknown's avatar
      several ndb automake changes, see respective file · 312794db
      unknown authored
      ndb/tools/waiter.cpp:
        Rename: ndb/test/tools/waiter.cpp -> ndb/tools/waiter.cpp
      configure.in:
        added install dirs for ndb
      ndb/Makefile.am:
        ndb headers for install
      ndb/config/common.mk.am:
        DEFS_LOC in ndb make
      ndb/config/type_ndbapi.mk.am:
        added LDADD=libNDB_API.la default for type_ndbapi
      ndb/src/cw/cpcd/Makefile.am:
        changes install dir
      ndb/src/kernel/blocks/backup/restore/Makefile.am:
        changes install dir
      ndb/src/kernel/ndb-main/Makefile.am:
        changes install dir
      ndb/src/mgmapi/Makefile.am:
        changes install dir
      ndb/src/mgmclient/Makefile.am:
        changes install dir
      ndb/src/mgmsrv/Makefile.am:
        changes install dir
      ndb/src/ndbapi/Makefile.am:
        changes install dir
      ndb/test/ndbapi/Makefile.am:
        changes install dir
      ndb/test/ndbapi/bank/Makefile.am:
        changes install dir
      ndb/test/tools/Makefile.am:
        changes install dir
      mysql-test/ndb/install_ndbcluster.sh:
        new
      mysql-test/ndb/stop_ndbcluster.sh:
        new
      ndb/tools/Makefile.am:
        changes install dir
      312794db
  14. 26 May, 2004 1 commit
    • unknown's avatar
      neww ndb automake · 72790bb9
      unknown authored
      ndb/test/tools/hugoCalculator.cpp:
        Rename: ndb/test/tools/hugoCalculator/hugoCalculator.cpp -> ndb/test/tools/hugoCalculator.cpp
      ndb/test/tools/hugoLoad.cpp:
        Rename: ndb/test/tools/hugoLoad/hugoLoad.cpp -> ndb/test/tools/hugoLoad.cpp
      ndb/test/tools/hugoFill.cpp:
        Rename: ndb/test/tools/hugoFill/hugoFill.cpp -> ndb/test/tools/hugoFill.cpp
      ndb/test/tools/hugoLockRecords.cpp:
        Rename: ndb/test/tools/hugoLockRecords/hugoLockRecords.cpp -> ndb/test/tools/hugoLockRecords.cpp
      ndb/test/tools/hugoPkRead.cpp:
        Rename: ndb/test/tools/hugoPkRead/hugoPkRead.cpp -> ndb/test/tools/hugoPkRead.cpp
      ndb/test/tools/hugoPkReadRecord.cpp:
        Rename: ndb/test/tools/hugoPkReadRecord/hugoPkReadRecord.cpp -> ndb/test/tools/hugoPkReadRecord.cpp
      ndb/test/tools/hugoScanRead.cpp:
        Rename: ndb/test/tools/hugoScanRead/hugoScanRead.cpp -> ndb/test/tools/hugoScanRead.cpp
      ndb/test/tools/restart.cpp:
        Rename: ndb/test/tools/restart/restart.cpp -> ndb/test/tools/restart.cpp
      ndb/test/ndbapi/TraceNdbApi.cpp:
        Rename: ndb/test/ndbapi/acid2/TraceNdbApi.cpp -> ndb/test/ndbapi/TraceNdbApi.cpp
      ndb/test/ndbapi/VerifyNdbApi.cpp:
        Rename: ndb/test/ndbapi/acid2/VerifyNdbApi.cpp -> ndb/test/ndbapi/VerifyNdbApi.cpp
      ndb/test/ndbapi/acid.cpp:
        Rename: ndb/test/ndbapi/acid/acid.cpp -> ndb/test/ndbapi/acid.cpp
      ndb/test/ndbapi/acid2.cpp:
        Rename: ndb/test/ndbapi/acid2/acid2.cpp -> ndb/test/ndbapi/acid2.cpp
      ndb/test/ndbapi/bulk_copy.cpp:
        Rename: ndb/test/ndbapi/bulk_copy/bulk_copy.cpp -> ndb/test/ndbapi/bulk_copy.cpp
      ndb/test/ndbapi/celloDb.cpp:
        Rename: ndb/test/ndbapi/cello-sessionDb/celloDb.cpp -> ndb/test/ndbapi/celloDb.cpp
      ndb/test/ndbapi/create_all_tabs.cpp:
        Rename: ndb/test/ndbapi/create_all_tabs/create_all_tabs.cpp -> ndb/test/ndbapi/create_all_tabs.cpp
      ndb/test/ndbapi/create_tab.cpp:
        Rename: ndb/test/ndbapi/create_tab/create_tab.cpp -> ndb/test/ndbapi/create_tab.cpp
      ndb/test/ndbapi/drop_all_tabs.cpp:
        Rename: ndb/test/ndbapi/drop_all_tabs/drop_all_tabs.cpp -> ndb/test/ndbapi/drop_all_tabs.cpp
      ndb/test/ndbapi/flexAsynch.cpp:
        Rename: ndb/test/ndbapi/flexAsynch/flexAsynch.cpp -> ndb/test/ndbapi/flexAsynch.cpp
      ndb/test/ndbapi/flexBench.cpp:
        Rename: ndb/test/ndbapi/flexBench/flexBench.cpp -> ndb/test/ndbapi/flexBench.cpp
      ndb/test/ndbapi/flexHammer.cpp:
        Rename: ndb/test/ndbapi/flexHammer/flexHammer.cpp -> ndb/test/ndbapi/flexHammer.cpp
      ndb/test/ndbapi/flexScan.cpp:
        Rename: ndb/test/ndbapi/flexScan/flexScan.cpp -> ndb/test/ndbapi/flexScan.cpp
      ndb/test/ndbapi/flexTT.cpp:
        Rename: ndb/test/ndbapi/flexTT/flexTT.cpp -> ndb/test/ndbapi/flexTT.cpp
      ndb/test/ndbapi/flexTimedAsynch.cpp:
        Rename: ndb/test/ndbapi/flexTimedAsynch/flexTimedAsynch.cpp -> ndb/test/ndbapi/flexTimedAsynch.cpp
      ndb/test/ndbapi/flex_bench_mysql.cpp:
        Rename: ndb/test/ndbapi/flex_bench_mysql/flex_bench_mysql.cpp -> ndb/test/ndbapi/flex_bench_mysql.cpp
      ndb/test/ndbapi/index.cpp:
        Rename: ndb/test/ndbapi/indexTest/index.cpp -> ndb/test/ndbapi/index.cpp
      ndb/test/ndbapi/asyncGenerator.cpp:
        Rename: ndb/test/ndbapi/lmc-bench/async-src/generator/asyncGenerator.cpp -> ndb/test/ndbapi/asyncGenerator.cpp
      ndb/test/ndbapi/index2.cpp:
        Rename: ndb/test/ndbapi/indexTest2/index2.cpp -> ndb/test/ndbapi/index2.cpp
      ndb/test/ndbapi/interpreterInTup.cpp:
        Rename: ndb/test/ndbapi/interpreterInTup/interpreterInTup.cpp -> ndb/test/ndbapi/interpreterInTup.cpp
      ndb/test/ndbapi/mainAsyncGenerator.cpp:
        Rename: ndb/test/ndbapi/lmc-bench/async-src/generator/mainAsyncGenerator.cpp -> ndb/test/ndbapi/mainAsyncGenerator.cpp
      ndb/test/ndbapi/ndb_async1.cpp:
        Rename: ndb/test/ndbapi/lmc-bench/async-src/user/ndb_async1.cpp -> ndb/test/ndbapi/ndb_async1.cpp
      ndb/test/ndbapi/ndb_async2.cpp:
        Rename: ndb/test/ndbapi/lmc-bench/async-src/user/ndb_async2.cpp -> ndb/test/ndbapi/ndb_async2.cpp
      ndb/test/ndbapi/ndb_user_populate.cpp:
        Rename: ndb/test/ndbapi/lmc-bench/src/user/ndb_user_populate.cpp -> ndb/test/ndbapi/ndb_user_populate.cpp
      ndb/test/ndbapi/ndb_user_transaction.cpp:
        Rename: ndb/test/ndbapi/lmc-bench/src/user/ndb_user_transaction.cpp -> ndb/test/ndbapi/ndb_user_transaction.cpp
      ndb/test/ndbapi/ndb_user_transaction2.cpp:
        Rename: ndb/test/ndbapi/lmc-bench/src/user/ndb_user_transaction2.cpp -> ndb/test/ndbapi/ndb_user_transaction2.cpp
      ndb/test/ndbapi/ndb_user_transaction3.cpp:
        Rename: ndb/test/ndbapi/lmc-bench/src/user/ndb_user_transaction3.cpp -> ndb/test/ndbapi/ndb_user_transaction3.cpp
      ndb/test/ndbapi/userInterface.cpp:
        Rename: ndb/test/ndbapi/lmc-bench/async-src/user/userInterface.cpp -> ndb/test/ndbapi/userInterface.cpp
      ndb/test/ndbapi/benchronja.cpp:
        Rename: ndb/test/ndbapi/ronja/benchronja/benchronja.cpp -> ndb/test/ndbapi/benchronja.cpp
      ndb/test/ndbapi/ndb_user_transaction4.cpp:
        Rename: ndb/test/ndbapi/lmc-bench/src/user/ndb_user_transaction4.cpp -> ndb/test/ndbapi/ndb_user_transaction4.cpp
      ndb/test/ndbapi/ndb_user_transaction5.cpp:
        Rename: ndb/test/ndbapi/lmc-bench/src/user/ndb_user_transaction5.cpp -> ndb/test/ndbapi/ndb_user_transaction5.cpp
      ndb/test/ndbapi/ndb_user_transaction6.cpp:
        Rename: ndb/test/ndbapi/lmc-bench/src/user/ndb_user_transaction6.cpp -> ndb/test/ndbapi/ndb_user_transaction6.cpp
      ndb/test/ndbapi/restarter.cpp:
        Rename: ndb/test/ndbapi/restarter/restarter.cpp -> ndb/test/ndbapi/restarter.cpp
      ndb/test/ndbapi/restarter2.cpp:
        Rename: ndb/test/ndbapi/restarter2/restarter2.cpp -> ndb/test/ndbapi/restarter2.cpp
      ndb/test/ndbapi/restarts.cpp:
        Rename: ndb/test/ndbapi/restarts/restarts.cpp -> ndb/test/ndbapi/restarts.cpp
      ndb/test/ndbapi/InsertRecs.cpp:
        Rename: ndb/test/ndbapi/telco/InsertRecs.cpp -> ndb/test/ndbapi/InsertRecs.cpp
      ndb/test/ndbapi/adoInsertRecs.cpp:
        Rename: ndb/test/ndbapi/telco/adoInsertRecs.cpp -> ndb/test/ndbapi/adoInsertRecs.cpp
      ndb/test/ndbapi/initronja.cpp:
        Rename: ndb/test/ndbapi/ronja/initronja/initronja.cpp -> ndb/test/ndbapi/initronja.cpp
      ndb/test/ndbapi/msa.cpp:
        Rename: ndb/test/ndbapi/telco/msa.cpp -> ndb/test/ndbapi/msa.cpp
      ndb/test/ndbapi/testBasic.cpp:
        Rename: ndb/test/ndbapi/testBasic/testBasic.cpp -> ndb/test/ndbapi/testBasic.cpp
      ndb/test/ndbapi/testDataBuffers.cpp:
        Rename: ndb/test/ndbapi/testDataBuffers/testDataBuffers.cpp -> ndb/test/ndbapi/testDataBuffers.cpp
      ndb/test/ndbapi/testDict.cpp:
        Rename: ndb/test/ndbapi/testDict/testDict.cpp -> ndb/test/ndbapi/testDict.cpp
      ndb/test/ndbapi/testGrep.cpp:
        Rename: ndb/test/ndbapi/testGrep/testGrep.cpp -> ndb/test/ndbapi/testGrep.cpp
      ndb/test/ndbapi/testGrepVerify.cpp:
        Rename: ndb/test/ndbapi/testGrep/verify/testGrepVerify.cpp -> ndb/test/ndbapi/testGrepVerify.cpp
      ndb/test/ndbapi/testIndex.cpp:
        Rename: ndb/test/ndbapi/testIndex/testIndex.cpp -> ndb/test/ndbapi/testIndex.cpp
      ndb/test/ndbapi/testInterpreter.cpp:
        Rename: ndb/test/ndbapi/testInterpreter/testInterpreter.cpp -> ndb/test/ndbapi/testInterpreter.cpp
      ndb/test/ndbapi/testMgm.cpp:
        Rename: ndb/test/ndbapi/testMgm/testMgm.cpp -> ndb/test/ndbapi/testMgm.cpp
      ndb/test/ndbapi/testNdbApi.cpp:
        Rename: ndb/test/ndbapi/testNdbApi/testNdbApi.cpp -> ndb/test/ndbapi/testNdbApi.cpp
      ndb/test/ndbapi/testNodeRestart.cpp:
        Rename: ndb/test/ndbapi/testNodeRestart/testNodeRestart.cpp -> ndb/test/ndbapi/testNodeRestart.cpp
      ndb/test/ndbapi/testOIBasic.cpp:
        Rename: ndb/test/ndbapi/testOIBasic/testOIBasic.cpp -> ndb/test/ndbapi/testOIBasic.cpp
      ndb/test/ndbapi/testOperations.cpp:
        Rename: ndb/test/ndbapi/testOperations/testOperations.cpp -> ndb/test/ndbapi/testOperations.cpp
      ndb/test/ndbapi/testOrderedIndex.cpp:
        Rename: ndb/test/ndbapi/testOrderedIndex/testOrderedIndex.cpp -> ndb/test/ndbapi/testOrderedIndex.cpp
      ndb/test/ndbapi/testRestartGci.cpp:
        Rename: ndb/test/ndbapi/testRestartGci/testRestartGci.cpp -> ndb/test/ndbapi/testRestartGci.cpp
      ndb/test/ndbapi/testScan.cpp:
        Rename: ndb/test/ndbapi/testScan/testScan.cpp -> ndb/test/ndbapi/testScan.cpp
      ndb/test/ndbapi/testScanInterpreter.cpp:
        Rename: ndb/test/ndbapi/testScanInterpreter/testScanInterpreter.cpp -> ndb/test/ndbapi/testScanInterpreter.cpp
      ndb/test/ndbapi/testSystemRestart.cpp:
        Rename: ndb/test/ndbapi/testSystemRestart/testSystemRestart.cpp -> ndb/test/ndbapi/testSystemRestart.cpp
      ndb/test/ndbapi/testTimeout.cpp:
        Rename: ndb/test/ndbapi/testTimeout/testTimeout.cpp -> ndb/test/ndbapi/testTimeout.cpp
      ndb/test/ndbapi/cdrserver.cpp:
        Rename: ndb/test/ndbapi/vw_test/cdrserver.cpp -> ndb/test/ndbapi/cdrserver.cpp
      ndb/test/ndbapi/size.cpp:
        Rename: ndb/test/ndbapi/vw_test/size.cpp -> ndb/test/ndbapi/size.cpp
      ndb/test/ndbapi/testTransactions.cpp:
        Rename: ndb/test/ndbapi/testTransactions/testTransactions.cpp -> ndb/test/ndbapi/testTransactions.cpp
      ndb/test/ndbapi/test_event.cpp:
        Rename: ndb/test/ndbapi/test_event/test_event.cpp -> ndb/test/ndbapi/test_event.cpp
      ndb/tools/delete_all.cpp:
        Rename: ndb/tools/delete_all/delete_all.cpp -> ndb/tools/delete_all.cpp
      ndb/tools/desc.cpp:
        Rename: ndb/tools/desc/desc.cpp -> ndb/tools/desc.cpp
      ndb/tools/drop_index.cpp:
        Rename: ndb/tools/drop_index/drop_index.cpp -> ndb/tools/drop_index.cpp
      ndb/tools/drop_tab.cpp:
        Rename: ndb/tools/drop_tab/drop_tab.cpp -> ndb/tools/drop_tab.cpp
      ndb/tools/listTables.cpp:
        Rename: ndb/tools/list_tables/listTables.cpp -> ndb/tools/listTables.cpp
      ndb/tools/ndbsql.cpp:
        Rename: ndb/tools/ndbsql/ndbsql.cpp -> ndb/tools/ndbsql.cpp
      ndb/tools/select_all.cpp:
        Rename: ndb/tools/select_all/select_all.cpp -> ndb/tools/select_all.cpp
      ndb/tools/select_count.cpp:
        Rename: ndb/tools/select_count/select_count.cpp -> ndb/tools/select_count.cpp
      ndb/test/tools/hugoScanUpdate.cpp:
        Rename: ndb/test/tools/hugoScanUpd.cpp -> ndb/test/tools/hugoScanUpdate.cpp
      ndb/test/tools/hugoPkUpdate.cpp:
        Rename: ndb/test/tools/hugoPkUpd.cpp -> ndb/test/tools/hugoPkUpdate.cpp
      ndb/test/tools/hugoPkDelete.cpp:
        Rename: ndb/test/tools/hugoPkDel.cpp -> ndb/test/tools/hugoPkDelete.cpp
      ndb/tools/Makefile_old:
        Rename: ndb/tools/Makefile -> ndb/tools/Makefile_old
      ndb/test/tools/transproxy.cpp:
        Rename: ndb/tools/transproxy.cpp -> ndb/test/tools/transproxy.cpp
      ndb/test/tools/verify_index.cpp:
        Rename: ndb/tools/verify_index.cpp -> ndb/test/tools/verify_index.cpp
      ndb/test/tools/copy_tab.cpp:
        Rename: ndb/tools/copy_tab.cpp -> ndb/test/tools/copy_tab.cpp
      ndb/test/tools/cpcc.cpp:
        Rename: ndb/tools/cpcc.cpp -> ndb/test/tools/cpcc.cpp
      ndb/test/tools/create_index.cpp:
        Rename: ndb/tools/create_index.cpp -> ndb/test/tools/create_index.cpp
      ndb/test/tools/old_dirs/waiter/Makefile_old:
        mvdir
      ndb/test/tools/old_dirs/waiter/waiter.cpp:
        mvdir
      ndb/test/tools/old_dirs/restart/Makefile:
        mvdir
      ndb/test/tools/old_dirs/hugoScanUpdate/Makefile:
        mvdir
      ndb/test/tools/old_dirs/hugoScanRead/Makefile:
        mvdir
      ndb/test/tools/old_dirs/hugoPkUpdate/Makefile:
        mvdir
      ndb/test/tools/old_dirs/hugoPkReadRecord/Makefile:
        mvdir
      ndb/test/tools/old_dirs/hugoPkRead/Makefile:
        mvdir
      ndb/test/tools/old_dirs/hugoPkDelete/Makefile:
        mvdir
      ndb/test/tools/old_dirs/hugoLockRecords/Makefile:
        mvdir
      ndb/test/tools/old_dirs/hugoLoad/Makefile:
        mvdir
      ndb/test/tools/old_dirs/hugoFill/Makefile:
        mvdir
      ndb/test/tools/old_dirs/hugoCalculator/Makefile:
        mvdir
      ndb/tools/old_dirs/copy_tab/Makefile:
        mvdir
      ndb/tools/old_dirs/cpcc/Makefile:
        mvdir
      ndb/tools/old_dirs/create_index/Makefile:
        mvdir
      ndb/tools/old_dirs/delete_all/Makefile:
        mvdir
      ndb/tools/old_dirs/desc/Makefile:
        mvdir
      ndb/tools/old_dirs/drop_index/Makefile:
        mvdir
      ndb/tools/old_dirs/drop_tab/Makefile:
        mvdir
      ndb/tools/old_dirs/list_tables/Makefile:
        mvdir
      ndb/tools/old_dirs/select_all/Makefile:
        mvdir
      ndb/tools/old_dirs/select_count/Makefile:
        mvdir
      ndb/test/tools/old_dirs/transproxy/Makefile:
        mvdir
      ndb/test/tools/old_dirs/verify_index/Makefile:
        mvdir
      ndb/test/ndbapi/old_dirs/flexTT/Makefile:
        mvdir
      ndb/test/ndbapi/old_dirs/flexTimedAsynch/Makefile:
        mvdir
      ndb/test/ndbapi/old_dirs/flexHammer/Makefile:
        mvdir
      ndb/test/ndbapi/old_dirs/flexHammer/README:
        mvdir
      ndb/test/ndbapi/old_dirs/flexBench/Makefile.am:
        mvdir
      ndb/test/ndbapi/old_dirs/flexBench/Makefile_old:
        mvdir
      ndb/test/ndbapi/old_dirs/flexBench/ndbplot.pl:
        mvdir
      ndb/test/ndbapi/old_dirs/flexAsynch/Makefile:
        mvdir
      ndb/test/ndbapi/old_dirs/drop_all_tabs/Makefile:
        mvdir
      ndb/test/ndbapi/old_dirs/create_tab/Makefile:
        mvdir
      ndb/test/ndbapi/old_dirs/testOIBasic/Makefile:
        mvdir
      ndb/test/ndbapi/old_dirs/testOIBasic/times.txt:
        mvdir
      ndb/test/ndbapi/old_dirs/testNodeRestart/Makefile:
        mvdir
      ndb/test/ndbapi/old_dirs/testOperations/Makefile:
        mvdir
      ndb/test/ndbapi/old_dirs/testBlobs/Makefile:
        mvdir
      ndb/test/ndbapi/old_dirs/testBackup/Makefile:
        mvdir
      ndb/test/ndbapi/old_dirs/testDict/Makefile:
        mvdir
      ndb/test/ndbapi/old_dirs/test_event/Makefile:
        mvdir
      ndb/test/ndbapi/old_dirs/testTransactions/Makefile:
        mvdir
      ndb/test/ndbapi/old_dirs/testTimeout/Makefile:
        mvdir
      ndb/test/ndbapi/old_dirs/testSystemRestart/Makefile:
        mvdir
      ndb/test/ndbapi/old_dirs/testScanInterpreter/Makefile:
        mvdir
      ndb/test/ndbapi/old_dirs/testDataBuffers/Makefile:
        mvdir
      ndb/test/ndbapi/old_dirs/testIndex/Makefile:
        mvdir
      ndb/test/ndbapi/old_dirs/testMgm/Makefile:
        mvdir
      ndb/test/ndbapi/old_dirs/restarter/Makefile:
        mvdir
      ndb/test/ndbapi/old_dirs/flexScan/Makefile:
        mvdir
      ndb/test/ndbapi/old_dirs/flexScan/README:
        mvdir
      ndb/test/ndbapi/old_dirs/testRestartGci/Makefile:
        mvdir
      ndb/test/ndbapi/old_dirs/flex_bench_mysql/Makefile:
        mvdir
      ndb/test/ndbapi/old_dirs/indexTest/Makefile:
        mvdir
      ndb/test/ndbapi/old_dirs/indexTest2/Makefile:
        mvdir
      ndb/test/ndbapi/old_dirs/testBasic/Makefile:
        mvdir
      ndb/test/ndbapi/old_dirs/basicAsynch/Makefile:
        mvdir
      ndb/test/ndbapi/old_dirs/create_all_tabs/Makefile:
        mvdir
      ndb/test/ndbapi/old_dirs/testNdbApi/Makefile:
        mvdir
      ndb/test/ndbapi/old_dirs/testOrderedIndex/Makefile:
        mvdir
      ndb/test/ndbapi/old_dirs/restarter2/Makefile:
        mvdir
      ndb/test/ndbapi/old_dirs/telco/Makefile:
        mvdir
      ndb/test/ndbapi/old_dirs/telco/readme:
        mvdir
      ndb/test/ndbapi/old_dirs/acid/Makefile:
        mvdir
      ndb/test/ndbapi/old_dirs/acid2/Makefile:
        mvdir
      ndb/test/ndbapi/old_dirs/acid2/TraceNdbApi.hpp:
        mvdir
      ndb/test/ndbapi/old_dirs/acid2/VerifyNdbApi.hpp:
        mvdir
      ndb/test/ndbapi/old_dirs/interpreterInTup/Makefile:
        mvdir
      ndb/test/ndbapi/old_dirs/ronja/Makefile:
        mvdir
      ndb/test/ndbapi/old_dirs/ronja/benchronja/Makefile:
        mvdir
      ndb/test/ndbapi/old_dirs/ronja/initronja/Makefile:
        mvdir
      ndb/test/ndbapi/old_dirs/testScan/Makefile:
        mvdir
      ndb/test/ndbapi/old_dirs/vw_test/Makefile:
        mvdir
      ndb/test/ndbapi/old_dirs/vw_test/bcd.h:
        mvdir
      ndb/test/ndbapi/old_dirs/vw_test/utv.h:
        mvdir
      ndb/test/ndbapi/old_dirs/vw_test/vcdrfunc.h:
        mvdir
      ndb/test/ndbapi/old_dirs/vw_test/script/client_start:
        mvdir
      ndb/test/ndbapi/old_dirs/testGrep/Makefile:
        mvdir
      ndb/test/ndbapi/old_dirs/testGrep/verify/Makefile:
        mvdir
      ndb/test/ndbapi/old_dirs/testInterpreter/Makefile:
        mvdir
      ndb/test/ndbapi/old_dirs/restarts/Makefile:
        mvdir
      ndb/test/ndbapi/old_dirs/bulk_copy/Makefile:
        mvdir
      ndb/test/ndbapi/old_dirs/lmc-bench/Makefile:
        mvdir
      ndb/test/ndbapi/old_dirs/lmc-bench/async-src/Makefile:
        mvdir
      ndb/test/ndbapi/old_dirs/lmc-bench/async-src/generator/Makefile:
        mvdir
      ndb/test/ndbapi/old_dirs/lmc-bench/async-src/include/dbGenerator.h:
        mvdir
      ndb/test/ndbapi/old_dirs/lmc-bench/async-src/include/testData.h:
        mvdir
      ndb/test/ndbapi/old_dirs/lmc-bench/async-src/include/userInterface.h:
        mvdir
      ndb/test/ndbapi/old_dirs/lmc-bench/async-src/user/Makefile:
        mvdir
      ndb/test/ndbapi/old_dirs/lmc-bench/async-src/user/macros.h:
        mvdir
      ndb/test/ndbapi/old_dirs/lmc-bench/async-src/user/ndb_error.hpp:
        mvdir
      ndb/test/ndbapi/old_dirs/lmc-bench/bin/.empty:
        mvdir
      ndb/test/ndbapi/old_dirs/lmc-bench/include/ndb_schema.hpp:
        mvdir
      ndb/test/ndbapi/old_dirs/lmc-bench/include/testDefinitions.h:
        mvdir
      ndb/test/ndbapi/old_dirs/lmc-bench/lib/.empty:
        mvdir
      ndb/test/ndbapi/old_dirs/lmc-bench/script/Makefile:
        mvdir
      ndb/test/ndbapi/old_dirs/lmc-bench/script/async-lmc-bench-l-p10.sh:
        mvdir
      ndb/test/ndbapi/old_dirs/lmc-bench/script/async-lmc-bench-l.sh:
        mvdir
      ndb/test/ndbapi/old_dirs/lmc-bench/script/async-lmc-bench-p10.sh:
        mvdir
      ndb/test/ndbapi/old_dirs/lmc-bench/script/async-lmc-bench.sh:
        mvdir
      ndb/test/ndbapi/old_dirs/lmc-bench/src/Makefile:
        mvdir
      ndb/test/ndbapi/old_dirs/lmc-bench/src/README:
        mvdir
      ndb/test/ndbapi/old_dirs/lmc-bench/src/generator/Makefile:
        mvdir
      ndb/test/ndbapi/old_dirs/lmc-bench/src/generator/dbGenerator.c:
        mvdir
      ndb/test/ndbapi/old_dirs/lmc-bench/src/makevars.linux:
        mvdir
      ndb/test/ndbapi/old_dirs/lmc-bench/src/makevars.sparc:
        mvdir
      ndb/test/ndbapi/old_dirs/lmc-bench/src/generator/dbGenerator.h:
        mvdir
      ndb/test/ndbapi/old_dirs/lmc-bench/src/generator/mainGenerator.c:
        mvdir
      ndb/test/ndbapi/old_dirs/lmc-bench/src/include/testData.h:
        mvdir
      ndb/test/ndbapi/old_dirs/lmc-bench/src/include/userInterface.h:
        mvdir
      ndb/test/ndbapi/old_dirs/lmc-bench/src/populator/Makefile:
        mvdir
      ndb/test/ndbapi/old_dirs/lmc-bench/src/populator/dbPopulate.c:
        mvdir
      ndb/test/ndbapi/old_dirs/lmc-bench/src/populator/dbPopulate.h:
        mvdir
      ndb/test/ndbapi/old_dirs/lmc-bench/src/populator/mainPopulate.c:
        mvdir
      ndb/test/ndbapi/old_dirs/lmc-bench/src/user/Makefile:
        mvdir
      ndb/test/ndbapi/old_dirs/lmc-bench/src/user/localDbPrepare.c:
        mvdir
      ndb/test/ndbapi/old_dirs/lmc-bench/src/user/macros.h:
        mvdir
      ndb/test/ndbapi/old_dirs/lmc-bench/src/user/ndb_error.hpp:
        mvdir
      ndb/test/ndbapi/old_dirs/lmc-bench/src/user/old/Makefile:
        mvdir
      ndb/test/ndbapi/old_dirs/lmc-bench/src/user/old/userHandle.h:
        mvdir
      ndb/test/ndbapi/old_dirs/lmc-bench/src/user/old/userInterface.c:
        mvdir
      ndb/test/ndbapi/old_dirs/lmc-bench/src/user/old/userTransaction.c:
        mvdir
      ndb/test/ndbapi/old_dirs/lmc-bench/src/user/userHandle.h:
        mvdir
      ndb/test/ndbapi/old_dirs/lmc-bench/src/user/userInterface.cpp:
        mvdir
      ndb/test/ndbapi/old_dirs/lmc-bench/src/user/userTransaction.c:
        mvdir
      ndb/test/ndbapi/testBasicAsynch.cpp:
        Change mode to -rw-rw-r--
      ndb/tools/old_dirs/ndbnet/Makefile.PL:
        mvdir
      ndb/tools/old_dirs/ndbnet/lib/NDB/Net.pm:
        mvdir
      ndb/tools/old_dirs/ndbnet/lib/NDB/Net/Base.pm:
        mvdir
      ndb/tools/old_dirs/ndbnet/lib/NDB/Net/Client.pm:
        mvdir
      ndb/tools/old_dirs/ndbnet/lib/NDB/Net/Command.pm:
        mvdir
      ndb/tools/old_dirs/ndbnet/lib/NDB/Net/Config.pm:
        mvdir
      ndb/tools/old_dirs/ndbnet/lib/NDB/Run.pm:
        mvdir
      ndb/tools/old_dirs/ndbnet/lib/NDB/Util.pm:
        mvdir
      ndb/tools/old_dirs/ndbnet/ndbnet.pl:
        mvdir
      ndb/tools/old_dirs/ndbnet/ndbnetd.pl:
        mvdir
      ndb/tools/old_dirs/ndbnet/ndbrun:
        mvdir
      ndb/tools/old_dirs/ndbnet/lib/NDB/Net/Database.pm:
        mvdir
      ndb/tools/old_dirs/ndbnet/lib/NDB/Net/Env.pm:
        mvdir
      ndb/tools/old_dirs/ndbnet/lib/NDB/Net/Node.pm:
        mvdir
      ndb/tools/old_dirs/ndbnet/lib/NDB/Net/NodeApi.pm:
        mvdir
      ndb/tools/old_dirs/ndbnet/lib/NDB/Net/NodeDb.pm:
        mvdir
      ndb/tools/old_dirs/ndbnet/lib/NDB/Net/NodeMgmt.pm:
        mvdir
      ndb/tools/old_dirs/ndbnet/lib/NDB/Net/Server.pm:
        mvdir
      ndb/tools/old_dirs/ndbnet/lib/NDB/Net/ServerINET.pm:
        mvdir
      ndb/tools/old_dirs/ndbnet/lib/NDB/Net/ServerUNIX.pm:
        mvdir
      ndb/tools/old_dirs/ndbnet/lib/NDB/Run/Base.pm:
        mvdir
      ndb/tools/old_dirs/ndbnet/lib/NDB/Run/Database.pm:
        mvdir
      ndb/tools/old_dirs/ndbnet/lib/NDB/Run/Env.pm:
        mvdir
      ndb/tools/old_dirs/ndbnet/lib/NDB/Run/Node.pm:
        mvdir
      ndb/tools/old_dirs/ndbnet/lib/NDB/Util/Base.pm:
        mvdir
      ndb/tools/old_dirs/ndbnet/lib/NDB/Util/Dir.pm:
        mvdir
      ndb/tools/old_dirs/ndbnet/lib/NDB/Util/Event.pm:
        mvdir
      ndb/tools/old_dirs/ndbnet/lib/NDB/Util/File.pm:
        mvdir
      ndb/tools/old_dirs/ndbnet/lib/NDB/Util/IO.pm:
        mvdir
      ndb/tools/old_dirs/ndbnet/lib/NDB/Util/Lock.pm:
        mvdir
      ndb/tools/old_dirs/ndbnet/lib/NDB/Util/Log.pm:
        mvdir
      ndb/tools/old_dirs/ndbnet/lib/NDB/Util/Socket.pm:
        mvdir
      ndb/tools/old_dirs/ndbnet/lib/NDB/Util/SocketINET.pm:
        mvdir
      ndb/tools/old_dirs/ndbnet/lib/NDB/Util/SocketUNIX.pm:
        mvdir
      ndb/tools/old_dirs/ndbsql/Makefile:
        mvdir
      ndb/tools/old_dirs/src/counterviewer/CounterViewer.java:
        mvdir
      ndb/test/ndbapi/bank/Bank.hpp:
        mvdir
      ndb/test/ndbapi/bank/Makefile_old:
        Rename: ndb/test/ndbapi/bank/Makefile -> ndb/test/ndbapi/bank/Makefile_old
      ndb/test/ndbapi/bank/old_dirs/bankCreator/Makefile:
        mvdir
      ndb/test/ndbapi/bank/old_dirs/bankSumAccounts/Makefile:
        mvdir
      ndb/test/ndbapi/bank/old_dirs/bankMakeGL/Makefile:
        mvdir
      ndb/test/ndbapi/bank/old_dirs/bankTimer/Makefile:
        mvdir
      ndb/test/ndbapi/bank/old_dirs/bankValidateAllGLs/Makefile:
        mvdir
      ndb/test/ndbapi/bank/old_dirs/bankTransactionMaker/Makefile:
        mvdir
      ndb/test/ndbapi/bank/old_dirs/src/Makefile:
        mvdir
      ndb/test/ndbapi/bank/old_dirs/testBank/Makefile:
        mvdir
      ndb/test/ndbapi/ScanFilter.hpp:
        Rename: ndb/test/ndbapi/old_dirs/testScanInterpreter/ScanFilter.hpp -> ndb/test/ndbapi/ScanFilter.hpp
      ndb/test/ndbapi/ScanInterpretTest.hpp:
        Rename: ndb/test/ndbapi/old_dirs/testScanInterpreter/ScanInterpretTest.hpp -> ndb/test/ndbapi/ScanInterpretTest.hpp
      ndb/test/ndbapi/ScanFunctions.hpp:
        Rename: ndb/test/ndbapi/old_dirs/testScan/ScanFunctions.hpp -> ndb/test/ndbapi/ScanFunctions.hpp
      72790bb9