summaryrefslogtreecommitdiff
path: root/ndb
diff options
context:
space:
mode:
authorjoreland@mysql.com <>2004-10-05 13:51:32 +0200
committerjoreland@mysql.com <>2004-10-05 13:51:32 +0200
commitac7771becd8c4d42fd762c503432dd675db819e1 (patch)
treee403546bc11ff102f310670b7f52152ef874e780 /ndb
parent0a8bbe4d8598c310a6267f76b9a220e4ee39f969 (diff)
downloadmariadb-git-ac7771becd8c4d42fd762c503432dd675db819e1.tar.gz
Don't need to scan exclusive since keyinfo is sent anyway
Diffstat (limited to 'ndb')
-rw-r--r--ndb/test/ndbapi/testBlobs.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ndb/test/ndbapi/testBlobs.cpp b/ndb/test/ndbapi/testBlobs.cpp
index e18f4a8bd1a..41bb82f3e06 100644
--- a/ndb/test/ndbapi/testBlobs.cpp
+++ b/ndb/test/ndbapi/testBlobs.cpp
@@ -1030,7 +1030,7 @@ readScan(int style, bool idx)
} else {
CHK((g_ops = g_con->getNdbIndexScanOperation(g_opt.m_x2name, g_opt.m_tname)) != 0);
}
- CHK((rs = g_ops->readTuples(NdbScanOperation::LM_Exclusive)) != 0);
+ CHK((rs = g_ops->readTuples(NdbScanOperation::LM_Read)) != 0);
CHK(g_ops->getValue("PK1", (char*)&tup.m_pk1) != 0);
if (g_opt.m_pk2len != 0)
CHK(g_ops->getValue("PK2", tup.m_pk2) != 0);