Add 8.0 to transaction_profiling_analyzer

This commit is contained in:
Vishesh Yadav
2025-10-28 14:49:40 -07:00
parent aca2648648
commit 92de0010dc

View File

@@ -52,6 +52,7 @@ PROTOCOL_VERSION_7_1 = 0x0FDB00B071010000
PROTOCOL_VERSION_7_2 = 0x0FDB00B072000000
PROTOCOL_VERSION_7_3 = 0x0FDB00B073000000
PROTOCOL_VERSION_7_4 = 0x0FDB00B074000000
PROTOCOL_VERSION_8_0 = 0x0FDB00B080000000
supported_protocol_versions = frozenset(
[
PROTOCOL_VERSION_5_2,
@@ -64,6 +65,7 @@ supported_protocol_versions = frozenset(
PROTOCOL_VERSION_7_2,
PROTOCOL_VERSION_7_3,
PROTOCOL_VERSION_7_4,
PROTOCOL_VERSION_8_0,
]
)