Commit f74303af authored by unknown's avatar unknown

Merge tulin@bk-internal.mysql.com:/home/bk/mysql-4.1

into poseidon.ndb.mysql.com:/home/tomas/mysql-4.1-ndb

parents 8c391e7c 2f6dc470
...@@ -1144,6 +1144,7 @@ dnl Is this the right match for DEC OSF on alpha? ...@@ -1144,6 +1144,7 @@ dnl Is this the right match for DEC OSF on alpha?
# gethostbyname_r is deprecated and doesn't work ok on OSF1 # gethostbyname_r is deprecated and doesn't work ok on OSF1
CFLAGS="$CFLAGS -DUNDEF_HAVE_GETHOSTBYNAME_R" CFLAGS="$CFLAGS -DUNDEF_HAVE_GETHOSTBYNAME_R"
CXXFLAGS="$CXXFLAGS -DUNDEF_HAVE_GETHOSTBYNAME_R" CXXFLAGS="$CXXFLAGS -DUNDEF_HAVE_GETHOSTBYNAME_R"
ndb_cxxflags_fix="$ndb_cxxflags_fix -I/usr/include.dtk"
;; ;;
*netware*) *netware*)
# No need for curses library so set it to null # No need for curses library so set it to null
......
#ifndef NDB_UPGRADE_STARTUP #ifndef NDB_UPGRADE_STARTUP
#define NDB_UPGRADE_STARTUP #define NDB_UPGRADE_STARTUP
class Ndbcntr;
struct UpgradeStartup { struct UpgradeStartup {
static void installEXEC(SimulatedBlock*); static void installEXEC(SimulatedBlock*);
......
...@@ -13,6 +13,9 @@ ...@@ -13,6 +13,9 @@
#undef NDB_WIN32 #undef NDB_WIN32
#endif #endif
#ifdef _AIX
#undef _H_STRINGS
#endif
#include <m_string.h> #include <m_string.h>
#include <m_ctype.h> #include <m_ctype.h>
#include <ndb_types.h> #include <ndb_types.h>
......
...@@ -33,7 +33,7 @@ typedef unsigned int UintR; ...@@ -33,7 +33,7 @@ typedef unsigned int UintR;
#ifdef __SIZE_TYPE__ #ifdef __SIZE_TYPE__
typedef __SIZE_TYPE__ UintPtr; typedef __SIZE_TYPE__ UintPtr;
#else #else
#include <my_global.h> #include <ndb_global.h>
#ifdef HAVE_STDINT_H #ifdef HAVE_STDINT_H
#include <stdint.h> #include <stdint.h>
#endif #endif
......
...@@ -881,6 +881,7 @@ class Table; ...@@ -881,6 +881,7 @@ class Table;
class BaseString; class BaseString;
class NdbEventOperation; class NdbEventOperation;
class NdbBlob; class NdbBlob;
class NdbReceiver;
typedef void (* NdbEventCallback)(NdbEventOperation*, Ndb*, void*); typedef void (* NdbEventCallback)(NdbEventOperation*, Ndb*, void*);
......
...@@ -22,6 +22,8 @@ ...@@ -22,6 +22,8 @@
#include <ndb_global.h> #include <ndb_global.h>
class Ndb; class Ndb;
class NdbConnection;
class NdbReceiver class NdbReceiver
{ {
friend class Ndb; friend class Ndb;
......
...@@ -32,6 +32,7 @@ ...@@ -32,6 +32,7 @@
#include <NdbOperation.hpp> #include <NdbOperation.hpp>
class NdbBlob; class NdbBlob;
class NdbResultSet;
/** /**
* @class NdbScanOperation * @class NdbScanOperation
......
#include <ndb_global.h>
#include <ConfigValues.hpp> #include <ConfigValues.hpp>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>
#include <new>
#include <NdbOut.hpp> #include <NdbOut.hpp>
#include <NdbTCP.h> #include <NdbTCP.h>
......
...@@ -91,7 +91,7 @@ class TupleS { ...@@ -91,7 +91,7 @@ class TupleS {
private: private:
friend class RestoreDataIterator; friend class RestoreDataIterator;
TableS *m_currentTable; class TableS *m_currentTable;
AttributeData *allAttrData; AttributeData *allAttrData;
bool prepareRecord(TableS &); bool prepareRecord(TableS &);
......
...@@ -35,14 +35,6 @@ ...@@ -35,14 +35,6 @@
#define ZMIN_PAGE_LIMIT_TUPKEYREQ 5 #define ZMIN_PAGE_LIMIT_TUPKEYREQ 5
#define ZTUP_VERSION_BITS 15 #define ZTUP_VERSION_BITS 15
typedef bool (Dbtup::* ReadFunction)(Uint32*,
AttributeHeader*,
Uint32,
Uint32);
typedef bool (Dbtup::* UpdateFunction)(Uint32*,
Uint32,
Uint32);
#ifdef DBTUP_C #ifdef DBTUP_C
//------------------------------------------------------------------ //------------------------------------------------------------------
// Jam Handling: // Jam Handling:
...@@ -351,6 +343,14 @@ typedef bool (Dbtup::* UpdateFunction)(Uint32*, ...@@ -351,6 +343,14 @@ typedef bool (Dbtup::* UpdateFunction)(Uint32*,
class Dbtup: public SimulatedBlock { class Dbtup: public SimulatedBlock {
public: public:
typedef bool (Dbtup::* ReadFunction)(Uint32*,
AttributeHeader*,
Uint32,
Uint32);
typedef bool (Dbtup::* UpdateFunction)(Uint32*,
Uint32,
Uint32);
// State values // State values
enum State { enum State {
NOT_INITIALIZED = 0, NOT_INITIALIZED = 0,
......
...@@ -14,8 +14,7 @@ ...@@ -14,8 +14,7 @@
along with this program; if not, write to the Free Software along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
#include <string.h> #include <ndb_global.h>
#include "SignalQueue.hpp" #include "SignalQueue.hpp"
SignalQueue::SignalQueue() { SignalQueue::SignalQueue() {
......
...@@ -15,8 +15,8 @@ ...@@ -15,8 +15,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
#include <ndb_global.h>
#include <mgmapi.h> #include <mgmapi.h>
#include <string.h>
#include <NdbMain.h> #include <NdbMain.h>
#include <NdbOut.hpp> #include <NdbOut.hpp>
#include <NdbSleep.h> #include <NdbSleep.h>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment