tests for transaction RAII behaviour, transaction documentation, minor doc fixes
All checks were successful
Main LMDBAL workfow / Archlinux (push) Successful in 37s
All checks were successful
Main LMDBAL workfow / Archlinux (push) Successful in 37s
This commit is contained in:
parent
de741eda21
commit
6b348023bb
@ -1,12 +1,12 @@
|
|||||||
/*! \mainpage Getting Started
|
/*! \mainpage Getting Started
|
||||||
*
|
*
|
||||||
* Everything begins with a data nase represented by the class LMDBAL::Base.
|
* Everything begins with a data base represented by the class LMDBAL::Base.
|
||||||
* It repesents a collection of key-value storages that are going to be stored in a sigle data base directory.
|
* It repesents a collection of key-value storages that are going to be stored in a sigle data base directory.
|
||||||
* To create a LMDBAL::Base you need to pick up a name of a directory that is going to be created on your machine.
|
* To create a LMDBAL::Base you need to pick up a name of a directory that is going to be created on your machine.
|
||||||
*
|
*
|
||||||
* LMDBAL::Base creates or opens existing directory with the given name in the location acquired with
|
* LMDBAL::Base creates or opens existing directory with the given name in the location acquired with
|
||||||
* <a class="el" href="https://doc.qt.io/qt-6/qstandardpaths.html">QStandardPaths</a>::<a class="el" href="https://doc.qt.io/qt-6/qstandardpaths.html#writableLocation">writableLocation</a>(<a class="el" href="https://doc.qt.io/qt-6/qstandardpaths.html">QStandardPaths</a>::<a class="el" href="https://doc.qt.io/qt-6/qstandardpaths.html#StandardLocation-enum">CacheLocation</a>)
|
* <a class="el" href="https://doc.qt.io/qt-6/qstandardpaths.html">QStandardPaths</a>::<a class="el" href="https://doc.qt.io/qt-6/qstandardpaths.html#writableLocation">writableLocation</a>(<a class="el" href="https://doc.qt.io/qt-6/qstandardpaths.html">QStandardPaths</a>::<a class="el" href="https://doc.qt.io/qt-6/qstandardpaths.html#StandardLocation-enum">CacheLocation</a>)
|
||||||
* so, the file system destination of your data would depend on the
|
* so, the file system destination of your data depends on the
|
||||||
* <a class="el" href="https://doc.qt.io/qt-6/qcoreapplication.html">QCoreApplication</a> configuration of your app.
|
* <a class="el" href="https://doc.qt.io/qt-6/qcoreapplication.html">QCoreApplication</a> configuration of your app.
|
||||||
*
|
*
|
||||||
* After you have created a LMDBAL::Base you probably want to obtain storage handlers.
|
* After you have created a LMDBAL::Base you probably want to obtain storage handlers.
|
||||||
@ -15,10 +15,10 @@
|
|||||||
* <a class="el" href="https://en.cppreference.com/w/cpp/container/map">std::map</a>
|
* <a class="el" href="https://en.cppreference.com/w/cpp/container/map">std::map</a>
|
||||||
* to speed up the access.
|
* to speed up the access.
|
||||||
*
|
*
|
||||||
* You can obtain handlers by calling LMDBAL::Base::addStorage(const std::string&, bool) or LMDBAL::Base::addCache(const std::string& name).
|
* You can obtain handlers by calling LMDBAL::Base::addStorage() or LMDBAL::Base::addCache().
|
||||||
* Note that the handlers still belong to the LMDBAL::Base and it's his responsibility to destroy them.
|
* Note that the handlers still belong to the LMDBAL::Base and it's his responsibility to destroy them.
|
||||||
* You are not obliged to save those handlers,
|
* You are not obliged to save those handlers,
|
||||||
* you can obtain them at any time later using methods LMDBAL::Base::getStorage(const std::string&) or LMDBAL::Base::getCache(const std::string&)
|
* you can obtain them at any time later using methods LMDBAL::Base::getStorage() or LMDBAL::Base::getCache()
|
||||||
* calling them with the same template types and names.
|
* calling them with the same template types and names.
|
||||||
*
|
*
|
||||||
* After you have added all the storages you wanted it's time to open the data base with LMDBAL::Base::open().
|
* After you have added all the storages you wanted it's time to open the data base with LMDBAL::Base::open().
|
||||||
|
18
src/base.cpp
18
src/base.cpp
@ -216,6 +216,14 @@ void LMDBAL::Base::drop() {
|
|||||||
/**
|
/**
|
||||||
* \brief Begins read-only transaction
|
* \brief Begins read-only transaction
|
||||||
*
|
*
|
||||||
|
* This is the legitimate way to retrieve LMDBAL::Transaction.
|
||||||
|
* LMDBAL::Transaction is considered runnig right after creation by this method.
|
||||||
|
* You can terminate transaction manually calling LMDBAL::Transaction::terminate
|
||||||
|
* but it's not required, because transaction will be terminated automatically
|
||||||
|
* (if it was not terminated manually) upon the call of the destructor.
|
||||||
|
*
|
||||||
|
* You can not use termitated transaction any more.
|
||||||
|
*
|
||||||
* \returns read-only transaction
|
* \returns read-only transaction
|
||||||
*
|
*
|
||||||
* \exception LMDBAL::Closed - thrown if the database is closed
|
* \exception LMDBAL::Closed - thrown if the database is closed
|
||||||
@ -229,6 +237,16 @@ LMDBAL::Transaction LMDBAL::Base::beginReadOnlyTransaction() const {
|
|||||||
/**
|
/**
|
||||||
* \brief Begins writable transaction
|
* \brief Begins writable transaction
|
||||||
*
|
*
|
||||||
|
* This is the legitimate way to retrieve LMDBAL::WriteTransaction.
|
||||||
|
* LMDBAL::WriteTransaction is considered runnig right after creation by this method.
|
||||||
|
* You can commit all the changes made by this transaction calling LMDBAL::WriteTransaction::commit.
|
||||||
|
* You can cancel any changes made bu this transaction calling LMDBAL::WriteTransaction::abort
|
||||||
|
* (or LMDBAL::Transaction::terminate which LMDBAL::WriteTransaction inherits),
|
||||||
|
* but it's not required, because transaction will be aborted automatically
|
||||||
|
* (if it was not terminated (committed <b>OR</b> aborted) manually) upon the call of the destructor.
|
||||||
|
*
|
||||||
|
* You can not use termitated transaction any more.
|
||||||
|
*
|
||||||
* \returns writable transaction
|
* \returns writable transaction
|
||||||
*
|
*
|
||||||
* \exception LMDBAL::Closed - thrown if the database is closed
|
* \exception LMDBAL::Closed - thrown if the database is closed
|
||||||
|
@ -186,7 +186,7 @@ void LMDBAL::Cursor<K, V>::renew () const {
|
|||||||
*
|
*
|
||||||
* This function does nothing if the cursor is closed
|
* This function does nothing if the cursor is closed
|
||||||
*
|
*
|
||||||
* \param[in] txn a transaction you wish this cursor to be bound to
|
* \param[in] transaction - a transaction you wish this cursor to be bound to
|
||||||
*
|
*
|
||||||
* \exception LMDBAL::Closed thrown if you try to renew the cursor on a closed database
|
* \exception LMDBAL::Closed thrown if you try to renew the cursor on a closed database
|
||||||
* \exception LMDBAL::Unknown thrown if there was a problem renewing the cursor by lmdb
|
* \exception LMDBAL::Unknown thrown if there was a problem renewing the cursor by lmdb
|
||||||
|
@ -439,4 +439,10 @@ void LMDBAL::iStorage::transactionCommited(LMDBAL::TransactionID txn) {
|
|||||||
void LMDBAL::iStorage::transactionAborted(LMDBAL::TransactionID txn) const {
|
void LMDBAL::iStorage::transactionAborted(LMDBAL::TransactionID txn) const {
|
||||||
UNUSED(txn);}
|
UNUSED(txn);}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \brief A method where database additionally handles drop
|
||||||
|
*
|
||||||
|
* It's a protected method that is called to optimise drop process
|
||||||
|
* after the transaction is commited. Used just for optimisations.
|
||||||
|
*/
|
||||||
void LMDBAL::iStorage::handleDrop() {}
|
void LMDBAL::iStorage::handleDrop() {}
|
||||||
|
@ -1,17 +1,42 @@
|
|||||||
#include "transaction.h"
|
#include "transaction.h"
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \class LMDBAL::Transaction
|
||||||
|
* \brief Public read only transaction
|
||||||
|
*
|
||||||
|
* This class provides read only transactions you can use
|
||||||
|
* to speed to your queries keeping them thread safe.
|
||||||
|
* LMDBAL::Transaction is <b>NOT COPYABLE</b> but <b>MOVABLE</b>.
|
||||||
|
* Transaction can be in one of two states: active or terminated.
|
||||||
|
* The way to receive an active LMDBAL::Transaction is to call LMDBAL::Base::beginReadOnlyTransaction.
|
||||||
|
*
|
||||||
|
* Active transactions become terminated upon the call of LMDBAL::Transaction::terminate.
|
||||||
|
* Active transactions automaticaly terminate themselves upon destruction.
|
||||||
|
*
|
||||||
|
* You <b>CAN NOT</b> use inactive transactions for any query.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \brief Constructs inactive transaction
|
||||||
|
*/
|
||||||
LMDBAL::Transaction::Transaction():
|
LMDBAL::Transaction::Transaction():
|
||||||
txn(nullptr),
|
txn(nullptr),
|
||||||
active(false),
|
active(false),
|
||||||
parent(nullptr)
|
parent(nullptr)
|
||||||
{}
|
{}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \brief Constructs an active transaction
|
||||||
|
*/
|
||||||
LMDBAL::Transaction::Transaction(TransactionID txn, const Base* parent) :
|
LMDBAL::Transaction::Transaction(TransactionID txn, const Base* parent) :
|
||||||
txn(txn),
|
txn(txn),
|
||||||
active(true),
|
active(true),
|
||||||
parent(parent)
|
parent(parent)
|
||||||
{}
|
{}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \brief Moves transaction to a new object
|
||||||
|
*/
|
||||||
LMDBAL::Transaction::Transaction(Transaction&& other):
|
LMDBAL::Transaction::Transaction(Transaction&& other):
|
||||||
txn(other.txn),
|
txn(other.txn),
|
||||||
active(other.active),
|
active(other.active),
|
||||||
@ -20,10 +45,16 @@ LMDBAL::Transaction::Transaction(Transaction&& other):
|
|||||||
other.active = false;
|
other.active = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \brief Destroys transaction
|
||||||
|
*/
|
||||||
LMDBAL::Transaction::~Transaction() {
|
LMDBAL::Transaction::~Transaction() {
|
||||||
terminate();
|
terminate();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \brief Move-assigns transaction to the new object
|
||||||
|
*/
|
||||||
LMDBAL::Transaction& LMDBAL::Transaction::operator=(Transaction&& other) {
|
LMDBAL::Transaction& LMDBAL::Transaction::operator=(Transaction&& other) {
|
||||||
terminate();
|
terminate();
|
||||||
|
|
||||||
@ -36,6 +67,11 @@ LMDBAL::Transaction& LMDBAL::Transaction::operator=(Transaction&& other) {
|
|||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \brief Terminates transaction if it was active
|
||||||
|
*
|
||||||
|
* Transaction becomes terminated after calling this method
|
||||||
|
*/
|
||||||
void LMDBAL::Transaction::terminate() {
|
void LMDBAL::Transaction::terminate() {
|
||||||
if (active) {
|
if (active) {
|
||||||
parent->abortTransaction(txn);
|
parent->abortTransaction(txn);
|
||||||
@ -43,26 +79,73 @@ void LMDBAL::Transaction::terminate() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \brief Returns transaction states
|
||||||
|
*
|
||||||
|
* \returns true if the transaction is active, false otherwise
|
||||||
|
*/
|
||||||
bool LMDBAL::Transaction::isActive() const {
|
bool LMDBAL::Transaction::isActive() const {
|
||||||
return active; //todo may be it's better if I query it from DB?
|
return active; //todo may be it's better if I query it from DB?
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \class LMDBAL::WriteTransaction
|
||||||
|
* \brief Public writable transaction
|
||||||
|
*
|
||||||
|
* This class provides writable transactions you can use
|
||||||
|
* to speed to your queries and modifications keeping them thread safe.
|
||||||
|
* LMDBAL::WriteTransaction is <b>NOT COPYABLE</b> but <b>MOVABLE</b>.
|
||||||
|
* Transaction can be in one of two states: active or terminated.
|
||||||
|
* The way to receive an active LMDBAL::WriteTransaction is to call LMDBAL::Base::beginTransaction.
|
||||||
|
* You can use LMDBAL::WriteTransaction for everything instead of LMDBAL::Transaction
|
||||||
|
*
|
||||||
|
* Active transactions become terminated upon the call of
|
||||||
|
* LMDBAL::WriteTransaction::abort or LMDBAL::WriteTransaction::commit.
|
||||||
|
* Calling LMDBAL::Transaction::terminate on LMDBAL::WriteTransaction
|
||||||
|
* is exactly the same as calling LMDBAL::WriteTransaction::abort.
|
||||||
|
*
|
||||||
|
* Active transactions automaticaly terminate themselves upon destruction.
|
||||||
|
* <b>For LMDBAL::WriteTransaction default behaviour upon destruction is to abort.</b>
|
||||||
|
*
|
||||||
|
* You <b>CAN NOT</b> use inactive transactions for any query.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \brief Constructs active write transaction
|
||||||
|
*/
|
||||||
LMDBAL::WriteTransaction::WriteTransaction(TransactionID txn, Base* parent):
|
LMDBAL::WriteTransaction::WriteTransaction(TransactionID txn, Base* parent):
|
||||||
Transaction(txn, parent)
|
Transaction(txn, parent)
|
||||||
{}
|
{}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \brief Constructs inactive write transaction
|
||||||
|
*/
|
||||||
LMDBAL::WriteTransaction::WriteTransaction():
|
LMDBAL::WriteTransaction::WriteTransaction():
|
||||||
Transaction()
|
Transaction()
|
||||||
{}
|
{}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \brief Moves transaction to the new object
|
||||||
|
*/
|
||||||
LMDBAL::WriteTransaction::WriteTransaction(WriteTransaction&& other):
|
LMDBAL::WriteTransaction::WriteTransaction(WriteTransaction&& other):
|
||||||
Transaction(std::move(other))
|
Transaction(std::move(other))
|
||||||
{}
|
{}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \brief Aborts transaction cancelling all changes
|
||||||
|
*
|
||||||
|
* Transaction becomes terminated after calling this method
|
||||||
|
*/
|
||||||
void LMDBAL::WriteTransaction::abort() {
|
void LMDBAL::WriteTransaction::abort() {
|
||||||
terminate();
|
terminate();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \brief Commits transaction submitting all changes
|
||||||
|
*
|
||||||
|
* Transaction becomes terminated after calling this method
|
||||||
|
*/
|
||||||
void LMDBAL::WriteTransaction::commit() {
|
void LMDBAL::WriteTransaction::commit() {
|
||||||
if (active) {
|
if (active) {
|
||||||
const_cast<Base*>(parent)->commitTransaction(txn);
|
const_cast<Base*>(parent)->commitTransaction(txn);
|
||||||
|
@ -23,9 +23,9 @@ protected:
|
|||||||
Transaction(TransactionID txn, const Base* parent);
|
Transaction(TransactionID txn, const Base* parent);
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
TransactionID txn;
|
TransactionID txn; /**<\brief Transaction inner handler*/
|
||||||
bool active;
|
bool active; /**<\brief Transaction state*/
|
||||||
const Base* parent;
|
const Base* parent; /**<\brief Pointer to the database this transaction belongs to*/
|
||||||
};
|
};
|
||||||
|
|
||||||
class WriteTransaction : public Transaction {
|
class WriteTransaction : public Transaction {
|
||||||
|
@ -229,3 +229,51 @@ TEST_F(CacheTransactionsTest, ConcurentModification) {
|
|||||||
EXPECT_EQ(c1->getRecord(5), -46);
|
EXPECT_EQ(c1->getRecord(5), -46);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
TEST_F(CacheTransactionsTest, RAIIResourceFree) {
|
||||||
|
EXPECT_EQ(db->ready(), true);
|
||||||
|
|
||||||
|
int pid = fork();
|
||||||
|
if (pid == 0) { // I am the child
|
||||||
|
std::cout << "beggining child transaction" << std::endl;
|
||||||
|
LMDBAL::WriteTransaction txn2 = db->beginTransaction(); //<--- this is where the execution should pause
|
||||||
|
//and wait for the first transaction to get finished
|
||||||
|
std::cout << "checking result of the parent transaction value" << std::endl;
|
||||||
|
EXPECT_FALSE(c1->checkRecord(221, txn2));
|
||||||
|
|
||||||
|
std::cout << "performing modification from the child thread" << std::endl;
|
||||||
|
c1->addRecord(221, 14, txn2);
|
||||||
|
|
||||||
|
std::cout << "commiting child transaction" << std::endl;
|
||||||
|
txn2.commit();
|
||||||
|
|
||||||
|
std::cout << "quitting child thread, letting child transaction be destroyed after commit" << std::endl;
|
||||||
|
exit(testing::Test::HasFailure());
|
||||||
|
} else { // I am the parent
|
||||||
|
std::cout << "beggining parent transaction" << std::endl;
|
||||||
|
{
|
||||||
|
LMDBAL::WriteTransaction txn1 = db->beginTransaction();
|
||||||
|
|
||||||
|
std::cout << "putting parent thread to sleep for 5 ms" << std::endl;
|
||||||
|
usleep(5);
|
||||||
|
std::cout << "parent thread woke up" << std::endl;
|
||||||
|
|
||||||
|
std::cout << "adding value from parent thread" << std::endl;
|
||||||
|
c1->addRecord(221, 320, txn1);
|
||||||
|
|
||||||
|
std::cout << "checking value from parent thread using transaction" << std::endl;
|
||||||
|
EXPECT_EQ(c1->getRecord(221, txn1), 320);
|
||||||
|
|
||||||
|
std::cout << "checking value independently from parent thread" << std::endl;
|
||||||
|
EXPECT_FALSE(c1->checkRecord(221));
|
||||||
|
|
||||||
|
std::cout << "implicitly aborting transaction by leaving the scope" << std::endl;
|
||||||
|
}
|
||||||
|
|
||||||
|
std::cout << "child thread should resume after this line" << std::endl;
|
||||||
|
ASSERT_EQ(0, waitForChildFork(pid)); //child process should have no problems
|
||||||
|
}
|
||||||
|
|
||||||
|
std::cout << "checking the final result" << std::endl;
|
||||||
|
EXPECT_EQ(c1->getRecord(221), 14);
|
||||||
|
}
|
||||||
|
|
||||||
|
@ -14,7 +14,7 @@ protected:
|
|||||||
|
|
||||||
~StorageTransactionsTest() {}
|
~StorageTransactionsTest() {}
|
||||||
|
|
||||||
int waitForChildFork(int pid) {
|
int waitForChildFork(int pid) {
|
||||||
int status;
|
int status;
|
||||||
if (0 > waitpid(pid, &status, 0)) {
|
if (0 > waitpid(pid, &status, 0)) {
|
||||||
std::cerr << "[----------] Waitpid error!" << std::endl;
|
std::cerr << "[----------] Waitpid error!" << std::endl;
|
||||||
@ -22,9 +22,9 @@ protected:
|
|||||||
}
|
}
|
||||||
if (WIFEXITED(status)) {
|
if (WIFEXITED(status)) {
|
||||||
const int exit_status = WEXITSTATUS(status);
|
const int exit_status = WEXITSTATUS(status);
|
||||||
if (exit_status != 0) {
|
if (exit_status != 0)
|
||||||
std::cerr << "[----------] Non-zero exit status " << exit_status << " from test!" << std::endl;
|
std::cerr << "[----------] Non-zero exit status " << exit_status << " from test!" << std::endl;
|
||||||
}
|
|
||||||
return exit_status;
|
return exit_status;
|
||||||
} else {
|
} else {
|
||||||
std::cerr << "[----------] Non-normal exit from child!" << std::endl;
|
std::cerr << "[----------] Non-normal exit from child!" << std::endl;
|
||||||
@ -224,6 +224,54 @@ TEST_F(StorageTransactionsTest, ConcurentModification) {
|
|||||||
ASSERT_EQ(0, waitForChildFork(pid)); //child process should have no problems
|
ASSERT_EQ(0, waitForChildFork(pid)); //child process should have no problems
|
||||||
}
|
}
|
||||||
|
|
||||||
std::cout << "checking final result" << std::endl;
|
std::cout << "checking the final result" << std::endl;
|
||||||
EXPECT_EQ(t1->getRecord(5), -46);
|
EXPECT_EQ(t1->getRecord(5), -46);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
TEST_F(StorageTransactionsTest, RAIIResourceFree) {
|
||||||
|
EXPECT_EQ(db->ready(), true);
|
||||||
|
|
||||||
|
int pid = fork();
|
||||||
|
if (pid == 0) { // I am the child
|
||||||
|
std::cout << "beggining child transaction" << std::endl;
|
||||||
|
LMDBAL::WriteTransaction txn2 = db->beginTransaction(); //<--- this is where the execution should pause
|
||||||
|
//and wait for the first transaction to get finished
|
||||||
|
std::cout << "checking result of the parent transaction value" << std::endl;
|
||||||
|
EXPECT_FALSE(t1->checkRecord(221, txn2));
|
||||||
|
|
||||||
|
std::cout << "performing modification from the child thread" << std::endl;
|
||||||
|
t1->addRecord(221, 14, txn2);
|
||||||
|
|
||||||
|
std::cout << "commiting child transaction" << std::endl;
|
||||||
|
txn2.commit();
|
||||||
|
|
||||||
|
std::cout << "quitting child thread, letting child transaction be destroyed after commit" << std::endl;
|
||||||
|
exit(testing::Test::HasFailure());
|
||||||
|
} else { // I am the parent
|
||||||
|
std::cout << "beggining parent transaction" << std::endl;
|
||||||
|
{
|
||||||
|
LMDBAL::WriteTransaction txn1 = db->beginTransaction();
|
||||||
|
|
||||||
|
std::cout << "putting parent thread to sleep for 5 ms" << std::endl;
|
||||||
|
usleep(5);
|
||||||
|
std::cout << "parent thread woke up" << std::endl;
|
||||||
|
|
||||||
|
std::cout << "adding value from parent thread" << std::endl;
|
||||||
|
t1->addRecord(221, 320, txn1);
|
||||||
|
|
||||||
|
std::cout << "checking value from parent thread using transaction" << std::endl;
|
||||||
|
EXPECT_EQ(t1->getRecord(221, txn1), 320);
|
||||||
|
|
||||||
|
std::cout << "checking value independently from parent thread" << std::endl;
|
||||||
|
EXPECT_FALSE(t1->checkRecord(221));
|
||||||
|
|
||||||
|
std::cout << "implicitly aborting transaction by leaving the scope" << std::endl;
|
||||||
|
}
|
||||||
|
|
||||||
|
std::cout << "child thread should resume after this line" << std::endl;
|
||||||
|
ASSERT_EQ(0, waitForChildFork(pid)); //child process should have no problems
|
||||||
|
}
|
||||||
|
|
||||||
|
std::cout << "checking the final result" << std::endl;
|
||||||
|
EXPECT_EQ(t1->getRecord(221), 14);
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user