mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
b7ef5a699c
* Get rid of non-existent vectorclass * Move FastMemcpy to contribs * Restore comments * Disable FastMemcpy on non-Linux * Fix cmake file * Don't build FastMemcpy for ARM64 * Replace FastMemcpy submodule with its contents * Fix cmake file * Move widechar_width to contrib/ * Move sumbur to contrib/ * Move consistent-hashing to contrib/ * Fix UBSan tests
54 lines
969 B
C++
54 lines
969 B
C++
#pragma once
|
|
|
|
#include <boost/noncopyable.hpp>
|
|
|
|
#include <mysqlxx/Connection.h>
|
|
|
|
|
|
namespace mysqlxx
|
|
{
|
|
|
|
/** RAII для транзакции. При инициализации, транзакция стартует.
|
|
* При уничтожении, если не был вызван метод commit(), будет произведёт rollback.
|
|
*/
|
|
class Transaction : private boost::noncopyable
|
|
{
|
|
public:
|
|
Transaction(Connection & conn_)
|
|
: conn(conn_), finished(false)
|
|
{
|
|
conn.query("START TRANSACTION").execute();
|
|
}
|
|
|
|
virtual ~Transaction()
|
|
{
|
|
try
|
|
{
|
|
if (!finished)
|
|
rollback();
|
|
}
|
|
catch (...)
|
|
{
|
|
}
|
|
}
|
|
|
|
void commit()
|
|
{
|
|
conn.query("COMMIT").execute();
|
|
finished = true;
|
|
}
|
|
|
|
void rollback()
|
|
{
|
|
conn.query("ROLLBACK").execute();
|
|
finished = true;
|
|
}
|
|
|
|
private:
|
|
Connection & conn;
|
|
bool finished;
|
|
};
|
|
|
|
|
|
}
|