asupersync 0.3.4

Spec-first, cancel-correct, capability-secure async runtime for Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
//! Transaction management helpers.
//!
//! Provides high-level ergonomic wrappers for database transactions that
//! handle commit/rollback lifecycle automatically, plus savepoint support.
//!
//! # Design
//!
//! The low-level transaction types ([`PgTransaction`], [`SqliteTransaction`],
//! [`MySqlTransaction`]) require manual `commit()`/`rollback()` calls.
//! This module provides:
//!
//! - [`with_pg_transaction`]: Run a closure inside a PostgreSQL transaction
//! - [`with_sqlite_transaction`]: Run a closure inside a SQLite transaction
//! - [`with_mysql_transaction`]: Run a closure inside a MySQL transaction
//! - [`with_pg_transaction_retry`]: PostgreSQL retry on serialization failure (40001)
//! - [`with_mysql_transaction_retry`]: MySQL retry on deadlock (1213/1205)
//! - [`with_sqlite_transaction_retry`]: SQLite retry on SQLITE_BUSY/SQLITE_LOCKED
//! - [`PgSavepoint`] / [`SqliteSavepoint`] / [`MySqlSavepoint`]: Nested savepoints
//! - [`RetryPolicy`]: Configurable retry with exponential backoff
//! - [`TransactionReplaySafety`]: Explicit opt-in for replaying user closures
//!
//! All helpers integrate with [`Cx`] for cancellation. On `Outcome::Err` or
//! `Outcome::Cancelled`, the transaction is rolled back. On `Outcome::Ok`,
//! it is committed.
//!
//! # Example
//!
//! ```ignore
//! use asupersync::database::transaction::{with_pg_transaction, RetryPolicy};
//!
//! async fn transfer(conn: &mut PgConnection, cx: &Cx) -> Outcome<(), PgError> {
//!     with_pg_transaction(conn, cx, |tx, cx| async move {
//!         tx.execute(cx, "UPDATE accounts SET balance = balance - 100 WHERE id = 1").await?;
//!         tx.execute(cx, "UPDATE accounts SET balance = balance + 100 WHERE id = 2").await?;
//!         Outcome::Ok(())
//!     }).await
//! }
//! ```
//!
//! [`Cx`]: crate::cx::Cx
//! [`PgTransaction`]: super::PgTransaction
//! [`SqliteTransaction`]: super::SqliteTransaction
//! [`MySqlTransaction`]: super::MySqlTransaction

use crate::cx::Cx;
use crate::time::{sleep, wall_now};
use crate::types::{CancelReason, Outcome};
use std::future::{Future, poll_fn};
use std::pin::Pin;
use std::task::Poll;
use std::time::Duration;

// ─── RetryPolicy ─────────────────────────────────────────────────────────────

/// Policy for retrying transactions on serialization failure.
///
/// When a transaction fails due to a serialization conflict (e.g. PostgreSQL
/// `40001`, SQLite `SQLITE_BUSY`), the retry policy controls whether and how
/// many times to retry the entire transaction.
#[derive(Debug, Clone)]
pub struct RetryPolicy {
    /// Maximum number of retry attempts (0 = no retries).
    pub max_retries: u32,
    /// Base delay between retries. Actual delay is `base_delay * 2^attempt`.
    pub base_delay: Duration,
    /// Maximum delay cap.
    pub max_delay: Duration,
}

impl RetryPolicy {
    /// No retries — fail on the first error.
    #[must_use]
    pub const fn none() -> Self {
        Self {
            max_retries: 0,
            base_delay: Duration::from_millis(0),
            max_delay: Duration::from_millis(0),
        }
    }

    /// Default retry policy: 3 retries with exponential backoff.
    #[must_use]
    pub const fn default_retry() -> Self {
        Self {
            max_retries: 3,
            base_delay: Duration::from_millis(50),
            max_delay: Duration::from_secs(2),
        }
    }

    /// Compute delay for the given attempt (0-indexed), capped at `max_delay`.
    #[must_use]
    pub fn delay_for(&self, attempt: u32) -> Duration {
        let factor = 1u64.checked_shl(attempt).unwrap_or(u64::MAX);
        let delay_ms = self
            .base_delay
            .as_millis()
            .saturating_mul(u128::from(factor));
        let capped = delay_ms.min(self.max_delay.as_millis());
        // Safe: max_delay.as_millis() fits in u64 for any reasonable duration
        Duration::from_millis(capped.min(u128::from(u64::MAX)) as u64)
    }
}

impl Default for RetryPolicy {
    fn default() -> Self {
        Self::none()
    }
}

/// Whether replaying a transaction closure is safe after the closure has started.
///
/// Retry helpers may need to rerun the entire closure after a commit-time
/// serialization conflict or deadlock. That replay is only safe when the
/// closure performs no externally visible side effects beyond the database
/// transaction itself, or when those effects are otherwise idempotent.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Default)]
pub enum TransactionReplaySafety {
    /// Fail closed once the user closure has started.
    ///
    /// This still permits retries for transient begin-time failures, because
    /// the closure body has not executed yet.
    #[default]
    ReplayUnsafe,
    /// Caller has verified the closure is safe to replay after it starts.
    ReplaySafe,
}

/// Validate that a savepoint name is safe for SQL identifier interpolation.
/// Rejects anything that is not `[a-zA-Z0-9_]` to prevent SQL injection.
fn validate_savepoint_name(name: &str) -> bool {
    !name.is_empty() && name.bytes().all(|b| b.is_ascii_alphanumeric() || b == b'_')
}

fn cancelled_reason(cx: &Cx) -> CancelReason {
    cx.cancel_reason().unwrap_or_default()
}

async fn wait_retry_delay(cx: &Cx, delay: Duration) -> Result<(), CancelReason> {
    if delay.is_zero() {
        cx.checkpoint().map_err(|_| cancelled_reason(cx))?;
        crate::runtime::yield_now().await;
        return cx.checkpoint().map_err(|_| cancelled_reason(cx));
    }

    let now = cx
        .timer_driver()
        .map_or_else(wall_now, |driver| driver.now());
    let mut sleeper = sleep(now, delay);
    poll_fn(|task_cx| {
        if cx.checkpoint().is_err() {
            return Poll::Ready(Err(cancelled_reason(cx)));
        }
        Pin::new(&mut sleeper).poll(task_cx).map(|()| Ok(()))
    })
    .await
}

#[cfg(test)]
async fn retry_with_policy<T, E, Op, OpFut, Pred>(
    cx: &Cx,
    policy: &RetryPolicy,
    mut op: Op,
    is_retryable: Pred,
) -> Outcome<T, E>
where
    Op: FnMut() -> OpFut,
    OpFut: Future<Output = Outcome<T, E>>,
    Pred: Fn(&E) -> bool,
{
    let mut attempt = 0u32;
    loop {
        let result = op().await;
        match &result {
            Outcome::Err(err) if is_retryable(err) && attempt < policy.max_retries => {
                let delay = policy.delay_for(attempt);
                attempt += 1;
                if let Err(reason) = wait_retry_delay(cx, delay).await {
                    return Outcome::Cancelled(reason);
                }
            }
            _ => return result,
        }
    }
}

// ─── PostgreSQL helpers ──────────────────────────────────────────────────────

#[cfg(feature = "postgres")]
mod pg {
    use super::{
        Cx, Future, Outcome, RetryPolicy, TransactionReplaySafety, validate_savepoint_name,
        wait_retry_delay,
    };
    use crate::database::postgres::{PgConnection, PgError, PgTransaction};
    use std::{
        fmt,
        sync::atomic::{AtomicBool, Ordering},
    };

    fn rollback_required_error() -> PgError {
        PgError::Protocol("transaction must roll back before commit".to_string())
    }

