mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Merge perch.ndb.mysql.com:/home/jonas/src/50-work
into perch.ndb.mysql.com:/home/jonas/src/mysql-5.0-ndb mysql-test/r/ndb_basic.result: Auto merged mysql-test/t/ndb_basic.test: Auto merged ndb/src/kernel/blocks/dblqh/Dblqh.hpp: Auto merged ndb/src/kernel/blocks/dblqh/DblqhMain.cpp: Auto merged ndb/src/kernel/blocks/dbtup/DbtupExecQuery.cpp: Auto merged
This commit is contained in:
@ -667,6 +667,12 @@ counter datavalue
|
||||
57 newval
|
||||
58 newval
|
||||
drop table t1;
|
||||
create table t1 (a int primary key auto_increment) engine = ndb;
|
||||
insert into t1() values (),(),(),(),(),(),(),(),(),(),(),();
|
||||
insert into t1(a) values (20),(28);
|
||||
insert into t1() values (),(),(),(),(),(),(),(),(),(),(),();
|
||||
insert into t1() values (21), (22);
|
||||
drop table t1;
|
||||
CREATE TABLE t1 ( b INT ) PACK_KEYS = 0 ENGINE = ndb;
|
||||
select * from t1;
|
||||
b
|
||||
|
@ -606,6 +606,21 @@ select * from t1 order by counter;
|
||||
|
||||
drop table t1;
|
||||
|
||||
#
|
||||
# bug#27437
|
||||
connection con1;
|
||||
create table t1 (a int primary key auto_increment) engine = ndb;
|
||||
insert into t1() values (),(),(),(),(),(),(),(),(),(),(),();
|
||||
connection con2;
|
||||
insert into t1(a) values (20),(28);
|
||||
connection con1;
|
||||
insert into t1() values (),(),(),(),(),(),(),(),(),(),(),();
|
||||
connection con2;
|
||||
insert into t1() values (21), (22);
|
||||
connection con1;
|
||||
|
||||
drop table t1;
|
||||
|
||||
#
|
||||
# BUG#14514 Creating table with packed key fails silently
|
||||
#
|
||||
|
@ -2059,6 +2059,9 @@ public:
|
||||
Uint8 simpleRead;
|
||||
Uint8 seqNoReplica;
|
||||
Uint8 tcNodeFailrec;
|
||||
#ifdef VM_TRACE
|
||||
Uint8 tupkeyref;
|
||||
#endif
|
||||
}; /* p2c: size = 280 bytes */
|
||||
|
||||
typedef Ptr<TcConnectionrec> TcConnectionrecPtr;
|
||||
|
@ -2765,6 +2765,12 @@ void Dblqh::execTUPKEYREF(Signal* signal)
|
||||
tcConnectptr.i = tupKeyRef->userRef;
|
||||
terrorCode = tupKeyRef->errorCode;
|
||||
ptrCheckGuard(tcConnectptr, ctcConnectrecFileSize, tcConnectionrec);
|
||||
|
||||
#ifdef VM_TRACE
|
||||
ndbrequire(tcConnectptr.p->tupkeyref == 0);
|
||||
tcConnectptr.p->tupkeyref = 1;
|
||||
#endif
|
||||
|
||||
switch (tcConnectptr.p->transactionState) {
|
||||
case TcConnectionrec::WAIT_TUP:
|
||||
jam();
|
||||
@ -3330,6 +3336,10 @@ void Dblqh::seizeTcrec()
|
||||
locTcConnectptr.p->tcTimer = cLqhTimeOutCount;
|
||||
locTcConnectptr.p->tableref = RNIL;
|
||||
locTcConnectptr.p->savePointId = 0;
|
||||
#ifdef VM_TRACE
|
||||
locTcConnectptr.p->tupkeyref = 0;
|
||||
#endif
|
||||
|
||||
cfirstfreeTcConrec = nextTc;
|
||||
tcConnectptr = locTcConnectptr;
|
||||
locTcConnectptr.p->connectState = TcConnectionrec::CONNECTED;
|
||||
@ -5860,6 +5870,10 @@ void Dblqh::completeUnusualLab(Signal* signal)
|
||||
void Dblqh::releaseTcrec(Signal* signal, TcConnectionrecPtr locTcConnectptr)
|
||||
{
|
||||
jam();
|
||||
#ifdef VM_TRACE
|
||||
locTcConnectptr.p->tupkeyref = 0;
|
||||
#endif
|
||||
|
||||
locTcConnectptr.p->tcTimer = 0;
|
||||
locTcConnectptr.p->transactionState = TcConnectionrec::TC_NOT_CONNECTED;
|
||||
locTcConnectptr.p->nextTcConnectrec = cfirstfreeTcConrec;
|
||||
@ -5882,6 +5896,9 @@ void Dblqh::releaseTcrec(Signal* signal, TcConnectionrecPtr locTcConnectptr)
|
||||
void Dblqh::releaseTcrecLog(Signal* signal, TcConnectionrecPtr locTcConnectptr)
|
||||
{
|
||||
jam();
|
||||
#ifdef VM_TRACE
|
||||
locTcConnectptr.p->tupkeyref = 0;
|
||||
#endif
|
||||
locTcConnectptr.p->tcTimer = 0;
|
||||
locTcConnectptr.p->transactionState = TcConnectionrec::TC_NOT_CONNECTED;
|
||||
locTcConnectptr.p->nextTcConnectrec = cfirstfreeTcConrec;
|
||||
|
@ -1138,7 +1138,11 @@ Dbtup::updateStartLab(Signal* signal,
|
||||
regOperPtr->attrinbufLen);
|
||||
} else {
|
||||
jam();
|
||||
retValue = interpreterStartLab(signal, pagePtr, regOperPtr->pageOffset);
|
||||
if (interpreterStartLab(signal, pagePtr, regOperPtr->pageOffset) == -1)
|
||||
{
|
||||
jam();
|
||||
return -1;
|
||||
}
|
||||
}//if
|
||||
|
||||
if (retValue == -1) {
|
||||
|
Reference in New Issue
Block a user