mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
wl2135 - ndb api test prg
ndb/test/include/NDBT_ResultRow.hpp: Completely new verifyOrderedIndex which utilies new wl2135 functionality + more utility functions ndb/test/include/UtilTransactions.hpp: Completely new verifyOrderedIndex which utilies new wl2135 functionality + more utility functions ndb/test/src/NDBT_ResultRow.cpp: Completely new verifyOrderedIndex which utilies new wl2135 functionality + more utility functions ndb/test/src/UtilTransactions.cpp: Completely new verifyOrderedIndex which utilies new wl2135 functionality + more utility functions
This commit is contained in:
@ -87,19 +87,30 @@ private:
|
||||
|
||||
|
||||
int verifyUniqueIndex(Ndb*,
|
||||
const char* indexName,
|
||||
const NdbDictionary::Index *,
|
||||
int parallelism = 0,
|
||||
bool transactional = false);
|
||||
|
||||
|
||||
int scanAndCompareUniqueIndex(Ndb* pNdb,
|
||||
const char * indexName,
|
||||
const NdbDictionary::Index *,
|
||||
int parallelism,
|
||||
bool transactional);
|
||||
|
||||
int readRowFromTableAndIndex(Ndb* pNdb,
|
||||
NdbConnection* pTrans,
|
||||
const char * indexName,
|
||||
const NdbDictionary::Index *,
|
||||
NDBT_ResultRow& row );
|
||||
|
||||
int verifyOrderedIndex(Ndb*,
|
||||
const NdbDictionary::Index *,
|
||||
int parallelism = 0,
|
||||
bool transactional = false);
|
||||
|
||||
|
||||
int get_values(NdbOperation* op, NDBT_ResultRow& dst);
|
||||
int equal(const NdbDictionary::Table*, NdbOperation*, const NDBT_ResultRow&);
|
||||
int equal(const NdbDictionary::Index*, NdbOperation*, const NDBT_ResultRow&);
|
||||
|
||||
protected:
|
||||
int m_defaultClearMethod;
|
||||
const NdbDictionary::Table& tab;
|
||||
|
Reference in New Issue
Block a user