    /// Run a closure inside a PostgreSQL transaction.
    ///
    /// The closure receives a mutable reference to the active transaction and
    /// a `&Cx`. If the closure returns `Outcome::Ok(value)`, the transaction
    /// is committed and the value is returned. On `Outcome::Err` or
    /// `Outcome::Cancelled`, the transaction is rolled back.
    ///
    /// # Panics
    ///
    /// If the closure panics (via `Outcome::Panicked`), the transaction is
    /// rolled back before propagating the panic payload.
    pub async fn with_pg_transaction<T, F, Fut>(
        conn: &mut PgConnection,
        cx: &Cx,
        f: F,
    ) -> Outcome<T, PgError>
    where
        F: FnOnce(&mut PgTransaction<'_>, &Cx) -> Fut,
        Fut: Future<Output = Outcome<T, PgError>>,
    {
        let mut tx = match conn.begin(cx).await {
            Outcome::Ok(tx) => tx,
            Outcome::Err(e) => return Outcome::Err(e),
            Outcome::Cancelled(r) => return Outcome::Cancelled(r),
            Outcome::Panicked(p) => return Outcome::Panicked(p),
        };

        let result = f(&mut tx, cx).await;

        match result {
            Outcome::Ok(value) => {
                if tx.requires_rollback_before_commit() {
                    return Outcome::Err(rollback_required_error());
                }
                match tx.commit(cx).await {
                    Outcome::Ok(()) => Outcome::Ok(value),
                    Outcome::Err(e) => Outcome::Err(e),
                    Outcome::Cancelled(r) => Outcome::Cancelled(r),
                    Outcome::Panicked(p) => Outcome::Panicked(p),
                }
            }
            Outcome::Err(e) => {
                // Best-effort rollback; drop will handle it if this fails.
                let _ = tx.rollback(cx).await;
                Outcome::Err(e)
            }
            Outcome::Cancelled(r) => {
                let _ = tx.rollback(cx).await;
                Outcome::Cancelled(r)
            }
            Outcome::Panicked(p) => {
                let _ = tx.rollback(cx).await;
                Outcome::Panicked(p)
            }
        }
    }

    /// Run a closure inside a PostgreSQL transaction with retry on
    /// serialization failure.
    ///
    /// Serialization failures (SQLSTATE `40001`) are retried according to the
    /// given [`RetryPolicy`]. Pass [`TransactionReplaySafety::ReplaySafe`] only
    /// when rerunning the closure cannot duplicate externally visible side
    /// effects. Other errors are returned immediately.
    pub async fn with_pg_transaction_retry<T, F, MkFut>(
        conn: &mut PgConnection,
        cx: &Cx,
        policy: &RetryPolicy,
        replay_safety: TransactionReplaySafety,
        mut f: F,
    ) -> Outcome<T, PgError>
    where
        T: Send,
        F: FnMut(&mut PgTransaction<'_>, &Cx) -> MkFut + Send,
        MkFut: Future<Output = Outcome<T, PgError>> + Send,
    {
        let body_started = AtomicBool::new(false);
        let mut attempt = 0u32;

        loop {
            body_started.store(false, Ordering::Relaxed);
            let result = with_pg_transaction(conn, cx, |tx, tx_cx| {
                body_started.store(true, Ordering::Relaxed);
                f(tx, tx_cx)
            })
            .await;

            match &result {
                Outcome::Err(err)
                    if err.is_serialization_failure()
                        && (replay_safety == TransactionReplaySafety::ReplaySafe
                            || !body_started.load(Ordering::Relaxed))
                        && attempt < policy.max_retries =>
                {
                    let delay = policy.delay_for(attempt);
                    attempt += 1;
                    if let Err(reason) = wait_retry_delay(cx, delay).await {
                        return Outcome::Cancelled(reason);
                    }
                }
                _ => return result,
            }
        }
    }

    /// A PostgreSQL savepoint within an active transaction.
    ///
    /// Savepoints enable nested transaction semantics: you can roll back to
    /// a savepoint without rolling back the entire transaction.
    ///
    /// Created via [`PgSavepoint::new`].
    pub struct PgSavepoint<'a, 'tx> {
        tx: &'a mut PgTransaction<'tx>,
        name: String,
        released: bool,
    }

    impl fmt::Debug for PgSavepoint<'_, '_> {
        fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
            f.debug_struct("PgSavepoint")
                .field("name", &self.name)
                .field("released", &self.released)
                .finish()
        }
    }

    impl<'a, 'tx> PgSavepoint<'a, 'tx> {
        /// Create a new savepoint with the given name.
        ///
        /// Name must be `[a-zA-Z0-9_]+` to prevent SQL injection.
        pub async fn new(
            tx: &'a mut PgTransaction<'tx>,
            cx: &Cx,
            name: &str,
        ) -> Outcome<PgSavepoint<'a, 'tx>, PgError> {
            if !validate_savepoint_name(name) {
                return Outcome::Err(PgError::Protocol(format!(
                    "invalid savepoint name: {name:?}"
                )));
            }
            let sql = format!("SAVEPOINT {name}");
            match tx.execute_unchecked(cx, &sql).await {
                Outcome::Ok(_) => Outcome::Ok(PgSavepoint {
                    tx,
                    name: name.to_owned(),
                    released: false,
                }),
                Outcome::Err(e) => Outcome::Err(e),
                Outcome::Cancelled(r) => Outcome::Cancelled(r),
                Outcome::Panicked(p) => Outcome::Panicked(p),
            }
        }

        /// Release (commit) the savepoint.
        pub async fn release(mut self, cx: &Cx) -> Outcome<(), PgError> {
            if self.released {
                return Outcome::Err(PgError::TransactionFinished);
            }
            let sql = format!("RELEASE SAVEPOINT {}", self.name);
            match self.tx.execute_unchecked(cx, &sql).await {
                Outcome::Ok(_) => {
                    self.released = true;
                    Outcome::Ok(())
                }
                Outcome::Err(e) => Outcome::Err(e),
                Outcome::Cancelled(r) => Outcome::Cancelled(r),
                Outcome::Panicked(p) => Outcome::Panicked(p),
            }
        }

        /// Roll back to the savepoint.
        pub async fn rollback(mut self, cx: &Cx) -> Outcome<(), PgError> {
            if self.released {
                return Outcome::Err(PgError::TransactionFinished);
            }
            let rollback_sql = format!("ROLLBACK TO SAVEPOINT {}", self.name);
            match self.tx.execute_unchecked(cx, &rollback_sql).await {
                Outcome::Ok(_) => {
                    let release_sql = format!("RELEASE SAVEPOINT {}", self.name);
                    match self.tx.execute_unchecked(cx, &release_sql).await {
                        Outcome::Ok(_) => {
                            self.released = true;
                            Outcome::Ok(())
                        }
                        Outcome::Err(e) => Outcome::Err(e),
                        Outcome::Cancelled(r) => Outcome::Cancelled(r),
                        Outcome::Panicked(p) => Outcome::Panicked(p),
                    }
                }
                Outcome::Err(e) => Outcome::Err(e),
                Outcome::Cancelled(r) => Outcome::Cancelled(r),
                Outcome::Panicked(p) => Outcome::Panicked(p),
            }
        }

        /// Access the underlying transaction.
        pub fn transaction(&mut self) -> &mut PgTransaction<'tx> {
            self.tx
        }
    }

    impl Drop for PgSavepoint<'_, '_> {
        fn drop(&mut self) {
            if !self.released {
                self.tx.poison_for_rollback();
            }
        }
    }
}

#[cfg(feature = "postgres")]
pub use pg::{PgSavepoint, with_pg_transaction, with_pg_transaction_retry};

// ─── SQLite helpers ──────────────────────────────────────────────────────────

#[cfg(feature = "sqlite")]
mod sqlite {
    use super::{
        Cx, Future, Outcome, RetryPolicy, TransactionReplaySafety, validate_savepoint_name,
        wait_retry_delay,
    };
    use crate::database::sqlite::{SqliteConnection, SqliteError, SqliteTransaction};
    use std::{
        fmt,
        pin::Pin,
        sync::atomic::{AtomicBool, Ordering},
    };

    type SqliteTxFuture<'a, T> = Pin<Box<dyn Future<Output = Outcome<T, SqliteError>> + Send + 'a>>;

    fn rollback_required_error() -> SqliteError {
        SqliteError::Sqlite("transaction must roll back before commit".to_string())
    }

