mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
ndb - scan bug fix + more test cases
ndb/include/ndbapi/NdbScanOperation.hpp: Improved doc. a bit ndb/src/ndbapi/NdbConnectionScan.cpp: Set error code ndb/src/ndbapi/NdbScanOperation.cpp: Check error directly after taking mutex ndb/test/ndbapi/testScan.cpp: new scan test with lots of threads ndb/test/run-test/daily-basic-tests.txt: Added two more scan tests Collapsed testTransactions & testOperations
This commit is contained in:
@ -127,14 +127,23 @@ protected:
|
||||
NdbReceiver** m_receivers; // All receivers
|
||||
|
||||
Uint32* m_prepared_receivers; // These are to be sent
|
||||
|
||||
|
||||
/**
|
||||
* owned by API/user thread
|
||||
*/
|
||||
Uint32 m_current_api_receiver;
|
||||
Uint32 m_api_receivers_count;
|
||||
NdbReceiver** m_api_receivers; // These are currently used by api
|
||||
|
||||
/**
|
||||
* owned by receiver thread
|
||||
*/
|
||||
Uint32 m_conf_receivers_count; // NOTE needs mutex to access
|
||||
NdbReceiver** m_conf_receivers; // receive thread puts them here
|
||||
|
||||
/**
|
||||
* owned by receiver thread
|
||||
*/
|
||||
Uint32 m_sent_receivers_count; // NOTE needs mutex to access
|
||||
NdbReceiver** m_sent_receivers; // receive thread puts them here
|
||||
|
||||
|
Reference in New Issue
Block a user