Skip to content

Commit 09f8534

Browse files
committed
testing: remove filtering methods from unimplemented
1 parent 2c15ab4 commit 09f8534

File tree

1 file changed

+0
-28
lines changed

1 file changed

+0
-28
lines changed

src/testing_unimplemented.cpp

Lines changed: 0 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -51,12 +51,6 @@ CASS_EXPORT CassError cass_cluster_set_authenticator_callbacks(
5151
CassAuthenticatorDataCleanupCallback cleanup_callback, void* data) {
5252
throw std::runtime_error("UNIMPLEMENTED cass_cluster_set_authenticator_callbacks\n");
5353
}
54-
CASS_EXPORT void cass_cluster_set_blacklist_dc_filtering(CassCluster* cluster, const char* dcs) {
55-
throw std::runtime_error("UNIMPLEMENTED cass_cluster_set_blacklist_dc_filtering\n");
56-
}
57-
CASS_EXPORT void cass_cluster_set_blacklist_filtering(CassCluster* cluster, const char* hosts) {
58-
throw std::runtime_error("UNIMPLEMENTED cass_cluster_set_blacklist_filtering\n");
59-
}
6054
CASS_EXPORT CassError cass_cluster_set_cloud_secure_connection_bundle_no_ssl_lib_init(
6155
CassCluster* cluster, const char* path) {
6256
throw std::runtime_error(
@@ -88,12 +82,6 @@ CASS_EXPORT void cass_cluster_set_timestamp_gen(CassCluster* cluster,
8882
CassTimestampGen* timestamp_gen) {
8983
throw std::runtime_error("UNIMPLEMENTED cass_cluster_set_timestamp_gen\n");
9084
}
91-
CASS_EXPORT void cass_cluster_set_whitelist_dc_filtering(CassCluster* cluster, const char* dcs) {
92-
throw std::runtime_error("UNIMPLEMENTED cass_cluster_set_whitelist_dc_filtering\n");
93-
}
94-
CASS_EXPORT void cass_cluster_set_whitelist_filtering(CassCluster* cluster, const char* hosts) {
95-
throw std::runtime_error("UNIMPLEMENTED cass_cluster_set_whitelist_filtering\n");
96-
}
9785
CASS_EXPORT CassError cass_collection_append_custom(CassCollection* collection,
9886
const char* class_name,
9987
const cass_byte_t* value, size_t value_size) {
@@ -110,22 +98,6 @@ CASS_EXPORT void cass_custom_payload_set(CassCustomPayload* payload, const char*
11098
const cass_byte_t* value, size_t value_size) {
11199
throw std::runtime_error("UNIMPLEMENTED cass_custom_payload_set\n");
112100
}
113-
CASS_EXPORT CassError cass_execution_profile_set_blacklist_dc_filtering(CassExecProfile* profile,
114-
const char* dcs) {
115-
throw std::runtime_error("UNIMPLEMENTED cass_execution_profile_set_blacklist_dc_filtering\n");
116-
}
117-
CASS_EXPORT CassError cass_execution_profile_set_blacklist_filtering(CassExecProfile* profile,
118-
const char* hosts) {
119-
throw std::runtime_error("UNIMPLEMENTED cass_execution_profile_set_blacklist_filtering\n");
120-
}
121-
CASS_EXPORT CassError cass_execution_profile_set_whitelist_dc_filtering(CassExecProfile* profile,
122-
const char* dcs) {
123-
throw std::runtime_error("UNIMPLEMENTED cass_execution_profile_set_whitelist_dc_filtering\n");
124-
}
125-
CASS_EXPORT CassError cass_execution_profile_set_whitelist_filtering(CassExecProfile* profile,
126-
const char* hosts) {
127-
throw std::runtime_error("UNIMPLEMENTED cass_execution_profile_set_whitelist_filtering\n");
128-
}
129101
CASS_EXPORT CassError cass_function_meta_argument(const CassFunctionMeta* function_meta,
130102
size_t index, const char** name,
131103
size_t* name_length, const CassDataType** type) {

0 commit comments

Comments
 (0)