mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Merge pnousiainen@bk-internal.mysql.com:/home/bk/mysql-4.1-ndb
into mysql.com:/space/pekka/ndb/version/my41-cc
This commit is contained in:
@ -89,7 +89,8 @@ public:
|
||||
ArraySizeTooBig = 737,
|
||||
RecordTooBig = 738,
|
||||
InvalidPrimaryKeySize = 739,
|
||||
NullablePrimaryKey = 740
|
||||
NullablePrimaryKey = 740,
|
||||
InvalidCharset = 743
|
||||
};
|
||||
|
||||
private:
|
||||
|
@ -130,7 +130,7 @@ private:
|
||||
Uint32 keyLength;
|
||||
Uint32 nextLCP;
|
||||
Uint32 noOfKeyAttr;
|
||||
Uint32 noOfNewAttr;
|
||||
Uint32 noOfNewAttr; // noOfCharsets in upper half
|
||||
Uint32 checksumIndicator;
|
||||
Uint32 noOfAttributeGroups;
|
||||
Uint32 GCPIndicator;
|
||||
|
@ -119,12 +119,13 @@ class TupAddAttrReq {
|
||||
friend class Dblqh;
|
||||
friend class Dbtux;
|
||||
public:
|
||||
STATIC_CONST( SignalLength = 4 );
|
||||
STATIC_CONST( SignalLength = 5 );
|
||||
private:
|
||||
Uint32 tupConnectPtr;
|
||||
Uint32 notused1;
|
||||
Uint32 attrId;
|
||||
Uint32 attrDescriptor;
|
||||
Uint32 extTypeInfo;
|
||||
};
|
||||
|
||||
class TupAddAttrConf {
|
||||
@ -141,6 +142,10 @@ class TupAddAttrRef {
|
||||
friend class Dbtup;
|
||||
public:
|
||||
STATIC_CONST( SignalLength = 2 );
|
||||
enum ErrorCode {
|
||||
NoError = 0,
|
||||
InvalidCharset = 743
|
||||
};
|
||||
private:
|
||||
Uint32 userPtr;
|
||||
Uint32 errorCode;
|
||||
@ -178,7 +183,8 @@ public:
|
||||
STATIC_CONST( SignalLength = 2 );
|
||||
enum ErrorCode {
|
||||
NoError = 0,
|
||||
InvalidAttributeType = 831,
|
||||
InvalidAttributeType = 742,
|
||||
InvalidCharset = 743,
|
||||
InvalidNodeSize = 832
|
||||
};
|
||||
private:
|
||||
|
Reference in New Issue
Block a user