mirror of
https://github.com/MariaDB/server.git
synced 2026-05-10 00:54:30 +02:00
bug#10953 - ndb - scan read wo/ getvalue cause NF (during NR)
ndb/src/kernel/blocks/dbtup/DbtupBuffer.cpp: Don't send 0 length transid_ai ndb/test/run-test/ndb-autotest.sh: fix vars
This commit is contained in:
parent
78d484871a
commit
76e92a1bdb
2 changed files with 4 additions and 1 deletions
|
|
@ -133,6 +133,9 @@ void Dbtup::sendReadAttrinfo(Signal* signal,
|
|||
Uint32 ToutBufIndex,
|
||||
const Operationrec * const regOperPtr)
|
||||
{
|
||||
if(ToutBufIndex == 0)
|
||||
return;
|
||||
|
||||
const BlockReference recBlockref = regOperPtr->recBlockref;
|
||||
const Uint32 sig0 = regOperPtr->tcOperationPtr;
|
||||
const Uint32 sig1 = regOperPtr->transid1;
|
||||
|
|
|
|||
|
|
@ -76,7 +76,7 @@ fi
|
|||
# Validate that all interesting
|
||||
# variables where set in conf
|
||||
###############################
|
||||
vars="target base_dir src_clone install_dir build_dir hosts configure"
|
||||
vars="target base_dir src_clone_base install_dir build_dir hosts configure"
|
||||
if [ "$report" ]
|
||||
then
|
||||
vars="$vars result_host result_path"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue