Add missing CommitInfo fields to the transaction profiling analyzer
This commit is contained in:
parent
edf4e60fa9
commit
bf3009d6c9
|
@ -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):
|
||||
|
|
Loading…
Reference in New Issue