Add missing CommitInfo fields to the transaction profiling analyzer

This commit is contained in:
Bala Namasivayam 2022-08-02 17:13:03 -07:00
parent edf4e60fa9
commit bf3009d6c9
1 changed files with 5 additions and 0 deletions

View File

@ -244,6 +244,11 @@ class CommitInfo(BaseInfo):
self.read_snapshot_version = bb.get_long()
if protocol_version >= PROTOCOL_VERSION_6_3:
self.report_conflicting_keys = bb.get_bool()
if protocol_version >= PROTOCOL_VERSION_7_1:
lock_aware = bb.get_bool()
if bb.get_bool():
spanId = bb.get_bytes(16)
class ErrorGetInfo(BaseInfo):