Home
last modified time | relevance | path

Searched refs:highest_supported (Results 1 – 7 of 7) sorted by relevance

/dports/databases/cassandra-cpp-driver/cpp-driver-2.16.0/src/
H A Dprotocol.cpp45 ProtocolVersion ProtocolVersion::highest_supported(bool is_dse) { in highest_supported() function in ProtocolVersion
54 return *this >= lowest_supported() && *this <= highest_supported(is_dse()); in is_valid()
80 return ProtocolVersion::highest_supported(false); in previous()
H A Dprotocol.hpp61 static ProtocolVersion highest_supported(bool is_dse = true);
H A Dcluster_config.cpp61 } else if (version > ProtocolVersion::highest_supported(version.is_dse())) { in cass_cluster_set_protocol_version()
65 ProtocolVersion::highest_supported(version.is_dse()).to_string().c_str()); in cass_cluster_set_protocol_version()
76 : ProtocolVersion::highest_supported()); in cass_cluster_set_use_beta_protocol_version()
H A Dconfig.hpp43 , protocol_version_(ProtocolVersion::highest_supported()) in Config()
H A Ddecoder.hpp71 ProtocolVersion protocol_version = ProtocolVersion::highest_supported()) in Decoder()
/dports/databases/cassandra-cpp-driver/cpp-driver-2.16.0/tests/src/unit/tests/
H A Dtest_protocol_version.cpp33 EXPECT_EQ(ProtocolVersion(CASS_PROTOCOL_VERSION_DSEV2), ProtocolVersion::highest_supported()); in TEST_F()
H A Dtest_decoder.cpp30 ProtocolVersion protocol_version = ProtocolVersion::highest_supported()) in TestDecoder()