    /// Run a closure inside a SQLite transaction.
    ///
    /// See [`with_pg_transaction`](super::with_pg_transaction) for semantics.
    pub async fn with_sqlite_transaction<T, F>(
        conn: &SqliteConnection,
        cx: &Cx,
        f: F,
    ) -> Outcome<T, SqliteError>
    where
        F: for<'a> FnOnce(&'a SqliteTransaction<'_>, &'a Cx) -> SqliteTxFuture<'a, T>,
    {
        let tx = match conn.begin(cx).await {
            Outcome::Ok(tx) => tx,
            Outcome::Err(e) => return Outcome::Err(e),
            Outcome::Cancelled(r) => return Outcome::Cancelled(r),
            Outcome::Panicked(p) => return Outcome::Panicked(p),
        };

        let result = f(&tx, cx).await;

        match result {
            Outcome::Ok(value) => {
                if tx.requires_rollback_before_commit() {
                    return Outcome::Err(rollback_required_error());
                }
                match tx.commit(cx).await {
                    Outcome::Ok(()) => Outcome::Ok(value),
                    Outcome::Err(e) => Outcome::Err(e),
                    Outcome::Cancelled(r) => Outcome::Cancelled(r),
                    Outcome::Panicked(p) => Outcome::Panicked(p),
                }
            }
            Outcome::Err(e) => {
                let _ = tx.rollback(cx).await;
                Outcome::Err(e)
            }
            Outcome::Cancelled(r) => {
                let _ = tx.rollback(cx).await;
                Outcome::Cancelled(r)
            }
            Outcome::Panicked(p) => {
                let _ = tx.rollback(cx).await;
                Outcome::Panicked(p)
            }
        }
    }

    /// Run a closure inside a SQLite IMMEDIATE transaction.
    ///
    /// Acquires the write lock immediately, avoiding SQLITE_BUSY in the
    /// middle of a transaction.
    pub async fn with_sqlite_transaction_immediate<T, F>(
        conn: &SqliteConnection,
        cx: &Cx,
        f: F,
    ) -> Outcome<T, SqliteError>
    where
        F: for<'a> FnOnce(&'a SqliteTransaction<'_>, &'a Cx) -> SqliteTxFuture<'a, T>,
    {
        let tx = match conn.begin_immediate(cx).await {
            Outcome::Ok(tx) => tx,
            Outcome::Err(e) => return Outcome::Err(e),
            Outcome::Cancelled(r) => return Outcome::Cancelled(r),
            Outcome::Panicked(p) => return Outcome::Panicked(p),
        };

        let result = f(&tx, cx).await;

        match result {
            Outcome::Ok(value) => {
                if tx.requires_rollback_before_commit() {
                    return Outcome::Err(rollback_required_error());
                }
                match tx.commit(cx).await {
                    Outcome::Ok(()) => Outcome::Ok(value),
                    Outcome::Err(e) => Outcome::Err(e),
                    Outcome::Cancelled(r) => Outcome::Cancelled(r),
                    Outcome::Panicked(p) => Outcome::Panicked(p),
                }
            }
            Outcome::Err(e) => {
                let _ = tx.rollback(cx).await;
                Outcome::Err(e)
            }
            Outcome::Cancelled(r) => {
                let _ = tx.rollback(cx).await;
                Outcome::Cancelled(r)
            }
            Outcome::Panicked(p) => {
                let _ = tx.rollback(cx).await;
                Outcome::Panicked(p)
            }
        }
    }

    /// Run a closure inside a SQLite transaction with retry on busy/locked.
    ///
    /// `SQLITE_BUSY` and `SQLITE_LOCKED` errors are retried according to the
    /// given [`RetryPolicy`]. Pass [`TransactionReplaySafety::ReplaySafe`] only
    /// when rerunning the closure cannot duplicate externally visible side
    /// effects. Other errors are returned immediately.
    ///
    /// For write-heavy workloads, prefer [`with_sqlite_transaction_immediate`]
    /// which acquires the write lock upfront to reduce contention.
    pub async fn with_sqlite_transaction_retry<T, F>(
        conn: &SqliteConnection,
        cx: &Cx,
        policy: &RetryPolicy,
        replay_safety: TransactionReplaySafety,
        mut f: F,
    ) -> Outcome<T, SqliteError>
    where
        T: Send,
        F: for<'a> FnMut(&'a SqliteTransaction<'_>, &'a Cx) -> SqliteTxFuture<'a, T> + Send,
    {
        let body_started = AtomicBool::new(false);
        let mut attempt = 0u32;

        loop {
            body_started.store(false, Ordering::Relaxed);
            let result = with_sqlite_transaction(conn, cx, |tx, tx_cx| {
                body_started.store(true, Ordering::Relaxed);
                f(tx, tx_cx)
            })
            .await;

            match &result {
                Outcome::Err(err)
                    if (err.is_busy() || err.is_locked())
                        && (replay_safety == TransactionReplaySafety::ReplaySafe
                            || !body_started.load(Ordering::Relaxed))
                        && attempt < policy.max_retries =>
                {
                    let delay = policy.delay_for(attempt);
                    attempt += 1;
                    if let Err(reason) = wait_retry_delay(cx, delay).await {
                        return Outcome::Cancelled(reason);
                    }
                }
                _ => return result,
            }
        }
    }

    /// A SQLite savepoint within an active transaction.
    ///
    /// Created via [`SqliteSavepoint::new`].
    pub struct SqliteSavepoint<'a, 'tx> {
        tx: &'a SqliteTransaction<'tx>,
        name: String,
        released: bool,
    }

    impl fmt::Debug for SqliteSavepoint<'_, '_> {
        fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
            f.debug_struct("SqliteSavepoint")
                .field("name", &self.name)
                .field("released", &self.released)
                .finish()
        }
    }

    impl<'a, 'tx> SqliteSavepoint<'a, 'tx> {
        /// Create a new savepoint with the given name.
        ///
        /// Name must be `[a-zA-Z0-9_]+` to prevent SQL injection.
        pub async fn new(
            tx: &'a SqliteTransaction<'tx>,
            cx: &Cx,
            name: &str,
        ) -> Outcome<SqliteSavepoint<'a, 'tx>, SqliteError> {
            if !validate_savepoint_name(name) {
                return Outcome::Err(SqliteError::Sqlite(format!(
                    "invalid savepoint name: {name:?}"
                )));
            }
            let sql = format!("SAVEPOINT {name}");
            match tx.execute_unchecked(cx, &sql, &[]).await {
                Outcome::Ok(_) => Outcome::Ok(SqliteSavepoint {
                    tx,
                    name: name.to_owned(),
                    released: false,
                }),
                Outcome::Err(e) => Outcome::Err(e),
                Outcome::Cancelled(r) => Outcome::Cancelled(r),
                Outcome::Panicked(p) => Outcome::Panicked(p),
            }
        }

        /// Release (commit) the savepoint.
        pub async fn release(mut self, cx: &Cx) -> Outcome<(), SqliteError> {
            if self.released {
                return Outcome::Err(SqliteError::TransactionFinished);
            }
            let sql = format!("RELEASE SAVEPOINT {}", self.name);
            match self.tx.execute_unchecked(cx, &sql, &[]).await {
                Outcome::Ok(_) => {
                    self.released = true;
                    Outcome::Ok(())
                }
                Outcome::Err(e) => Outcome::Err(e),
                Outcome::Cancelled(r) => Outcome::Cancelled(r),
                Outcome::Panicked(p) => Outcome::Panicked(p),
            }
        }

        /// Roll back to the savepoint.
        pub async fn rollback(mut self, cx: &Cx) -> Outcome<(), SqliteError> {
            if self.released {
                return Outcome::Err(SqliteError::TransactionFinished);
            }
            let rollback_sql = format!("ROLLBACK TO SAVEPOINT {}", self.name);
            match self.tx.execute_unchecked(cx, &rollback_sql, &[]).await {
                Outcome::Ok(_) => {
                    let release_sql = format!("RELEASE SAVEPOINT {}", self.name);
                    match self.tx.execute_unchecked(cx, &release_sql, &[]).await {
                        Outcome::Ok(_) => {
                            self.released = true;
                            Outcome::Ok(())
                        }
                        Outcome::Err(e) => Outcome::Err(e),
                        Outcome::Cancelled(r) => Outcome::Cancelled(r),
                        Outcome::Panicked(p) => Outcome::Panicked(p),
                    }
                }
                Outcome::Err(e) => Outcome::Err(e),
                Outcome::Cancelled(r) => Outcome::Cancelled(r),
                Outcome::Panicked(p) => Outcome::Panicked(p),
            }
        }

        /// Access the underlying transaction.
        #[must_use]
        pub fn transaction(&self) -> &SqliteTransaction<'tx> {
            self.tx
        }
    }

    impl Drop for SqliteSavepoint<'_, '_> {
        fn drop(&mut self) {
            if !self.released {
                self.tx.poison_for_rollback();
            }
        }
    }
}

#[cfg(feature = "sqlite")]
pub use sqlite::{
    SqliteSavepoint, with_sqlite_transaction, with_sqlite_transaction_immediate,
    with_sqlite_transaction_retry,
};

// ─── MySQL helpers ───────────────────────────────────────────────────────────

#[cfg(feature = "mysql")]
mod mysql {
    use super::{
        Cx, Future, Outcome, RetryPolicy, TransactionReplaySafety, validate_savepoint_name,
        wait_retry_delay,
    };
    use crate::database::mysql::{MySqlConnection, MySqlError, MySqlTransaction};
    use std::{
        fmt,
        sync::atomic::{AtomicBool, Ordering},
    };

    fn rollback_required_error() -> MySqlError {
        MySqlError::Protocol("transaction must roll back before commit".to_string())
    }

