mirror of
https://github.com/MariaDB/server.git
synced 2025-09-02 09:41:40 +03:00
Merge poseidon.mysql.com:/home/tomas/mysql-5.0-telco-gca
into poseidon.mysql.com:/home/tomas/mysql-5.1-telco-gca
This commit is contained in:
@@ -212,7 +212,8 @@ public:
|
|||||||
NullablePrimaryKey = 740,
|
NullablePrimaryKey = 740,
|
||||||
UnsupportedChange = 741,
|
UnsupportedChange = 741,
|
||||||
BackupInProgress = 762,
|
BackupInProgress = 762,
|
||||||
IncompatibleVersions = 763
|
IncompatibleVersions = 763,
|
||||||
|
SingleUser = 299
|
||||||
};
|
};
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
@@ -208,6 +208,7 @@ public:
|
|||||||
AllocationError = 4252,
|
AllocationError = 4252,
|
||||||
CreateIndexTableFailed = 4253,
|
CreateIndexTableFailed = 4253,
|
||||||
DuplicateAttributes = 4258,
|
DuplicateAttributes = 4258,
|
||||||
|
SingleUser = 299,
|
||||||
TableIsTemporary = 776,
|
TableIsTemporary = 776,
|
||||||
TableIsNotTemporary = 777,
|
TableIsNotTemporary = 777,
|
||||||
NoLoggingTemporaryIndex = 778
|
NoLoggingTemporaryIndex = 778
|
||||||
|
@@ -92,6 +92,7 @@ public:
|
|||||||
InvalidPrimaryKeySize = 739,
|
InvalidPrimaryKeySize = 739,
|
||||||
NullablePrimaryKey = 740,
|
NullablePrimaryKey = 740,
|
||||||
InvalidCharset = 743,
|
InvalidCharset = 743,
|
||||||
|
SingleUser = 299,
|
||||||
InvalidTablespace = 755,
|
InvalidTablespace = 755,
|
||||||
VarsizeBitfieldNotSupported = 757,
|
VarsizeBitfieldNotSupported = 757,
|
||||||
NotATablespace = 758,
|
NotATablespace = 758,
|
||||||
|
@@ -172,7 +172,8 @@ public:
|
|||||||
IndexNotFound = 4243,
|
IndexNotFound = 4243,
|
||||||
BadRequestType = 4247,
|
BadRequestType = 4247,
|
||||||
InvalidName = 4248,
|
InvalidName = 4248,
|
||||||
NotAnIndex = 4254
|
NotAnIndex = 4254,
|
||||||
|
SingleUser = 299
|
||||||
};
|
};
|
||||||
STATIC_CONST( SignalLength = DropIndxConf::SignalLength + 3 );
|
STATIC_CONST( SignalLength = DropIndxConf::SignalLength + 3 );
|
||||||
|
|
||||||
|
@@ -58,7 +58,8 @@ public:
|
|||||||
InvalidTableVersion = 241,
|
InvalidTableVersion = 241,
|
||||||
DropInProgress = 283,
|
DropInProgress = 283,
|
||||||
NoDropTableRecordAvailable = 1229,
|
NoDropTableRecordAvailable = 1229,
|
||||||
BackupInProgress = 761
|
BackupInProgress = 761,
|
||||||
|
SingleUser = 299
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@@ -96,6 +96,8 @@ printPACKED_SIGNAL(FILE * output, const Uint32 * theData, Uint32 len, Uint16 rec
|
|||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
fprintf(output, "Unknown signal type\n");
|
fprintf(output, "Unknown signal type\n");
|
||||||
|
i = len; // terminate printing
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
}//for
|
}//for
|
||||||
fprintf(output, "--------- End Packed Signals ----------\n");
|
fprintf(output, "--------- End Packed Signals ----------\n");
|
||||||
|
@@ -3759,6 +3759,15 @@ Dbdict::execCREATE_TABLE_REQ(Signal* signal){
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(getNodeState().getSingleUserMode() &&
|
||||||
|
(refToNode(signal->getSendersBlockRef()) !=
|
||||||
|
getNodeState().getSingleUserApi()))
|
||||||
|
{
|
||||||
|
jam();
|
||||||
|
parseRecord.errorCode = CreateTableRef::SingleUser;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
CreateTableRecordPtr createTabPtr;
|
CreateTableRecordPtr createTabPtr;
|
||||||
c_opCreateTable.seize(createTabPtr);
|
c_opCreateTable.seize(createTabPtr);
|
||||||
|
|
||||||
@@ -3951,6 +3960,15 @@ Dbdict::execALTER_TABLE_REQ(Signal* signal)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(getNodeState().getSingleUserMode() &&
|
||||||
|
(refToNode(signal->getSendersBlockRef()) !=
|
||||||
|
getNodeState().getSingleUserApi()))
|
||||||
|
{
|
||||||
|
jam();
|
||||||
|
alterTableRef(signal, req, AlterTableRef::SingleUser);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
const TableRecord::TabState tabState = tablePtr.p->tabState;
|
const TableRecord::TabState tabState = tablePtr.p->tabState;
|
||||||
bool ok = false;
|
bool ok = false;
|
||||||
switch(tabState){
|
switch(tabState){
|
||||||
@@ -6550,6 +6568,15 @@ Dbdict::execDROP_TABLE_REQ(Signal* signal){
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(getNodeState().getSingleUserMode() &&
|
||||||
|
(refToNode(signal->getSendersBlockRef()) !=
|
||||||
|
getNodeState().getSingleUserApi()))
|
||||||
|
{
|
||||||
|
jam();
|
||||||
|
dropTableRef(signal, req, DropTableRef::SingleUser);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
const TableRecord::TabState tabState = tablePtr.p->tabState;
|
const TableRecord::TabState tabState = tablePtr.p->tabState;
|
||||||
bool ok = false;
|
bool ok = false;
|
||||||
switch(tabState){
|
switch(tabState){
|
||||||
@@ -7758,6 +7785,13 @@ Dbdict::execCREATE_INDX_REQ(Signal* signal)
|
|||||||
jam();
|
jam();
|
||||||
tmperr = CreateIndxRef::Busy;
|
tmperr = CreateIndxRef::Busy;
|
||||||
}
|
}
|
||||||
|
else if(getNodeState().getSingleUserMode() &&
|
||||||
|
(refToNode(senderRef) !=
|
||||||
|
getNodeState().getSingleUserApi()))
|
||||||
|
{
|
||||||
|
jam();
|
||||||
|
tmperr = CreateIndxRef::SingleUser;
|
||||||
|
}
|
||||||
if (tmperr != CreateIndxRef::NoError) {
|
if (tmperr != CreateIndxRef::NoError) {
|
||||||
releaseSections(signal);
|
releaseSections(signal);
|
||||||
OpCreateIndex opBusy;
|
OpCreateIndex opBusy;
|
||||||
@@ -8401,6 +8435,13 @@ Dbdict::execDROP_INDX_REQ(Signal* signal)
|
|||||||
jam();
|
jam();
|
||||||
tmperr = DropIndxRef::Busy;
|
tmperr = DropIndxRef::Busy;
|
||||||
}
|
}
|
||||||
|
else if(getNodeState().getSingleUserMode() &&
|
||||||
|
(refToNode(senderRef) !=
|
||||||
|
getNodeState().getSingleUserApi()))
|
||||||
|
{
|
||||||
|
jam();
|
||||||
|
tmperr = DropIndxRef::SingleUser;
|
||||||
|
}
|
||||||
if (tmperr != DropIndxRef::NoError) {
|
if (tmperr != DropIndxRef::NoError) {
|
||||||
err = tmperr;
|
err = tmperr;
|
||||||
goto error;
|
goto error;
|
||||||
|
@@ -283,6 +283,7 @@ ErrorBundle ErrorCodes[] = {
|
|||||||
/**
|
/**
|
||||||
* Application error
|
* Application error
|
||||||
*/
|
*/
|
||||||
|
{ 299, DMEC, AE, "Operation not allowed or aborted due to single user mode" },
|
||||||
{ 763, DMEC, AE, "Alter table requires cluster nodes to have exact same version" },
|
{ 763, DMEC, AE, "Alter table requires cluster nodes to have exact same version" },
|
||||||
{ 823, DMEC, AE, "Too much attrinfo from application in tuple manager" },
|
{ 823, DMEC, AE, "Too much attrinfo from application in tuple manager" },
|
||||||
{ 831, DMEC, AE, "Too many nullable/bitfields in table definition" },
|
{ 831, DMEC, AE, "Too many nullable/bitfields in table definition" },
|
||||||
|
Reference in New Issue
Block a user