mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-15 02:41:59 +00:00
15 lines
261 B
C++
15 lines
261 B
C++
|
#include <Interpreters/MergeTreeTransaction.h>
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
|
||
|
MergeTreeTransaction::MergeTreeTransaction(Snapshot snapshot_, LocalTID local_tid_, UUID host_id)
|
||
|
: tid({snapshot_, local_tid_, host_id})
|
||
|
, snapshot(snapshot_)
|
||
|
, state(RUNNING)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|