diff --git a/pkg/kv/kvclient/kvcoord/txn_coord_sender.go b/pkg/kv/kvclient/kvcoord/txn_coord_sender.go index ee9d1891a029..e44450e96f8a 100644 --- a/pkg/kv/kvclient/kvcoord/txn_coord_sender.go +++ b/pkg/kv/kvclient/kvcoord/txn_coord_sender.go @@ -1525,11 +1525,6 @@ func (tc *TxnCoordSender) TestingCloneTxn() *roachpb.Transaction { // Step is part of the TxnSender interface. func (tc *TxnCoordSender) Step(ctx context.Context, allowReadTimestampStep bool) error { - // TODO(nvanbenschoten): it should be possible to make this assertion, but - // the API is currently misused by the connExecutor. See #86162. - // if tc.typ != kv.RootTxn { - // return errors.AssertionFailedf("cannot step in non-root txn") - // } tc.mu.Lock() defer tc.mu.Unlock() if allowReadTimestampStep && tc.shouldStepReadTimestampLocked() {