Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions scylla/tests/integration/types/cql_collections.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down Expand Up @@ -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();
Expand Down Expand Up @@ -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();
Expand Down Expand Up @@ -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();
Expand Down
Loading