diff --git a/scylla/tests/integration/types/cql_collections.rs b/scylla/tests/integration/types/cql_collections.rs index b4a556d892..790e455254 100644 --- a/scylla/tests/integration/types/cql_collections.rs +++ b/scylla/tests/integration/types/cql_collections.rs @@ -254,8 +254,8 @@ async fn test_cql_tuple() { .unwrap(); } -// TODO: Remove this ignore when vector type is supported in ScyllaDB -#[cfg_attr(not(cassandra_tests), ignore)] +// ScyllaDB version that is used for serverless tests is too old to support vector type. +#[cfg_attr(scylla_cloud_tests, ignore)] #[tokio::test] async fn test_vector_type_metadata() { setup_tracing(); @@ -293,8 +293,8 @@ async fn test_vector_type_metadata() { session.ddl(format!("DROP KEYSPACE {ks}")).await.unwrap(); } -// TODO: Remove this ignore when vector type is supported in ScyllaDB -#[cfg_attr(not(cassandra_tests), ignore)] +// ScyllaDB version that is used for serverless tests is too old to support vector type. +#[cfg_attr(scylla_cloud_tests, ignore)] #[tokio::test] async fn test_vector_type_unprepared() { setup_tracing(); @@ -359,8 +359,8 @@ async fn test_vector_type_unprepared() { session.ddl(format!("DROP KEYSPACE {ks}")).await.unwrap(); } -// TODO: Remove this ignore when vector type is supported in ScyllaDB -#[cfg_attr(not(cassandra_tests), ignore)] +// ScyllaDB version that is used for serverless tests is too old to support vector type. +#[cfg_attr(scylla_cloud_tests, ignore)] #[tokio::test] async fn test_vector_type_prepared() { setup_tracing(); @@ -465,8 +465,8 @@ async fn test_vector_single_type< session.ddl(drop_statement).await.unwrap(); } -// TODO: Remove this ignore when vector type is available in ScyllaDB -#[cfg_attr(not(cassandra_tests), ignore)] +// ScyllaDB version that is used for serverless tests is too old to support vector type. +#[cfg_attr(scylla_cloud_tests, ignore)] #[tokio::test] async fn test_vector_type_all_types() { setup_tracing();