summaryrefslogtreecommitdiff
path: root/src/mongo/db/wire_version.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/wire_version.h')
-rw-r--r--src/mongo/db/wire_version.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mongo/db/wire_version.h b/src/mongo/db/wire_version.h
index 8ecb08fd7dd..561070f2a1c 100644
--- a/src/mongo/db/wire_version.h
+++ b/src/mongo/db/wire_version.h
@@ -76,9 +76,12 @@ enum WireVersion {
// Supports sharded transactions (4.2+).
SHARDED_TRANSACTIONS = 8,
+ // TODO SERVER-42985: Supports some upcoming feature (4.4+).
+ PLACEHOLDER_FOR_44 = 9,
+
// Set this to the highest value in this enum - it will be the default maxWireVersion for
// the WireSpec values.
- LATEST_WIRE_VERSION = SHARDED_TRANSACTIONS,
+ LATEST_WIRE_VERSION = PLACEHOLDER_FOR_44,
};
/**