Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,12 @@ class TTxProposeTransaction : public NTabletFlatExecutor::TTransactionBase<TColu
TMessageSeqNo seqNo;
seqNo.DeserializeFromProto(Ev->Get()->Record.GetSeqNo()).Validate();
msgSeqNo = seqNo;
} else if (txKind == NKikimrTxColumnShard::TX_KIND_SCHEMA) {
// deprecated. alive while all branches in SS not updated in new flow
NKikimrTxColumnShard::TSchemaTxBody schemaTxBody;
if (schemaTxBody.ParseFromString(txBody)) {
msgSeqNo = SeqNoFromProto(schemaTxBody.GetSeqNo());
}
}
TxInfo.emplace(txKind, txId, Ev->Get()->GetSource(), Ev->Cookie, msgSeqNo);
TxOperator = Self->GetProgressTxController().StartProposeOnExecute(*TxInfo, txBody, txc);
Expand Down