    /// Run a closure inside a MySQL transaction.
    ///
    /// See [`with_pg_transaction`](super::with_pg_transaction) for semantics.
    pub async fn with_mysql_transaction<T, F, Fut>(
        conn: &mut MySqlConnection,
        cx: &Cx,
        f: F,
    ) -> Outcome<T, MySqlError>
    where
        F: FnOnce(&mut MySqlTransaction<'_>, &Cx) -> Fut,
        Fut: Future<Output = Outcome<T, MySqlError>>,
    {
        let mut tx = match conn.begin(cx).await {
            Outcome::Ok(tx) => tx,
            Outcome::Err(e) => return Outcome::Err(e),
            Outcome::Cancelled(r) => return Outcome::Cancelled(r),
            Outcome::Panicked(p) => return Outcome::Panicked(p),
        };

        let result = f(&mut tx, cx).await;

        match result {
            Outcome::Ok(value) => {
                if tx.requires_rollback_before_commit() {
                    return Outcome::Err(rollback_required_error());
                }
                match tx.commit(cx).await {
                    Outcome::Ok(()) => Outcome::Ok(value),
                    Outcome::Err(e) => Outcome::Err(e),
                    Outcome::Cancelled(r) => Outcome::Cancelled(r),
                    Outcome::Panicked(p) => Outcome::Panicked(p),
                }
            }
            Outcome::Err(e) => {
                let _ = tx.rollback(cx).await;
                Outcome::Err(e)
            }
            Outcome::Cancelled(r) => {
                let _ = tx.rollback(cx).await;
                Outcome::Cancelled(r)
            }
            Outcome::Panicked(p) => {
                let _ = tx.rollback(cx).await;
                Outcome::Panicked(p)
            }
        }
    }

    /// Run a closure inside a MySQL transaction with retry on deadlock.
    ///
    /// Deadlocks (error 1213) and lock wait timeouts (error 1205) are retried
    /// according to the given [`RetryPolicy`]. Pass
    /// [`TransactionReplaySafety::ReplaySafe`] only when rerunning the closure
    /// cannot duplicate externally visible side effects. Other errors are
    /// returned immediately.
    pub async fn with_mysql_transaction_retry<T, F, MkFut>(
        conn: &mut MySqlConnection,
        cx: &Cx,
        policy: &RetryPolicy,
        replay_safety: TransactionReplaySafety,
        mut f: F,
    ) -> Outcome<T, MySqlError>
    where
        T: Send,
        F: FnMut(&mut MySqlTransaction<'_>, &Cx) -> MkFut + Send,
        MkFut: Future<Output = Outcome<T, MySqlError>> + Send,
    {
        let body_started = AtomicBool::new(false);
        let mut attempt = 0u32;

        loop {
            body_started.store(false, Ordering::Relaxed);
            let result = with_mysql_transaction(conn, cx, |tx, tx_cx| {
                body_started.store(true, Ordering::Relaxed);
                f(tx, tx_cx)
            })
            .await;

            match &result {
                Outcome::Err(err)
                    if err.is_deadlock()
                        && (replay_safety == TransactionReplaySafety::ReplaySafe
                            || !body_started.load(Ordering::Relaxed))
                        && attempt < policy.max_retries =>
                {
                    let delay = policy.delay_for(attempt);
                    attempt += 1;
                    if let Err(reason) = wait_retry_delay(cx, delay).await {
                        return Outcome::Cancelled(reason);
                    }
                }
                _ => return result,
            }
        }
    }

    /// A MySQL savepoint within an active transaction.
    ///
    /// Created via [`MySqlSavepoint::new`].
    pub struct MySqlSavepoint<'a, 'tx> {
        tx: &'a mut MySqlTransaction<'tx>,
        name: String,
        released: bool,
    }

    impl fmt::Debug for MySqlSavepoint<'_, '_> {
        fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
            f.debug_struct("MySqlSavepoint")
                .field("name", &self.name)
                .field("released", &self.released)
                .finish()
        }
    }

    impl<'a, 'tx> MySqlSavepoint<'a, 'tx> {
        /// Create a new savepoint with the given name.
        ///
        /// Name must be `[a-zA-Z0-9_]+` to prevent SQL injection.
        pub async fn new(
            tx: &'a mut MySqlTransaction<'tx>,
            cx: &Cx,
            name: &str,
        ) -> Outcome<MySqlSavepoint<'a, 'tx>, MySqlError> {
            if !validate_savepoint_name(name) {
                return Outcome::Err(MySqlError::Protocol(format!(
                    "invalid savepoint name: {name:?}"
                )));
            }
            let sql = format!("SAVEPOINT {name}");
            match tx.execute_static_sql(cx, &sql).await {
                Outcome::Ok(_) => Outcome::Ok(MySqlSavepoint {
                    tx,
                    name: name.to_owned(),
                    released: false,
                }),
                Outcome::Err(e) => Outcome::Err(e),
                Outcome::Cancelled(r) => Outcome::Cancelled(r),
                Outcome::Panicked(p) => Outcome::Panicked(p),
            }
        }

        /// Release (commit) the savepoint.
        pub async fn release(mut self, cx: &Cx) -> Outcome<(), MySqlError> {
            if self.released {
                return Outcome::Err(MySqlError::TransactionFinished);
            }
            let sql = format!("RELEASE SAVEPOINT {}", self.name);
            match self.tx.execute_static_sql(cx, &sql).await {
                Outcome::Ok(_) => {
                    self.released = true;
                    Outcome::Ok(())
                }
                Outcome::Err(e) => Outcome::Err(e),
                Outcome::Cancelled(r) => Outcome::Cancelled(r),
                Outcome::Panicked(p) => Outcome::Panicked(p),
            }
        }

        /// Roll back to the savepoint.
        pub async fn rollback(mut self, cx: &Cx) -> Outcome<(), MySqlError> {
            if self.released {
                return Outcome::Err(MySqlError::TransactionFinished);
            }
            let rollback_sql = format!("ROLLBACK TO SAVEPOINT {}", self.name);
            match self.tx.execute_static_sql(cx, &rollback_sql).await {
                Outcome::Ok(_) => {
                    let release_sql = format!("RELEASE SAVEPOINT {}", self.name);
                    match self.tx.execute_static_sql(cx, &release_sql).await {
                        Outcome::Ok(_) => {
                            self.released = true;
                            Outcome::Ok(())
                        }
                        Outcome::Err(e) => Outcome::Err(e),
                        Outcome::Cancelled(r) => Outcome::Cancelled(r),
                        Outcome::Panicked(p) => Outcome::Panicked(p),
                    }
                }
                Outcome::Err(e) => Outcome::Err(e),
                Outcome::Cancelled(r) => Outcome::Cancelled(r),
                Outcome::Panicked(p) => Outcome::Panicked(p),
            }
        }

        /// Access the underlying transaction.
        pub fn transaction(&mut self) -> &mut MySqlTransaction<'tx> {
            self.tx
        }
    }

    impl Drop for MySqlSavepoint<'_, '_> {
        fn drop(&mut self) {
            if !self.released {
                self.tx.poison_for_rollback();
            }
        }
    }
}

#[cfg(feature = "mysql")]
pub use mysql::{MySqlSavepoint, with_mysql_transaction, with_mysql_transaction_retry};

// ─── Tests ───────────────────────────────────────────────────────────────────

