set group name in twoPhaseCommitter (#718)

Signed-off-by: glorv <glorvs@163.com>
This commit is contained in:
glorv 2023-02-27 16:39:23 +08:00 committed by GitHub
parent 891ef575be
commit 596b79404d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 8 deletions

View File

@ -462,6 +462,7 @@ func newTwoPhaseCommitter(txn *KVTxn, sessionID uint64) (*twoPhaseCommitter, err
isPessimistic: txn.IsPessimistic(), isPessimistic: txn.IsPessimistic(),
binlog: txn.binlog, binlog: txn.binlog,
diskFullOpt: kvrpcpb.DiskFullOpt_NotAllowedOnFull, diskFullOpt: kvrpcpb.DiskFullOpt_NotAllowedOnFull,
resourceGroupName: txn.resourceGroupName,
}, nil }, nil
} }