@@ -115,6 +115,7 @@ fn make_cayenne_catalog(catalog_name: &str, data_dir: &str, metadata_dir: &str)
115115// =============================================================================
116116
117117#[ tokio:: test]
118+ #[ ignore = "Cayenne catalog connector removed from registry" ]
118119async fn cayenne_catalog_ddl_create_insert_update_delete ( ) -> Result < ( ) , String > {
119120 let _tracing = init_tracing ( Some ( "integration=debug,info" ) ) ;
120121 register_test_connectors ( ) . await ;
@@ -422,6 +423,7 @@ async fn cayenne_catalog_ddl_create_insert_update_delete() -> Result<(), String>
422423// =============================================================================
423424
424425#[ tokio:: test]
426+ #[ ignore = "Cayenne catalog connector removed from registry" ]
425427async fn cayenne_catalog_ddl_create_if_not_exists ( ) -> Result < ( ) , String > {
426428 let _tracing = init_tracing ( Some ( "integration=debug,info" ) ) ;
427429 register_test_connectors ( ) . await ;
@@ -506,6 +508,7 @@ async fn cayenne_catalog_ddl_create_if_not_exists() -> Result<(), String> {
506508// =============================================================================
507509
508510#[ tokio:: test]
511+ #[ ignore = "Cayenne catalog connector removed from registry" ]
509512async fn cayenne_catalog_ddl_multiple_tables ( ) -> Result < ( ) , String > {
510513 let _tracing = init_tracing ( Some ( "integration=debug,info" ) ) ;
511514 register_test_connectors ( ) . await ;
@@ -659,6 +662,7 @@ async fn cayenne_catalog_ddl_multiple_tables() -> Result<(), String> {
659662// =============================================================================
660663
661664#[ tokio:: test]
665+ #[ ignore = "Cayenne catalog connector removed from registry" ]
662666async fn cayenne_catalog_ddl_drop_table ( ) -> Result < ( ) , String > {
663667 let _tracing = init_tracing ( Some ( "integration=debug,info" ) ) ;
664668 register_test_connectors ( ) . await ;
@@ -753,6 +757,7 @@ async fn cayenne_catalog_ddl_drop_table() -> Result<(), String> {
753757// =============================================================================
754758
755759#[ tokio:: test]
760+ #[ ignore = "Cayenne catalog connector removed from registry" ]
756761async fn cayenne_catalog_ddl_primary_key_upsert ( ) -> Result < ( ) , String > {
757762 let _tracing = init_tracing ( Some ( "integration=debug,info" ) ) ;
758763 register_test_connectors ( ) . await ;
@@ -946,6 +951,7 @@ async fn cayenne_catalog_ddl_primary_key_upsert() -> Result<(), String> {
946951// =============================================================================
947952
948953#[ tokio:: test]
954+ #[ ignore = "Cayenne catalog connector removed from registry" ]
949955async fn cayenne_catalog_ddl_multiple_schemas ( ) -> Result < ( ) , String > {
950956 let _tracing = init_tracing ( Some ( "integration=debug,info" ) ) ;
951957 register_test_connectors ( ) . await ;
@@ -1070,6 +1076,7 @@ async fn cayenne_catalog_ddl_multiple_schemas() -> Result<(), String> {
10701076// =============================================================================
10711077
10721078#[ tokio:: test]
1079+ #[ ignore = "Cayenne catalog connector removed from registry" ]
10731080async fn cayenne_catalog_merge_into ( ) -> Result < ( ) , String > {
10741081 let _tracing = init_tracing ( Some ( "integration=debug,info" ) ) ;
10751082 register_test_connectors ( ) . await ;
@@ -1328,6 +1335,7 @@ async fn cayenne_catalog_merge_into() -> Result<(), String> {
13281335// =============================================================================
13291336
13301337#[ tokio:: test]
1338+ #[ ignore = "Cayenne catalog connector removed from registry" ]
13311339async fn cayenne_catalog_merge_partition_key_differs_from_join_key ( ) -> Result < ( ) , String > {
13321340 let _tracing = init_tracing ( Some ( "integration=debug,info" ) ) ;
13331341 register_test_connectors ( ) . await ;
@@ -1452,6 +1460,7 @@ async fn cayenne_catalog_merge_partition_key_differs_from_join_key() -> Result<(
14521460// =============================================================================
14531461
14541462#[ tokio:: test]
1463+ #[ ignore = "Cayenne catalog connector removed from registry" ]
14551464async fn cayenne_catalog_merge_composite_on_key ( ) -> Result < ( ) , String > {
14561465 let _tracing = init_tracing ( Some ( "integration=debug,info" ) ) ;
14571466 register_test_connectors ( ) . await ;
@@ -1589,6 +1598,7 @@ async fn cayenne_catalog_merge_composite_on_key() -> Result<(), String> {
15891598/// but source only matches (US,A) and (EU,B). The unmatched rows (US,B) and (EU,A)
15901599/// must be preserved unchanged.
15911600#[ tokio:: test]
1601+ #[ ignore = "Cayenne catalog connector removed from registry" ]
15921602async fn cayenne_catalog_merge_composite_key_no_cross_product ( ) -> Result < ( ) , String > {
15931603 let _tracing = init_tracing ( Some ( "integration=debug,info" ) ) ;
15941604 register_test_connectors ( ) . await ;
@@ -1718,6 +1728,7 @@ async fn cayenne_catalog_merge_composite_key_no_cross_product() -> Result<(), St
17181728// =============================================================================
17191729
17201730#[ tokio:: test]
1731+ #[ ignore = "Cayenne catalog connector removed from registry" ]
17211732async fn cayenne_catalog_merge_duplicate_source_keys_rejected ( ) -> Result < ( ) , String > {
17221733 let _tracing = init_tracing ( Some ( "integration=debug,info" ) ) ;
17231734 register_test_connectors ( ) . await ;
@@ -1837,6 +1848,7 @@ async fn cayenne_catalog_merge_duplicate_source_keys_rejected() -> Result<(), St
18371848// → executor forwarding path; this test covers the direct TableProvider::update
18381849// call.
18391850#[ tokio:: test]
1851+ #[ ignore = "Cayenne catalog connector removed from registry" ]
18401852async fn cayenne_catalog_ddl_update ( ) -> Result < ( ) , String > {
18411853 let _tracing = init_tracing ( Some ( "integration=debug,info" ) ) ;
18421854 register_test_connectors ( ) . await ;
@@ -2004,6 +2016,7 @@ async fn cayenne_catalog_ddl_update() -> Result<(), String> {
20042016//
20052017// Distinct SQL parse path from `WHERE true`.
20062018#[ tokio:: test]
2019+ #[ ignore = "Cayenne catalog connector removed from registry" ]
20072020async fn cayenne_catalog_ddl_dml_no_where ( ) -> Result < ( ) , String > {
20082021 let _tracing = init_tracing ( Some ( "integration=debug,info" ) ) ;
20092022 register_test_connectors ( ) . await ;
@@ -2094,6 +2107,7 @@ async fn cayenne_catalog_ddl_dml_no_where() -> Result<(), String> {
20942107// partition pruning. This test uses `PARTITION BY region` and filters on
20952108// `sku` to exercise the no-pruning path.
20962109#[ tokio:: test]
2110+ #[ ignore = "Cayenne catalog connector removed from registry" ]
20972111async fn cayenne_catalog_ddl_dml_non_partition_filter ( ) -> Result < ( ) , String > {
20982112 let _tracing = init_tracing ( Some ( "integration=debug,info" ) ) ;
20992113 register_test_connectors ( ) . await ;
@@ -2209,6 +2223,7 @@ async fn cayenne_catalog_ddl_dml_non_partition_filter() -> Result<(), String> {
22092223// All other DML tests except the MERGE ones use `PARTITION BY id BIGINT`.
22102224// This test exercises INSERT/UPDATE/DELETE on a string-partitioned table.
22112225#[ tokio:: test]
2226+ #[ ignore = "Cayenne catalog connector removed from registry" ]
22122227async fn cayenne_catalog_ddl_string_partition_dml ( ) -> Result < ( ) , String > {
22132228 let _tracing = init_tracing ( Some ( "integration=debug,info" ) ) ;
22142229 register_test_connectors ( ) . await ;
@@ -2327,6 +2342,7 @@ async fn cayenne_catalog_ddl_string_partition_dml() -> Result<(), String> {
23272342// =============================================================================
23282343
23292344#[ tokio:: test]
2345+ #[ ignore = "Cayenne catalog connector removed from registry" ]
23302346async fn cayenne_catalog_rejected_without_distributed_mode ( ) -> Result < ( ) , String > {
23312347 let _tracing = init_tracing ( Some ( "integration=debug,info" ) ) ;
23322348 register_test_connectors ( ) . await ;
0 commit comments