File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -1589,15 +1589,15 @@ async fn test_github_12546() {
15891589 ) ;
15901590}
15911591
1592+ /// Regression test for database-issues#3721.
15921593#[ mz_ore:: test]
1593- fn test_github_12951 ( ) {
1594+ fn test_github_3721 ( ) {
15941595 let server = test_util:: TestHarness :: default ( ) . start_blocking ( ) ;
15951596
15961597 // Verify sinks (SUBSCRIBE) are correctly handled for a dropped cluster.
15971598 {
15981599 let mut client1 = server. connect ( postgres:: NoTls ) . unwrap ( ) ;
15991600 let mut client2 = server. connect ( postgres:: NoTls ) . unwrap ( ) ;
1600- let client2_cancel = client2. cancel_token ( ) ;
16011601
16021602 client1
16031603 . batch_execute ( "CREATE CLUSTER foo REPLICAS (r1 (size 'scale=1,workers=1'))" )
@@ -1610,7 +1610,6 @@ fn test_github_12951() {
16101610 )
16111611 . unwrap ( ) ;
16121612 client1. batch_execute ( "DROP CLUSTER foo CASCADE" ) . unwrap ( ) ;
1613- client2_cancel. cancel_query ( postgres:: NoTls ) . unwrap ( ) ;
16141613 client2
16151614 . batch_execute ( "ROLLBACK; SET CLUSTER = default" )
16161615 . unwrap ( ) ;
You can’t perform that action at this time.
0 commit comments