Skip to content

Commit cf71aa1

Browse files
authored
Merge e64f2b6 into d9cdc77
2 parents d9cdc77 + e64f2b6 commit cf71aa1

File tree

17 files changed

+70
-62
lines changed

17 files changed

+70
-62
lines changed

ydb/core/tx/columnshard/blobs_action/transaction/tx_blobs_written.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ namespace NKikimr::NColumnShard {
1212

1313
class TColumnShard;
1414

15-
class TTxBlobsWritingFinished: public TExtendedTransactionBase<TColumnShard> {
15+
class TTxBlobsWritingFinished: public TExtendedTransactionBase {
1616
private:
17-
using TBase = TExtendedTransactionBase<TColumnShard>;
17+
using TBase = TExtendedTransactionBase;
1818
std::vector<TInsertedPortions> Packs;
1919
const std::shared_ptr<NOlap::IBlobsWritingAction> WritingActions;
2020
std::optional<NOlap::TSnapshot> CommitSnapshot;
@@ -51,9 +51,9 @@ class TTxBlobsWritingFinished: public TExtendedTransactionBase<TColumnShard> {
5151
}
5252
};
5353

54-
class TTxBlobsWritingFailed: public TExtendedTransactionBase<TColumnShard> {
54+
class TTxBlobsWritingFailed: public TExtendedTransactionBase {
5555
private:
56-
using TBase = TExtendedTransactionBase<TColumnShard>;
56+
using TBase = TExtendedTransactionBase;
5757
const NKikimrProto::EReplyStatus PutBlobResult;
5858
std::vector<TInsertedPortions> Packs;
5959

ydb/core/tx/columnshard/blobs_action/transaction/tx_write.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55

66
namespace NKikimr::NColumnShard {
77

8-
class TTxWrite: public TExtendedTransactionBase<TColumnShard> {
8+
class TTxWrite: public TExtendedTransactionBase {
99
private:
10-
using TBase = TExtendedTransactionBase<TColumnShard>;
10+
using TBase = TExtendedTransactionBase;
1111

1212
public:
1313
TTxWrite(TColumnShard* self, const TEvPrivate::TEvWriteBlobsResult::TPtr& putBlobResult)

ydb/core/tx/columnshard/data_sharing/destination/transactions/tx_data_from_source.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99

1010
namespace NKikimr::NOlap::NDataSharing {
1111

12-
class TTxDataFromSource: public NColumnShard::TExtendedTransactionBase<NColumnShard::TColumnShard> {
12+
class TTxDataFromSource: public NColumnShard::TExtendedTransactionBase {
1313
private:
14-
using TBase = NColumnShard::TExtendedTransactionBase<NColumnShard::TColumnShard>;
14+
using TBase = NColumnShard::TExtendedTransactionBase;
1515
std::shared_ptr<TDestinationSession> Session;
1616
THashMap<ui64, NEvents::TPathIdData> PortionsByPathId;
1717
THashMap<TString, THashSet<NBlobCache::TUnifiedBlobId>> SharedBlobIds;

ydb/core/tx/columnshard/data_sharing/destination/transactions/tx_finish_ack_from_initiator.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55

66
namespace NKikimr::NOlap::NDataSharing {
77

8-
class TTxFinishAckFromInitiator: public NColumnShard::TExtendedTransactionBase<NColumnShard::TColumnShard> {
8+
class TTxFinishAckFromInitiator: public NColumnShard::TExtendedTransactionBase {
99
private:
10-
using TBase = NColumnShard::TExtendedTransactionBase<NColumnShard::TColumnShard>;
10+
using TBase = NColumnShard::TExtendedTransactionBase;
1111
std::shared_ptr<TDestinationSession> Session;
1212
protected:
1313
virtual bool DoExecute(NTabletFlatExecutor::TTransactionContext& txc, const TActorContext& ctx) override;

ydb/core/tx/columnshard/data_sharing/destination/transactions/tx_finish_from_source.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55

66
namespace NKikimr::NOlap::NDataSharing {
77

8-
class TTxFinishFromSource: public NColumnShard::TExtendedTransactionBase<NColumnShard::TColumnShard> {
8+
class TTxFinishFromSource: public NColumnShard::TExtendedTransactionBase {
99
private:
10-
using TBase = NColumnShard::TExtendedTransactionBase<NColumnShard::TColumnShard>;
10+
using TBase = NColumnShard::TExtendedTransactionBase;
1111
std::shared_ptr<TDestinationSession> Session;
1212
const TTabletId SourceTabletId;
1313
bool Finished = false;

ydb/core/tx/columnshard/data_sharing/destination/transactions/tx_start_from_initiator.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55

66
namespace NKikimr::NOlap::NDataSharing {
77

8-
class TTxProposeFromInitiator: public NColumnShard::TExtendedTransactionBase<NColumnShard::TColumnShard> {
8+
class TTxProposeFromInitiator: public NColumnShard::TExtendedTransactionBase {
99
private:
10-
using TBase = NColumnShard::TExtendedTransactionBase<NColumnShard::TColumnShard>;
10+
using TBase = NColumnShard::TExtendedTransactionBase;
1111
std::shared_ptr<TDestinationSession> Session;
1212
THashMap<TString, std::shared_ptr<TDestinationSession>>* Sessions;
1313
protected:
@@ -23,9 +23,9 @@ class TTxProposeFromInitiator: public NColumnShard::TExtendedTransactionBase<NCo
2323
TTxType GetTxType() const override { return NColumnShard::TXTYPE_DATA_SHARING_PROPOSE_FROM_INITIATOR; }
2424
};
2525

26-
class TTxConfirmFromInitiator: public NColumnShard::TExtendedTransactionBase<NColumnShard::TColumnShard> {
26+
class TTxConfirmFromInitiator: public NColumnShard::TExtendedTransactionBase {
2727
private:
28-
using TBase = NColumnShard::TExtendedTransactionBase<NColumnShard::TColumnShard>;
28+
using TBase = NColumnShard::TExtendedTransactionBase;
2929
std::shared_ptr<TDestinationSession> Session;
3030
protected:
3131
virtual bool DoExecute(NTabletFlatExecutor::TTransactionContext& txc, const TActorContext& ctx) override;

ydb/core/tx/columnshard/data_sharing/modification/transactions/tx_change_blobs_owning.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ namespace NKikimr::NOlap::NDataSharing {
77

88
class TTaskForTablet;
99

10-
class TTxApplyLinksModification: public NColumnShard::TExtendedTransactionBase<NColumnShard::TColumnShard> {
10+
class TTxApplyLinksModification: public NColumnShard::TExtendedTransactionBase {
1111
private:
12-
using TBase = NColumnShard::TExtendedTransactionBase<NColumnShard::TColumnShard>;
12+
using TBase = NColumnShard::TExtendedTransactionBase;
1313
std::shared_ptr<TTaskForTablet> Task;
1414
const TTabletId InitiatorTabletId;
1515
const TString SessionId;

ydb/core/tx/columnshard/data_sharing/source/transactions/tx_data_ack_to_source.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66

77
namespace NKikimr::NOlap::NDataSharing {
88

9-
class TTxDataAckToSource: public NColumnShard::TExtendedTransactionBase<NColumnShard::TColumnShard> {
9+
class TTxDataAckToSource: public NColumnShard::TExtendedTransactionBase {
1010
private:
11-
using TBase = NColumnShard::TExtendedTransactionBase<NColumnShard::TColumnShard>;
11+
using TBase = NColumnShard::TExtendedTransactionBase;
1212
std::shared_ptr<TSourceSession> Session;
1313
THashMap<TString, TTabletsByBlob> SharedBlobIds;
1414
protected:

ydb/core/tx/columnshard/data_sharing/source/transactions/tx_finish_ack_to_source.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55

66
namespace NKikimr::NOlap::NDataSharing {
77

8-
class TTxFinishAckToSource: public NColumnShard::TExtendedTransactionBase<NColumnShard::TColumnShard> {
8+
class TTxFinishAckToSource: public NColumnShard::TExtendedTransactionBase {
99
private:
10-
using TBase = NColumnShard::TExtendedTransactionBase<NColumnShard::TColumnShard>;
10+
using TBase = NColumnShard::TExtendedTransactionBase;
1111
std::shared_ptr<TSourceSession> Session;
1212
protected:
1313
virtual bool DoExecute(NTabletFlatExecutor::TTransactionContext& txc, const TActorContext& ctx) override;

ydb/core/tx/columnshard/data_sharing/source/transactions/tx_start_source_cursor.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55

66
namespace NKikimr::NOlap::NDataSharing {
77

8-
class TTxStartSourceCursor: public NColumnShard::TExtendedTransactionBase<NColumnShard::TColumnShard> {
8+
class TTxStartSourceCursor: public NColumnShard::TExtendedTransactionBase {
99
private:
10-
using TBase = NColumnShard::TExtendedTransactionBase<NColumnShard::TColumnShard>;
10+
using TBase = NColumnShard::TExtendedTransactionBase;
1111

1212
TSourceSession* Session;
1313
THashMap<ui64, std::vector<TPortionDataAccessor>> Portions;

0 commit comments

Comments
 (0)