#[cfg(test)]
mod tests {
    #![allow(
        clippy::pedantic,
        clippy::nursery,
        clippy::expect_fun_call,
        clippy::map_unwrap_or,
        clippy::cast_possible_wrap,
        clippy::future_not_send
    )]
    use super::*;
    #[cfg(feature = "sqlite")]
    use crate::conformance::{ConformanceTarget, LabRuntimeTarget, TestConfig};
    #[cfg(feature = "sqlite")]
    use crate::cx::Cx;
    #[cfg(feature = "sqlite")]
    use crate::database::sqlite::{SqliteConnection, SqliteError, SqliteValue};
    use std::task::{Context, Poll, Waker};

    #[derive(Debug, Clone, PartialEq, Eq)]
    struct RetryProbeError(&'static str);

    fn noop_waker() -> Waker {
        std::task::Waker::noop().clone()
    }

    fn init_test(name: &str) {
        crate::test_utils::init_test_logging();
        crate::test_phase!(name);
    }

    #[test]
    fn retry_policy_none() {
        init_test("retry_policy_none");
        let policy = RetryPolicy::none();
        assert_eq!(policy.max_retries, 0);
        assert_eq!(policy.base_delay, Duration::ZERO);
        crate::test_complete!("retry_policy_none");
    }

    #[test]
    fn retry_policy_default() {
        init_test("retry_policy_default");
        let policy = RetryPolicy::default_retry();
        assert_eq!(policy.max_retries, 3);
        assert_eq!(policy.base_delay, Duration::from_millis(50));
        assert_eq!(policy.max_delay, Duration::from_secs(2));
        crate::test_complete!("retry_policy_default");
    }

    #[test]
    fn retry_policy_exponential_backoff() {
        init_test("retry_policy_exponential_backoff");
        let policy = RetryPolicy {
            max_retries: 5,
            base_delay: Duration::from_millis(100),
            max_delay: Duration::from_secs(10),
        };

        // attempt 0: 100ms * 2^0 = 100ms
        assert_eq!(policy.delay_for(0), Duration::from_millis(100));
        // attempt 1: 100ms * 2^1 = 200ms
        assert_eq!(policy.delay_for(1), Duration::from_millis(200));
        // attempt 2: 100ms * 2^2 = 400ms
        assert_eq!(policy.delay_for(2), Duration::from_millis(400));
        // attempt 3: 100ms * 2^3 = 800ms
        assert_eq!(policy.delay_for(3), Duration::from_millis(800));
        crate::test_complete!("retry_policy_exponential_backoff");
    }

    #[test]
    fn retry_policy_capped_at_max() {
        init_test("retry_policy_capped_at_max");
        let policy = RetryPolicy {
            max_retries: 10,
            base_delay: Duration::from_millis(500),
            max_delay: Duration::from_secs(2),
        };

        // attempt 3: 500ms * 8 = 4000ms → capped to 2000ms
        assert_eq!(policy.delay_for(3), Duration::from_secs(2));
        // attempt 10: still capped
        assert_eq!(policy.delay_for(10), Duration::from_secs(2));
        crate::test_complete!("retry_policy_capped_at_max");
    }

    #[test]
    fn retry_policy_delay_is_monotonic_and_cap_stable() {
        init_test("retry_policy_delay_is_monotonic_and_cap_stable");
        let policy = RetryPolicy {
            max_retries: 12,
            base_delay: Duration::from_millis(125),
            max_delay: Duration::from_secs(2),
        };

        let mut previous = Duration::ZERO;
        let mut capped_attempts = 0usize;
        for attempt in 0..12 {
            let delay = policy.delay_for(attempt);
            assert!(
                delay >= previous,
                "retry delay decreased at attempt {attempt}: {delay:?} < {previous:?}"
            );
            assert!(
                delay <= policy.max_delay,
                "retry delay exceeded max at attempt {attempt}: {delay:?}"
            );
            if delay == policy.max_delay {
                capped_attempts += 1;
            }
            previous = delay;
        }

        assert_eq!(
            policy.delay_for(4),
            policy.max_delay,
            "125ms * 2^4 should reach the configured 2s cap"
        );
        assert!(
            capped_attempts >= 8,
            "once capped, all later attempts should remain at max_delay"
        );
        crate::test_complete!("retry_policy_delay_is_monotonic_and_cap_stable");
    }

    #[test]
    fn retry_policy_overflow_safe() {
        init_test("retry_policy_overflow_safe");
        let policy = RetryPolicy {
            max_retries: 100,
            base_delay: Duration::from_secs(1),
            max_delay: Duration::from_secs(60),
        };

        // Very large attempt numbers should not panic.
        let delay = policy.delay_for(63);
        assert!(delay <= Duration::from_secs(60));
        let delay = policy.delay_for(100);
        assert!(delay <= Duration::from_secs(60));
        crate::test_complete!("retry_policy_overflow_safe");
    }

    #[test]
    fn retry_policy_default_trait() {
        init_test("retry_policy_default_trait");
        let policy = RetryPolicy::default();
        // Default trait impl is `none()`
        assert_eq!(policy.max_retries, 0);
        crate::test_complete!("retry_policy_default_trait");
    }

    #[test]
    fn retry_policy_debug() {
        let policy = RetryPolicy::default_retry();
        let dbg = format!("{policy:?}");
        assert!(dbg.contains("RetryPolicy"));
        assert!(dbg.contains("max_retries"));
    }

    #[test]
    fn retry_policy_clone() {
        let policy = RetryPolicy::default_retry();
        let cloned = policy.clone();
        assert_eq!(cloned.max_retries, policy.max_retries);
        assert_eq!(cloned.base_delay, policy.base_delay);
        assert_eq!(cloned.max_delay, policy.max_delay);
    }

    #[test]
    fn wait_retry_delay_returns_cancelled_while_sleeping() {
        init_test("wait_retry_delay_returns_cancelled_while_sleeping");
        let cx = Cx::for_testing();
        let waker = noop_waker();
        let mut task_cx = Context::from_waker(&waker);
        let expected = CancelReason::user("stop");
        let mut fut = Box::pin(wait_retry_delay(&cx, Duration::from_secs(60)));

        assert!(matches!(fut.as_mut().poll(&mut task_cx), Poll::Pending));
        cx.set_cancel_reason(expected.clone());

        match fut.as_mut().poll(&mut task_cx) {
            Poll::Ready(Err(reason)) => assert_eq!(reason, expected),
            other => panic!("expected cancelled retry wait, got {other:?}"),
        }
        crate::test_complete!("wait_retry_delay_returns_cancelled_while_sleeping");
    }

    #[test]
    fn wait_retry_delay_zero_delay_returns_cancelled_after_yield() {
        init_test("wait_retry_delay_zero_delay_returns_cancelled_after_yield");
        let cx = Cx::for_testing();
        let waker = noop_waker();
        let mut task_cx = Context::from_waker(&waker);
        let expected = CancelReason::user("stop");
        let mut fut = Box::pin(wait_retry_delay(&cx, Duration::ZERO));

        assert!(matches!(fut.as_mut().poll(&mut task_cx), Poll::Pending));
        cx.set_cancel_reason(expected.clone());

        match fut.as_mut().poll(&mut task_cx) {
            Poll::Ready(Err(reason)) => assert_eq!(reason, expected),
            other => panic!("expected cancelled zero-delay retry wait, got {other:?}"),
        }
        crate::test_complete!("wait_retry_delay_zero_delay_returns_cancelled_after_yield");
    }

    #[test]
    fn retry_with_policy_stops_after_max_retries_on_persistent_error() {
        init_test("retry_with_policy_stops_after_max_retries_on_persistent_error");
        let cx = Cx::for_testing();
        let policy = RetryPolicy {
            max_retries: 3,
            base_delay: Duration::ZERO,
            max_delay: Duration::ZERO,
        };
        let mut attempts = 0u32;

        let outcome = futures_lite::future::block_on(retry_with_policy(
            &cx,
            &policy,
            || {
                attempts += 1;
                std::future::ready(Outcome::<(), RetryProbeError>::Err(RetryProbeError(
                    "retryable",
                )))
            },
            |_| true,
        ));

        match outcome {
            Outcome::Err(err) => assert_eq!(err, RetryProbeError("retryable")),
            other => panic!("expected persistent retryable error, got {other:?}"),
        }
        assert_eq!(
            attempts, 4,
            "max_retries=3 must stop after 4 total attempts"
        );
        crate::test_complete!("retry_with_policy_stops_after_max_retries_on_persistent_error");
    }

    #[test]
    fn retry_with_policy_replay_unsafe_still_retries_before_body_starts() {
        init_test("retry_with_policy_replay_unsafe_still_retries_before_body_starts");
        let cx = Cx::for_testing();
        let policy = RetryPolicy {
            max_retries: 3,
            base_delay: Duration::ZERO,
            max_delay: Duration::ZERO,
        };
        let replay_safety = TransactionReplaySafety::ReplayUnsafe;
        let body_started = std::cell::Cell::new(false);
        let mut attempts = 0u32;

        let outcome = futures_lite::future::block_on(retry_with_policy(
            &cx,
            &policy,
            || {
                body_started.set(false);
                attempts += 1;
                std::future::ready(Outcome::<(), RetryProbeError>::Err(RetryProbeError(
                    "retryable",
                )))
            },
            |_| replay_safety == TransactionReplaySafety::ReplaySafe || !body_started.get(),
        ));

        match outcome {
            Outcome::Err(err) => assert_eq!(err, RetryProbeError("retryable")),
            other => panic!("expected persistent retryable error, got {other:?}"),
        }
        assert_eq!(attempts, 4, "begin-time retryables should remain retryable");
        crate::test_complete!("retry_with_policy_replay_unsafe_still_retries_before_body_starts");
    }

    #[test]
    fn retry_with_policy_replay_unsafe_fails_closed_after_body_starts() {
        init_test("retry_with_policy_replay_unsafe_fails_closed_after_body_starts");
        let cx = Cx::for_testing();
        let policy = RetryPolicy {
            max_retries: 3,
            base_delay: Duration::ZERO,
            max_delay: Duration::ZERO,
        };
        let replay_safety = TransactionReplaySafety::ReplayUnsafe;
        let body_started = std::cell::Cell::new(false);
        let mut attempts = 0u32;

        let outcome = futures_lite::future::block_on(retry_with_policy(
            &cx,
            &policy,
            || {
                body_started.set(false);
                attempts += 1;
                body_started.set(true);
                std::future::ready(Outcome::<(), RetryProbeError>::Err(RetryProbeError(
                    "retryable",
                )))
            },
            |_| replay_safety == TransactionReplaySafety::ReplaySafe || !body_started.get(),
        ));

        match outcome {
            Outcome::Err(err) => assert_eq!(err, RetryProbeError("retryable")),
            other => panic!("expected persistent retryable error, got {other:?}"),
        }
        assert_eq!(attempts, 1, "replay-unsafe closures must not be rerun");
        crate::test_complete!("retry_with_policy_replay_unsafe_fails_closed_after_body_starts");
    }

    #[test]
    fn retry_with_policy_returns_non_retryable_error_immediately() {
        init_test("retry_with_policy_returns_non_retryable_error_immediately");
        let cx = Cx::for_testing();
        let policy = RetryPolicy {
            max_retries: 10,
            base_delay: Duration::ZERO,
            max_delay: Duration::ZERO,
        };
        let mut attempts = 0u32;

        let outcome = futures_lite::future::block_on(retry_with_policy(
            &cx,
            &policy,
            || {
                attempts += 1;
                std::future::ready(Outcome::<(), RetryProbeError>::Err(RetryProbeError(
                    "fatal",
                )))
            },
            |_| false,
        ));

        match outcome {
            Outcome::Err(err) => assert_eq!(err, RetryProbeError("fatal")),
            other => panic!("expected non-retryable error, got {other:?}"),
        }
        assert_eq!(attempts, 1, "non-retryable errors must not loop");
        crate::test_complete!("retry_with_policy_returns_non_retryable_error_immediately");
    }

    #[cfg(feature = "sqlite")]
    #[test]
    fn with_sqlite_transaction_commit_persists_under_lab_runtime() {
        init_test("with_sqlite_transaction_commit_persists_under_lab_runtime");
        let config = TestConfig::new()
            .with_seed(0x7A11_7E01)
            .with_tracing(true)
            .with_max_steps(20_000);
        let mut runtime = LabRuntimeTarget::create_runtime(config);

        let (count_inside_tx, count_after_commit, committed_name) =
            LabRuntimeTarget::block_on(&mut runtime, async move {
                let cx = Cx::current().expect("lab runtime should install a current Cx");

                let conn = match SqliteConnection::open_in_memory(&cx).await {
                    Outcome::Ok(conn) => conn,
                    other => panic!("open_in_memory failed: {other:?}"),
                };
                match conn
                    .execute_batch(
                        &cx,
                        "CREATE TABLE tx_items (id INTEGER PRIMARY KEY, name TEXT);",
                    )
                    .await
                {
                    Outcome::Ok(()) => {}
                    other => panic!("schema setup failed: {other:?}"),
                }

                let count_inside_tx = match with_sqlite_transaction(&conn, &cx, |tx, cx| {
                    Box::pin(async move {
                        match tx
                            .execute(
                                cx,
                                "INSERT INTO tx_items(name) VALUES (?1)",
                                &[SqliteValue::Text("helper_committed".to_string())],
                            )
                            .await
                        {
                            Outcome::Ok(1) => {}
                            other => panic!("insert in helper transaction failed: {other:?}"),
                        }

                        let rows_inside = match tx
                            .query(cx, "SELECT COUNT(*) AS count FROM tx_items", &[])
                            .await
                        {
                            Outcome::Ok(rows) => rows,
                            other => {
                                panic!("count query inside helper transaction failed: {other:?}")
                            }
                        };
                        let count_inside_tx = rows_inside[0]
                            .get_i64("count")
                            .expect("count column should be present");
                        tracing::info!(
                            event = %serde_json::json!({
                                "phase": "helper_inserted",
                                "count_inside_tx": count_inside_tx,
                            }),
                            "sqlite_transaction_lab_checkpoint"
                        );

                        Outcome::Ok(count_inside_tx)
                    })
                })
                .await
                {
                    Outcome::Ok(count) => count,
                    other => panic!("with_sqlite_transaction failed: {other:?}"),
                };

                let rows_after = match conn
                    .query(
                        &cx,
                        "SELECT COUNT(*) AS count, MIN(name) AS name FROM tx_items",
                        &[],
                    )
                    .await
                {
                    Outcome::Ok(rows) => rows,
                    other => panic!("query after helper commit failed: {other:?}"),
                };
                let count_after_commit = rows_after[0]
                    .get_i64("count")
                    .expect("count column should be present");
                let committed_name = rows_after[0]
                    .get_str("name")
                    .expect("name column should be present")
                    .to_string();
                tracing::info!(
                    event = %serde_json::json!({
                        "phase": "helper_committed",
                        "count_after_commit": count_after_commit,
                        "name": committed_name,
                    }),
                    "sqlite_transaction_lab_checkpoint"
                );
                conn.close().unwrap();

                (count_inside_tx, count_after_commit, committed_name)
            });

        assert_eq!(count_inside_tx, 1);
        assert_eq!(count_after_commit, 1);
        assert_eq!(committed_name, "helper_committed");
        let violations = runtime.oracles.check_all(runtime.now());
        assert!(
            violations.is_empty(),
            "transaction helper lab-runtime test should leave runtime invariants clean: {violations:?}"
        );
    }

    #[cfg(feature = "sqlite")]
    fn run_sqlite_commit_abort_isolation_permutation(abort_first: bool) -> Vec<String> {
        let config = TestConfig::new()
            .with_seed(0x7A11_7E02)
            .with_tracing(true)
            .with_max_steps(20_000);
        let mut runtime = LabRuntimeTarget::create_runtime(config);

        let rows = LabRuntimeTarget::block_on(&mut runtime, async move {
            let cx = Cx::current().expect("lab runtime should install a current Cx");

            let conn = match SqliteConnection::open_in_memory(&cx).await {
                Outcome::Ok(conn) => conn,
                other => panic!("open_in_memory failed: {other:?}"),
            };
            match conn
                .execute_batch(
                    &cx,
                    "CREATE TABLE tx_isolation_items (id INTEGER PRIMARY KEY, name TEXT);",
                )
                .await
            {
                Outcome::Ok(()) => {}
                other => panic!("schema setup failed: {other:?}"),
            }

            let run_commit = || {
                with_sqlite_transaction(&conn, &cx, |tx, cx| {
                    Box::pin(async move {
                        match tx
                            .execute(
                                cx,
                                "INSERT INTO tx_isolation_items(name) VALUES (?1)",
                                &[SqliteValue::Text("committed".to_string())],
                            )
                            .await
                        {
                            Outcome::Ok(1) => Outcome::Ok(()),
                            other => {
                                panic!("commit branch insert failed: {other:?}")
                            }
                        }
                    })
                })
            };

            let run_abort = || {
                with_sqlite_transaction(&conn, &cx, |tx, cx| {
                    Box::pin(async move {
                        match tx
                            .execute(
                                cx,
                                "INSERT INTO tx_isolation_items(name) VALUES (?1)",
                                &[SqliteValue::Text("rolled_back".to_string())],
                            )
                            .await
                        {
                            Outcome::Ok(1) => {}
                            other => panic!("abort branch insert failed: {other:?}"),
                        }
                        Outcome::<(), SqliteError>::Err(SqliteError::Sqlite(
                            "metamorphic rollback branch".to_string(),
                        ))
                    })
                })
            };

            if abort_first {
                match run_abort().await {
                    Outcome::Err(SqliteError::Sqlite(message))
                        if message == "metamorphic rollback branch" => {}
                    other => panic!("abort-first branch should roll back: {other:?}"),
                }
                match run_commit().await {
                    Outcome::Ok(()) => {}
                    other => panic!("commit-after-abort branch failed: {other:?}"),
                }
            } else {
                match run_commit().await {
                    Outcome::Ok(()) => {}
                    other => panic!("commit-first branch failed: {other:?}"),
                }
                match run_abort().await {
                    Outcome::Err(SqliteError::Sqlite(message))
                        if message == "metamorphic rollback branch" => {}
                    other => panic!("abort-after-commit branch should roll back: {other:?}"),
                }
            }

            let rows = match conn
                .query(&cx, "SELECT name FROM tx_isolation_items ORDER BY id", &[])
                .await
            {
                Outcome::Ok(rows) => rows,
                other => panic!("final query failed: {other:?}"),
            };

            let names = rows
                .iter()
                .map(|row| {
                    row.get_str("name")
                        .expect("name column should be present")
                        .to_string()
                })
                .collect::<Vec<_>>();
            conn.close().unwrap();
            names
        });

        let violations = runtime.oracles.check_all(runtime.now());
        assert!(
            violations.is_empty(),
            "sqlite transaction permutation should leave runtime invariants clean: {violations:?}"
        );

        rows
    }

    #[cfg(feature = "sqlite")]
    #[test]
    fn metamorphic_sqlite_commit_abort_isolation() {
        init_test("metamorphic_sqlite_commit_abort_isolation");

        let abort_then_commit = run_sqlite_commit_abort_isolation_permutation(true);
        let commit_then_abort = run_sqlite_commit_abort_isolation_permutation(false);

        assert_eq!(abort_then_commit, vec!["committed".to_string()]);
        assert_eq!(commit_then_abort, vec!["committed".to_string()]);
        assert_eq!(abort_then_commit, commit_then_abort);

        crate::test_complete!("metamorphic_sqlite_commit_abort_isolation");
    }

    #[cfg(feature = "sqlite")]
    #[test]
    fn with_sqlite_transaction_dropped_savepoint_refuses_commit() {
        init_test("with_sqlite_transaction_dropped_savepoint_refuses_commit");

        let mut runtime = LabRuntimeTarget::create_runtime(TestConfig::default());
        LabRuntimeTarget::block_on(&mut runtime, async move {
            let cx = Cx::current().expect("lab runtime should install a current Cx");
            let conn = match SqliteConnection::open_in_memory(&cx).await {
                Outcome::Ok(conn) => conn,
                other => panic!("open_in_memory failed: {other:?}"),
            };

            match conn
                .execute(
                    &cx,
                    "CREATE TABLE savepoint_guard_items (id INTEGER PRIMARY KEY, name TEXT)",
                    &[],
                )
                .await
            {
                Outcome::Ok(_) => {}
                other => panic!("schema setup failed: {other:?}"),
            }

            let tx_outcome = with_sqlite_transaction(&conn, &cx, |tx, cx| {
                Box::pin(async move {
                    match tx
                        .execute(
                            cx,
                            "INSERT INTO savepoint_guard_items(name) VALUES (?1)",
                            &[SqliteValue::Text("outer".to_string())],
                        )
                        .await
                    {
                        Outcome::Ok(_) => {}
                        other => panic!("outer insert failed: {other:?}"),
                    }

                    let savepoint = match SqliteSavepoint::new(tx, cx, "sp1").await {
                        Outcome::Ok(savepoint) => savepoint,
                        other => panic!("savepoint create failed: {other:?}"),
                    };

                    match savepoint
                        .transaction()
                        .execute(
                            cx,
                            "INSERT INTO savepoint_guard_items(name) VALUES (?1)",
                            &[SqliteValue::Text("inner".to_string())],
                        )
                        .await
                    {
                        Outcome::Ok(_) => {}
                        other => panic!("inner insert failed: {other:?}"),
                    }

                    drop(savepoint);
                    Outcome::Ok(())
                })
            })
            .await;

            match tx_outcome {
                Outcome::Err(SqliteError::Sqlite(msg)) => {
                    assert!(msg.contains("must roll back before commit"), "got: {msg}");
                }
                other => panic!("expected rollback-required error, got {other:?}"),
            }

            let rows = match conn
                .query(
                    &cx,
                    "SELECT COUNT(*) AS count FROM savepoint_guard_items",
                    &[],
                )
                .await
            {
                Outcome::Ok(rows) => rows,
                other => panic!("count query after dropped savepoint failed: {other:?}"),
            };

            let count = rows[0].get_i64("count").expect("count column");
            assert_eq!(count, 0, "dropped savepoint must prevent commit");
        });

        crate::test_complete!("with_sqlite_transaction_dropped_savepoint_refuses_commit");
    }

    #[cfg(feature = "sqlite")]
    #[test]
    fn with_sqlite_transaction_savepoint_rollback_discards_inner_changes() {
        init_test("with_sqlite_transaction_savepoint_rollback_discards_inner_changes");

        let mut runtime = LabRuntimeTarget::create_runtime(TestConfig::default());
        LabRuntimeTarget::block_on(&mut runtime, async move {
            let cx = Cx::current().expect("lab runtime should install a current Cx");
            let conn = match SqliteConnection::open_in_memory(&cx).await {
                Outcome::Ok(conn) => conn,
                other => panic!("open_in_memory failed: {other:?}"),
            };

            match conn
                .execute(
                    &cx,
                    "CREATE TABLE savepoint_rollback_items (id INTEGER PRIMARY KEY, name TEXT)",
                    &[],
                )
                .await
            {
                Outcome::Ok(_) => {}
                other => panic!("schema setup failed: {other:?}"),
            }

            let tx_outcome = with_sqlite_transaction(&conn, &cx, |tx, cx| {
                Box::pin(async move {
                    match tx
                        .execute(
                            cx,
                            "INSERT INTO savepoint_rollback_items(name) VALUES (?1)",
                            &[SqliteValue::Text("outer_before".to_string())],
                        )
                        .await
                    {
                        Outcome::Ok(_) => {}
                        other => panic!("outer_before insert failed: {other:?}"),
                    }

                    let savepoint = match SqliteSavepoint::new(tx, cx, "sp1").await {
                        Outcome::Ok(savepoint) => savepoint,
                        other => panic!("savepoint create failed: {other:?}"),
                    };

                    match savepoint
                        .transaction()
                        .execute(
                            cx,
                            "INSERT INTO savepoint_rollback_items(name) VALUES (?1)",
                            &[SqliteValue::Text("inner".to_string())],
                        )
                        .await
                    {
                        Outcome::Ok(_) => {}
                        other => panic!("inner insert failed: {other:?}"),
                    }

                    match savepoint.rollback(cx).await {
                        Outcome::Ok(()) => {}
                        other => panic!("savepoint rollback failed: {other:?}"),
                    }

                    match tx
                        .execute(
                            cx,
                            "INSERT INTO savepoint_rollback_items(name) VALUES (?1)",
                            &[SqliteValue::Text("outer_after".to_string())],
                        )
                        .await
                    {
                        Outcome::Ok(_) => {}
                        other => panic!("outer_after insert failed: {other:?}"),
                    }

                    Outcome::Ok(())
                })
            })
            .await;

            match tx_outcome {
                Outcome::Ok(()) => {}
                other => panic!("expected outer transaction commit, got {other:?}"),
            }

            let rows = match conn
                .query(
                    &cx,
                    "SELECT name FROM savepoint_rollback_items ORDER BY id",
                    &[],
                )
                .await
            {
                Outcome::Ok(rows) => rows,
                other => panic!("query after rollback failed: {other:?}"),
            };

            let names = rows
                .iter()
                .map(|row| row.get_str("name").expect("name column").to_string())
                .collect::<Vec<_>>();
            assert_eq!(
                names,
                vec!["outer_before".to_string(), "outer_after".to_string()]
            );
        });

        crate::test_complete!("with_sqlite_transaction_savepoint_rollback_discards_inner_changes");
    }

    #[cfg(feature = "sqlite")]
    #[test]
    fn with_sqlite_transaction_savepoint_rollback_removes_marker() {
        init_test("with_sqlite_transaction_savepoint_rollback_removes_marker");

        let mut runtime = LabRuntimeTarget::create_runtime(TestConfig::default());
        LabRuntimeTarget::block_on(&mut runtime, async move {
            let cx = Cx::current().expect("lab runtime should install a current Cx");
            let conn = match SqliteConnection::open_in_memory(&cx).await {
                Outcome::Ok(conn) => conn,
                other => panic!("open_in_memory failed: {other:?}"),
            };

            match conn
                .execute(
                    &cx,
                    "CREATE TABLE savepoint_marker_items (id INTEGER PRIMARY KEY, name TEXT)",
                    &[],
                )
                .await
            {
                Outcome::Ok(_) => {}
                other => panic!("schema setup failed: {other:?}"),
            }

            let tx_outcome = with_sqlite_transaction(&conn, &cx, |tx, cx| {
                Box::pin(async move {
                    let savepoint = match SqliteSavepoint::new(tx, cx, "sp1").await {
                        Outcome::Ok(savepoint) => savepoint,
                        other => panic!("savepoint create failed: {other:?}"),
                    };

                    match savepoint
                        .transaction()
                        .execute(
                            cx,
                            "INSERT INTO savepoint_marker_items(name) VALUES (?1)",
                            &[SqliteValue::Text("inner".to_string())],
                        )
                        .await
                    {
                        Outcome::Ok(_) => {}
                        other => panic!("inner insert failed: {other:?}"),
                    }

                    match savepoint.rollback(cx).await {
                        Outcome::Ok(()) => {}
                        other => panic!("savepoint rollback failed: {other:?}"),
                    }

                    match tx.execute_unchecked(cx, "RELEASE SAVEPOINT sp1", &[]).await {
                        Outcome::Err(SqliteError::Sqlite(msg)) => {
                            assert!(
                                msg.contains("no such savepoint")
                                    || msg.contains("no such savepoint: sp1"),
                                "expected missing-savepoint error, got: {msg}"
                            );
                        }
                        other => {
                            panic!("helper rollback must remove savepoint marker, got {other:?}")
                        }
                    }

                    match tx
                        .execute(
                            cx,
                            "INSERT INTO savepoint_marker_items(name) VALUES (?1)",
                            &[SqliteValue::Text("outer".to_string())],
                        )
                        .await
                    {
                        Outcome::Ok(_) => {}
                        other => panic!("outer insert failed: {other:?}"),
                    }

                    Outcome::Ok(())
                })
            })
            .await;

            match tx_outcome {
                Outcome::Ok(()) => {}
                other => panic!("expected outer transaction commit, got {other:?}"),
            }

            let rows = match conn
                .query(
                    &cx,
                    "SELECT name FROM savepoint_marker_items ORDER BY id",
                    &[],
                )
                .await
            {
                Outcome::Ok(rows) => rows,
                other => panic!("query after rollback-marker check failed: {other:?}"),
            };

            let names = rows
                .iter()
                .map(|row| row.get_str("name").expect("name column").to_string())
                .collect::<Vec<_>>();
            assert_eq!(names, vec!["outer".to_string()]);
        });

        crate::test_complete!("with_sqlite_transaction_savepoint_rollback_removes_marker");
    }

    #[cfg(feature = "sqlite")]
    #[test]
    fn with_sqlite_transaction_raw_outer_release_cascades_inner_savepoint() {
        init_test("with_sqlite_transaction_raw_outer_release_cascades_inner_savepoint");

        let mut runtime = LabRuntimeTarget::create_runtime(TestConfig::default());
        LabRuntimeTarget::block_on(&mut runtime, async move {
            let cx = Cx::current().expect("lab runtime should install a current Cx");
            let conn = match SqliteConnection::open_in_memory(&cx).await {
                Outcome::Ok(conn) => conn,
                other => panic!("open_in_memory failed: {other:?}"),
            };

            match conn
                .execute(
                    &cx,
                    "CREATE TABLE savepoint_cascade_items (id INTEGER PRIMARY KEY, name TEXT)",
                    &[],
                )
                .await
            {
                Outcome::Ok(_) => {}
                other => panic!("schema setup failed: {other:?}"),
            }

            let tx_outcome = with_sqlite_transaction(&conn, &cx, |tx, cx| {
                Box::pin(async move {
                    match tx.execute_unchecked(cx, "SAVEPOINT outer_sp", &[]).await {
                        Outcome::Ok(_) => {}
                        other => panic!("outer savepoint create failed: {other:?}"),
                    }
                    match tx.execute_unchecked(cx, "SAVEPOINT inner_sp", &[]).await {
                        Outcome::Ok(_) => {}
                        other => panic!("inner savepoint create failed: {other:?}"),
                    }

                    match tx
                        .execute(
                            cx,
                            "INSERT INTO savepoint_cascade_items(name) VALUES (?1)",
                            &[SqliteValue::Text("nested".to_string())],
                        )
                        .await
                    {
                        Outcome::Ok(_) => {}
                        other => panic!("nested insert failed: {other:?}"),
                    }

                    match tx
                        .execute_unchecked(cx, "RELEASE SAVEPOINT outer_sp", &[])
                        .await
                    {
                        Outcome::Ok(_) => {}
                        other => panic!("outer release failed: {other:?}"),
                    }

                    match tx
                        .execute_unchecked(cx, "ROLLBACK TO SAVEPOINT inner_sp", &[])
                        .await
                    {
                        Outcome::Err(SqliteError::Sqlite(msg)) => {
                            assert!(
                                msg.contains("no such savepoint")
                                    || msg.contains("no such savepoint: inner_sp"),
                                "expected cascaded inner savepoint removal, got: {msg}"
                            );
                        }
                        other => panic!(
                            "releasing outer savepoint must cascade inner savepoint, got {other:?}"
                        ),
                    }

                    match tx
                        .execute(
                            cx,
                            "INSERT INTO savepoint_cascade_items(name) VALUES (?1)",
                            &[SqliteValue::Text("after".to_string())],
                        )
                        .await
                    {
                        Outcome::Ok(_) => {}
                        other => panic!("post-cascade insert failed: {other:?}"),
                    }

                    Outcome::Ok(())
                })
            })
            .await;

            match tx_outcome {
                Outcome::Ok(()) => {}
                other => panic!("expected outer transaction commit, got {other:?}"),
            }

            let rows = match conn
                .query(
                    &cx,
                    "SELECT name FROM savepoint_cascade_items ORDER BY id",
                    &[],
                )
                .await
            {
                Outcome::Ok(rows) => rows,
                other => panic!("query after cascade failed: {other:?}"),
            };

            let names = rows
                .iter()
                .map(|row| row.get_str("name").expect("name column").to_string())
                .collect::<Vec<_>>();
            assert_eq!(names, vec!["nested".to_string(), "after".to_string()]);
        });

        crate::test_complete!("with_sqlite_transaction_raw_outer_release_cascades_inner_savepoint");
    }

    #[cfg(feature = "sqlite")]
    #[test]
    fn with_sqlite_transaction_cancelled_savepoint_release_poison_commit() {
        init_test("with_sqlite_transaction_cancelled_savepoint_release_poison_commit");

        let mut runtime = LabRuntimeTarget::create_runtime(TestConfig::default());
        LabRuntimeTarget::block_on(&mut runtime, async move {
            let cx = Cx::current().expect("lab runtime should install a current Cx");
            let conn = match SqliteConnection::open_in_memory(&cx).await {
                Outcome::Ok(conn) => conn,
                other => panic!("open_in_memory failed: {other:?}"),
            };

            match conn
                    .execute(
                        &cx,
                        "CREATE TABLE savepoint_release_cancel_items (id INTEGER PRIMARY KEY, name TEXT)",
                        &[],
                    )
                    .await
                {
                    Outcome::Ok(_) => {}
                    other => panic!("schema setup failed: {other:?}"),
                }

            let tx_outcome = with_sqlite_transaction(&conn, &cx, |tx, cx| {
                Box::pin(async move {
                    match tx
                        .execute(
                            cx,
                            "INSERT INTO savepoint_release_cancel_items(name) VALUES (?1)",
                            &[SqliteValue::Text("outer".to_string())],
                        )
                        .await
                    {
                        Outcome::Ok(_) => {}
                        other => panic!("outer insert failed: {other:?}"),
                    }

                    let savepoint = match SqliteSavepoint::new(tx, cx, "sp1").await {
                        Outcome::Ok(savepoint) => savepoint,
                        other => panic!("savepoint create failed: {other:?}"),
                    };

                    let cancelled = Cx::for_testing();
                    let expected = CancelReason::user("cancel savepoint release");
                    cancelled.set_cancel_reason(expected.clone());
                    match savepoint.release(&cancelled).await {
                        Outcome::Cancelled(reason) => assert_eq!(reason, expected),
                        other => panic!("expected cancelled savepoint release, got {other:?}"),
                    }

                    Outcome::Ok(())
                })
            })
            .await;

            match tx_outcome {
                Outcome::Err(SqliteError::Sqlite(msg)) => {
                    assert!(msg.contains("must roll back before commit"), "got: {msg}");
                }
                other => panic!("expected rollback-required error, got {other:?}"),
            }

            let rows = match conn
                .query(
                    &cx,
                    "SELECT COUNT(*) AS count FROM savepoint_release_cancel_items",
                    &[],
                )
                .await
            {
                Outcome::Ok(rows) => rows,
                other => panic!("count query after cancelled release failed: {other:?}"),
            };

            let count = rows[0].get_i64("count").expect("count column");
            assert_eq!(count, 0, "cancelled savepoint release must prevent commit");
        });

        crate::test_complete!("with_sqlite_transaction_cancelled_savepoint_release_poison_commit");
    }
}