fsqlite-mvcc 0.1.2

MVCC page-level versioning for concurrent writers
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
//! §5.10.2 Deterministic Rebase & Index Regeneration — bd-1h3b
//!
//! Implements the rebase algorithm for `UpdateExpression` intents against a new
//! committed base. Rebase proceeds only when no blocking reads or structural
//! effects exist in the intent log; it replays expressions deterministically
//! against the new base row, enforces constraints, and regenerates index ops.
//!
//! **Invariant:** Rebase runs in the committing txn's context BEFORE entering
//! the serialized commit section (§5.9). The coordinator never performs B-tree
//! traversal or expression evaluation.

use std::sync::atomic::{AtomicU64, Ordering};

use fsqlite_types::TypeAffinity;
use fsqlite_types::glossary::{
    ColumnIdx, IndexId, IntentOp, IntentOpKind, RebaseExpr, RowId, Snapshot, StructuralEffects,
    TableId,
};
use fsqlite_types::record::{parse_record, serialize_record};
use fsqlite_types::value::SqliteValue;
use tracing::{debug, warn};

use crate::index_regen::{
    IndexDef, IndexRegenError, IndexRegenOps, UniqueChecker, apply_column_updates,
    eval_rebase_expr, regenerate_index_ops,
};

/// Bead identifier for tracing.
const BEAD_ID: &str = "bd-1h3b";

// ── Rebase metrics (bd-688.5) ──────────────────────────────────────────────

/// Total number of deterministic rebase attempts.
static FSQLITE_REBASE_ATTEMPTS_TOTAL: AtomicU64 = AtomicU64::new(0);
/// Total number of rebase conflicts (rebase failures).
static FSQLITE_REBASE_CONFLICTS_TOTAL: AtomicU64 = AtomicU64::new(0);
/// Total successful rebases.
static FSQLITE_REBASE_SUCCESSES_TOTAL: AtomicU64 = AtomicU64::new(0);

/// Snapshot of rebase metrics.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub struct RebaseMetricsSnapshot {
    /// Total rebase attempts.
    pub attempts_total: u64,
    /// Total rebase conflicts (failures).
    pub conflicts_total: u64,
    /// Total successful rebases.
    pub successes_total: u64,
}

/// Read a point-in-time snapshot of rebase metrics.
#[must_use]
pub fn rebase_metrics_snapshot() -> RebaseMetricsSnapshot {
    RebaseMetricsSnapshot {
        attempts_total: FSQLITE_REBASE_ATTEMPTS_TOTAL.load(Ordering::Relaxed),
        conflicts_total: FSQLITE_REBASE_CONFLICTS_TOTAL.load(Ordering::Relaxed),
        successes_total: FSQLITE_REBASE_SUCCESSES_TOTAL.load(Ordering::Relaxed),
    }
}

/// Reset rebase metrics to zero (tests/diagnostics).
pub fn reset_rebase_metrics() {
    FSQLITE_REBASE_ATTEMPTS_TOTAL.store(0, Ordering::Relaxed);
    FSQLITE_REBASE_CONFLICTS_TOTAL.store(0, Ordering::Relaxed);
    FSQLITE_REBASE_SUCCESSES_TOTAL.store(0, Ordering::Relaxed);
}

// ── Error types ──────────────────────────────────────────────────────────────

/// Errors during deterministic rebase.
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum RebaseError {
    /// Schema epoch mismatch between intent and current snapshot.
    SchemaEpochMismatch { expected: u64, actual: u64 },
    /// A blocking read exists in the intent log (non-empty `footprint.reads`).
    BlockingReads { op_index: usize },
    /// A structural effect exists in the intent log.
    StructuralEffects { op_index: usize, effects: u32 },
    /// The target rowid was not found in the new committed base.
    TargetRowNotFound { table: TableId, key: RowId },
    /// NOT NULL constraint violation on the rebased row.
    NotNullViolation { table: TableId, column_idx: u32 },
    /// CHECK constraint violation on the rebased row.
    CheckViolation { table: TableId },
    /// UNIQUE index constraint violation during index regeneration.
    UniqueViolation {
        index_id: IndexId,
        conflicting_rowid: RowId,
    },
    /// Error during index regeneration.
    IndexRegenError(IndexRegenError),
    /// Malformed record in the committed base.
    MalformedRecord { table: TableId, key: RowId },
}

impl std::fmt::Display for RebaseError {
    #[allow(clippy::too_many_lines)]
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            Self::SchemaEpochMismatch { expected, actual } => {
                write!(
                    f,
                    "SQLITE_SCHEMA: schema epoch mismatch (expected {expected}, got {actual})"
                )
            }
            Self::BlockingReads { op_index } => {
                write!(
                    f,
                    "SQLITE_BUSY_SNAPSHOT: blocking reads at intent op {op_index}"
                )
            }
            Self::StructuralEffects { op_index, effects } => {
                write!(
                    f,
                    "SQLITE_BUSY_SNAPSHOT: structural effects 0x{effects:x} at intent op {op_index}"
                )
            }
            Self::TargetRowNotFound { table, key } => {
                write!(
                    f,
                    "rebase target not found: table {} rowid {}",
                    table.get(),
                    key.get()
                )
            }
            Self::NotNullViolation { table, column_idx } => {
                write!(
                    f,
                    "NOT NULL constraint failed: table {} column {column_idx}",
                    table.get()
                )
            }
            Self::CheckViolation { table } => {
                write!(f, "CHECK constraint failed: table {}", table.get())
            }
            Self::UniqueViolation {
                index_id,
                conflicting_rowid,
            } => {
                write!(
                    f,
                    "UNIQUE constraint failed: index {} conflicting rowid {}",
                    index_id.get(),
                    conflicting_rowid.get()
                )
            }
            Self::IndexRegenError(e) => write!(f, "index regen: {e}"),
            Self::MalformedRecord { table, key } => {
                write!(
                    f,
                    "malformed record: table {} rowid {}",
                    table.get(),
                    key.get()
                )
            }
        }
    }
}

impl std::error::Error for RebaseError {}

impl From<IndexRegenError> for RebaseError {
    fn from(e: IndexRegenError) -> Self {
        match e {
            IndexRegenError::UniqueConstraintViolation {
                index_id,
                conflicting_rowid,
            } => Self::UniqueViolation {
                index_id,
                conflicting_rowid,
            },
            other => Self::IndexRegenError(other),
        }
    }
}

// ── Table schema for constraint checking ─────────────────────────────────────

/// Lightweight table schema sufficient for rebase-time constraint enforcement.
#[derive(Debug, Clone)]
pub struct TableConstraints {
    /// Table identifier.
    pub table_id: TableId,
    /// Per-column NOT NULL flags (true = NOT NULL).
    pub not_null: Vec<bool>,
    /// Per-column type affinities.
    pub affinities: Vec<TypeAffinity>,
    /// CHECK constraint expressions. Each must evaluate to truthy or NULL to pass.
    pub check_exprs: Vec<RebaseExpr>,
}

/// Trait for reading committed base rows during rebase.
pub trait BaseRowReader {
    /// Look up the record bytes for `(table, rowid)` in the new committed base.
    /// Returns `None` if the row does not exist.
    fn read_base_row(&self, table: TableId, key: RowId) -> Option<Vec<u8>>;
}

/// Trait for looking up table schema and indexes during rebase.
pub trait RebaseSchemaLookup {
    /// Get the table constraints for the given table.
    fn table_constraints(&self, table: TableId) -> Option<TableConstraints>;
    /// Get the secondary indexes for the given table.
    fn table_indexes(&self, table: TableId) -> Vec<IndexDef>;
}

// ── Eligibility check ────────────────────────────────────────────────────────

/// Result of rebase eligibility check.
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum RebaseEligibility {
    /// Eligible: all ops have empty reads and NONE structural effects.
    Eligible,
    /// Ineligible: a blocking read exists.
    BlockingReads { op_index: usize },
    /// Ineligible: structural effects exist.
    StructuralEffects { op_index: usize, effects: u32 },
}

/// Check whether an intent log is eligible for deterministic rebase (§5.10.2).
///
/// Rebase proceeds when ALL of:
/// 1. `footprint.reads` is empty for every `IntentOp`
/// 2. `footprint.structural == NONE` for every `IntentOp`
#[must_use]
pub fn check_rebase_eligibility(intent_log: &[IntentOp]) -> RebaseEligibility {
    for (i, op) in intent_log.iter().enumerate() {
        if !op.footprint.reads.is_empty() {
            debug!(
                bead_id = BEAD_ID,
                op_index = i,
                reads = op.footprint.reads.len(),
                "rebase blocked: non-empty reads"
            );
            return RebaseEligibility::BlockingReads { op_index: i };
        }
        if op.footprint.structural != StructuralEffects::NONE {
            debug!(
                bead_id = BEAD_ID,
                op_index = i,
                effects = op.footprint.structural.bits(),
                "rebase blocked: structural effects"
            );
            return RebaseEligibility::StructuralEffects {
                op_index: i,
                effects: op.footprint.structural.bits(),
            };
        }
    }
    RebaseEligibility::Eligible
}

// ── Schema epoch guard ───────────────────────────────────────────────────────

/// Verify that the intent log's schema epoch matches the current committed
/// snapshot's schema epoch.
///
/// Returns `Err` if any intent op has a schema epoch different from the
/// snapshot's. This catches DDL-concurrent-with-DML races.
pub fn check_schema_epoch(
    intent_log: &[IntentOp],
    current_snapshot: Snapshot,
) -> Result<(), RebaseError> {
    let current_epoch = current_snapshot.schema_epoch.get();
    for op in intent_log {
        if op.schema_epoch != current_epoch {
            warn!(
                bead_id = BEAD_ID,
                expected = current_epoch,
                actual = op.schema_epoch,
                "SQLITE_SCHEMA: schema epoch mismatch"
            );
            return Err(RebaseError::SchemaEpochMismatch {
                expected: current_epoch,
                actual: op.schema_epoch,
            });
        }
    }
    Ok(())
}

// ── Constraint enforcement ───────────────────────────────────────────────────

/// Enforce NOT NULL and CHECK constraints on a rebased row.
fn enforce_constraints(
    updated_row: &[SqliteValue],
    constraints: &TableConstraints,
) -> Result<(), RebaseError> {
    // NOT NULL checks.
    for (i, &is_not_null) in constraints.not_null.iter().enumerate() {
        let val = updated_row.get(i).unwrap_or(&SqliteValue::Null);
        if is_not_null && matches!(val, SqliteValue::Null) {
            return Err(RebaseError::NotNullViolation {
                table: constraints.table_id,
                #[allow(clippy::cast_possible_truncation)]
                column_idx: i as u32,
            });
        }
    }

    // CHECK constraints: each must evaluate to truthy or NULL to pass.
    for check_expr in &constraints.check_exprs {
        let result =
            eval_rebase_expr(check_expr, updated_row).map_err(|_| RebaseError::CheckViolation {
                table: constraints.table_id,
            })?;
        // Per SQLite: CHECK passes if result is true (non-zero) OR NULL.
        // Fails only if result is exactly false (zero).
        // C SQLite uses integer truncation for truthiness.
        let is_false = match result {
            SqliteValue::Null => false,
            v => v.to_integer() == 0,
        };
        if is_false {
            return Err(RebaseError::CheckViolation {
                table: constraints.table_id,
            });
        }
    }

    Ok(())
}

// ── Single UpdateExpression replay ───────────────────────────────────────────

/// The result of replaying a single `UpdateExpression` against the new base.
#[derive(Debug, Clone, PartialEq)]
pub struct ReplayResult {
    /// The new record bytes for the updated row.
    pub new_record: Vec<u8>,
    /// Index operations to emit (from index regeneration).
    pub index_ops: Vec<IntentOpKind>,
}

/// Replay a single `UpdateExpression` against the new committed base row.
///
/// Steps (from spec §5.10.2):
/// 1. Read target row from new committed base
/// 2. If not found → abort
/// 3. Evaluate column_updates against new base row
/// 4. Apply affinity coercion
/// 5. Produce updated record
/// 6. Enforce NOT NULL / CHECK constraints
/// 7. Regenerate index ops
pub fn replay_update_expression(
    table: TableId,
    key: RowId,
    column_updates: &[(ColumnIdx, RebaseExpr)],
    base_reader: &dyn BaseRowReader,
    schema: &dyn RebaseSchemaLookup,
    unique_checker: &dyn UniqueChecker,
) -> Result<ReplayResult, RebaseError> {
    let _ = BEAD_ID;

    // Step 1: Read the target row from the new committed base.
    let base_record = base_reader
        .read_base_row(table, key)
        .ok_or(RebaseError::TargetRowNotFound { table, key })?;

    // Parse the base record.
    let base_row = parse_record(&base_record).ok_or(RebaseError::MalformedRecord { table, key })?;

    // Get table constraints and indexes from schema.
    let constraints = schema.table_constraints(table);
    let indexes = schema.table_indexes(table);

    // Step 3-4: Evaluate column_updates against the new base row.
    // Use constraint affinities when available; fall back to index-derived
    // table column affinities so that the materialized row is computed with
    // the same type coercion as the index keys generated by
    // `regenerate_index_ops` (which always uses index affinities).
    let affinities = constraints
        .as_ref()
        .map(|c| c.affinities.as_slice())
        .or_else(|| {
            indexes
                .first()
                .map(|idx| idx.table_column_affinities.as_slice())
        })
        .unwrap_or(&[]);

    let updated_row = apply_column_updates(&base_row, column_updates, affinities)?;

    // Step 5: Produce the updated record bytes.
    let new_record = serialize_record(&updated_row);

    // Step 6: Enforce constraints.
    if let Some(ref c) = constraints {
        enforce_constraints(&updated_row, c)?;
    }

    // Step 7: Regenerate index ops.
    let regen_result = if indexes.is_empty() {
        IndexRegenOps { ops: vec![] }
    } else {
        regenerate_index_ops(&base_record, column_updates, &indexes, key, unique_checker)?
    };

    Ok(ReplayResult {
        new_record,
        index_ops: regen_result.ops,
    })
}

// ── Full rebase pipeline ─────────────────────────────────────────────────────

/// Result of a full deterministic rebase.
#[derive(Debug, Clone, PartialEq)]
pub struct RebaseResult {
    /// The rebased intent log with stale ops replaced.
    pub rebased_ops: Vec<IntentOpKind>,
    /// Number of `UpdateExpression` ops that were replayed.
    pub replayed_count: usize,
}

/// Execute the full deterministic rebase pipeline (§5.10.2).
///
/// 1. Check schema epoch
/// 2. Check rebase eligibility (no blocking reads, no structural effects)
/// 3. For each `UpdateExpression`: replay against new base, regenerate index ops
/// 4. For non-`UpdateExpression` ops: pass through unchanged
#[allow(clippy::too_many_lines)]
pub fn deterministic_rebase(
    intent_log: &[IntentOp],
    current_snapshot: Snapshot,
    base_reader: &dyn BaseRowReader,
    schema: &dyn RebaseSchemaLookup,
    unique_checker: &dyn UniqueChecker,
) -> Result<RebaseResult, RebaseError> {
    FSQLITE_REBASE_ATTEMPTS_TOTAL.fetch_add(1, Ordering::Relaxed);

    // Step 1: Schema epoch guard.
    if let Err(e) = check_schema_epoch(intent_log, current_snapshot) {
        FSQLITE_REBASE_CONFLICTS_TOTAL.fetch_add(1, Ordering::Relaxed);
        warn!(
            target: "fsqlite_mvcc::rebase",
            bead_id = BEAD_ID,
            conflict = %e,
            intents = intent_log.len(),
            "rebase conflict: schema epoch mismatch",
        );
        return Err(e);
    }

    // Step 2: Eligibility check.
    match check_rebase_eligibility(intent_log) {
        RebaseEligibility::Eligible => {}
        RebaseEligibility::BlockingReads { op_index } => {
            FSQLITE_REBASE_CONFLICTS_TOTAL.fetch_add(1, Ordering::Relaxed);
            warn!(
                target: "fsqlite_mvcc::rebase",
                bead_id = BEAD_ID,
                op_index,
                intents = intent_log.len(),
                "rebase conflict: blocking reads",
            );
            return Err(RebaseError::BlockingReads { op_index });
        }
        RebaseEligibility::StructuralEffects { op_index, effects } => {
            FSQLITE_REBASE_CONFLICTS_TOTAL.fetch_add(1, Ordering::Relaxed);
            warn!(
                target: "fsqlite_mvcc::rebase",
                bead_id = BEAD_ID,
                op_index,
                effects,
                intents = intent_log.len(),
                "rebase conflict: structural effects",
            );
            return Err(RebaseError::StructuralEffects { op_index, effects });
        }
    }

    let mut stale_indexes = std::collections::HashSet::new();
    for op in intent_log {
        if let IntentOpKind::UpdateExpression { table, key, .. } = &op.op {
            for index_def in schema.table_indexes(*table) {
                stale_indexes.insert((index_def.index_id, *key));
            }
        }
    }

    let mut rebased_ops = Vec::with_capacity(intent_log.len());
    let mut replayed_count = 0;

    let mut updated_rows: std::collections::HashMap<(TableId, RowId), Vec<u8>> =
        std::collections::HashMap::new();

    struct ChainedReader<'a> {
        base: &'a dyn BaseRowReader,
        updates: &'a std::collections::HashMap<(TableId, RowId), Vec<u8>>,
    }

    impl BaseRowReader for ChainedReader<'_> {
        fn read_base_row(&self, table: TableId, key: RowId) -> Option<Vec<u8>> {
            if let Some(record) = self.updates.get(&(table, key)) {
                Some(record.clone())
            } else {
                self.base.read_base_row(table, key)
            }
        }
    }

    for op in intent_log {
        match &op.op {
            IntentOpKind::UpdateExpression {
                table,
                key,
                column_updates,
            } => {
                // Step 3: Replay UpdateExpression against new base.
                let _indexes = schema.table_indexes(*table);

                let chained_reader = ChainedReader {
                    base: base_reader,
                    updates: &updated_rows,
                };

                // Discard stale index ops that follow this UpdateExpression.
                // (In a real pipeline these would be in the same intent log;
                // here we handle each op independently.)
                let result = match replay_update_expression(
                    *table,
                    *key,
                    column_updates,
                    &chained_reader,
                    schema,
                    unique_checker,
                ) {
                    Ok(r) => r,
                    Err(e) => {
                        FSQLITE_REBASE_CONFLICTS_TOTAL.fetch_add(1, Ordering::Relaxed);
                        warn!(
                            target: "fsqlite_mvcc::rebase",
                            bead_id = BEAD_ID,
                            intents_replayed = replayed_count,
                            conflict = %e,
                            "rebase conflict during intent replay",
                        );
                        return Err(e);
                    }
                };

                updated_rows.insert((*table, *key), result.new_record.clone());

                // Emit the materialized Update op.
                rebased_ops.push(IntentOpKind::Update {
                    table: *table,
                    key: *key,
                    new_record: result.new_record,
                });

                // Emit regenerated index ops.
                rebased_ops.extend(result.index_ops);
                replayed_count += 1;

                debug!(
                    target: "fsqlite_mvcc::rebase",
                    bead_id = BEAD_ID,
                    table = table.get(),
                    key = key.get(),
                    "replayed UpdateExpression"
                );
            }
            IntentOpKind::IndexInsert { index, rowid, .. }
            | IntentOpKind::IndexDelete { index, rowid, .. } => {
                if stale_indexes.contains(&(*index, *rowid)) {
                    continue; // discard stale op
                }
                rebased_ops.push(op.op.clone());
            }
            other => {
                // Non-UpdateExpression ops pass through.
                rebased_ops.push(other.clone());
            }
        }
    }

    FSQLITE_REBASE_SUCCESSES_TOTAL.fetch_add(1, Ordering::Relaxed);

    // INFO-level rebase outcome (bd-688.5).
    tracing::info!(
        target: "fsqlite_mvcc::rebase",
        bead_id = BEAD_ID,
        intents_replayed = replayed_count,
        total_ops = intent_log.len(),
        rebased_ops = rebased_ops.len(),
        "rebase succeeded",
    );

    Ok(RebaseResult {
        rebased_ops,
        replayed_count,
    })
}

// ── VDBE codegen emission rules ──────────────────────────────────────────────

/// Flags describing a statement for `UpdateExpression` emission eligibility.
#[derive(Debug, Clone)]
#[allow(clippy::struct_excessive_bools)]
pub struct UpdateExpressionCandidate {
    /// Whether the target table has triggers.
    pub has_triggers: bool,
    /// Whether the target table participates in foreign key constraints.
    pub has_foreign_keys: bool,
    /// Whether all CHECK expressions pass `expr_is_rebase_safe()`.
    pub all_checks_rebase_safe: bool,
    /// Whether the WHERE resolves to a rowid point lookup.
    pub is_rowid_point_lookup: bool,
    /// Whether any SET clause targets the rowid/INTEGER PRIMARY KEY.
    pub sets_rowid: bool,
    /// Whether all SET expressions pass `expr_is_rebase_safe()`.
    pub all_sets_rebase_safe: bool,
    /// Whether there's a prior read of the same row.
    pub has_prior_read_of_same_row: bool,
}

/// Check whether a statement is eligible for `UpdateExpression` emission
/// per the VDBE codegen rules (§5.10.2).
#[must_use]
pub fn can_emit_update_expression(candidate: &UpdateExpressionCandidate) -> bool {
    !candidate.has_triggers
        && !candidate.has_foreign_keys
        && candidate.all_checks_rebase_safe
        && candidate.is_rowid_point_lookup
        && !candidate.sets_rowid
        && candidate.all_sets_rebase_safe
        && !candidate.has_prior_read_of_same_row
}

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

#[cfg(test)]
mod tests {
    use super::*;
    use std::collections::HashMap;

    use fsqlite_types::glossary::{
        CommitSeq, IntentFootprint, SchemaEpoch, SemanticKeyRef, StructuralEffects,
    };
    use fsqlite_types::record::serialize_record;

    use crate::index_regen::{Collation, IndexKeyPart, NoOpUniqueChecker, compute_index_key};

    // ── Test helpers ─────────────────────────────────────────────────────

    /// In-memory base row reader.
    struct MemBaseReader {
        rows: HashMap<(u32, i64), Vec<u8>>,
    }

    impl BaseRowReader for MemBaseReader {
        fn read_base_row(&self, table: TableId, key: RowId) -> Option<Vec<u8>> {
            self.rows.get(&(table.get(), key.get())).cloned()
        }
    }

    /// Simple schema lookup with configurable constraints and indexes.
    struct MemSchema {
        constraints: HashMap<u32, TableConstraints>,
        indexes: HashMap<u32, Vec<IndexDef>>,
    }

    impl RebaseSchemaLookup for MemSchema {
        fn table_constraints(&self, table: TableId) -> Option<TableConstraints> {
            self.constraints.get(&table.get()).cloned()
        }

        fn table_indexes(&self, table: TableId) -> Vec<IndexDef> {
            self.indexes.get(&table.get()).cloned().unwrap_or_default()
        }
    }

    fn empty_footprint() -> IntentFootprint {
        IntentFootprint {
            reads: vec![],
            writes: vec![],
            structural: StructuralEffects::NONE,
        }
    }

    fn make_intent_op(epoch: u64, footprint: IntentFootprint, op: IntentOpKind) -> IntentOp {
        IntentOp {
            schema_epoch: epoch,
            footprint,
            op,
        }
    }

    fn test_snapshot(epoch: u64) -> Snapshot {
        Snapshot::new(CommitSeq::new(10), SchemaEpoch::new(epoch))
    }

    fn record_bytes(values: &[SqliteValue]) -> Vec<u8> {
        serialize_record(values)
    }

    fn empty_schema() -> MemSchema {
        MemSchema {
            constraints: HashMap::new(),
            indexes: HashMap::new(),
        }
    }

    // ── Test 1: Schema epoch guard ───────────────────────────────────────

    #[test]
    fn test_rebase_schema_epoch_guard_aborts_on_mismatch() {
        let intent_log = vec![make_intent_op(
            5, // epoch 5
            empty_footprint(),
            IntentOpKind::UpdateExpression {
                table: TableId::new(1),
                key: RowId::new(1),
                column_updates: vec![],
            },
        )];

        let snapshot = test_snapshot(6); // epoch 6 ≠ 5

        let result = check_schema_epoch(&intent_log, snapshot);
        assert!(
            matches!(
                result,
                Err(RebaseError::SchemaEpochMismatch {
                    expected: 6,
                    actual: 5
                })
            ),
            "bead_id={BEAD_ID} schema_epoch_mismatch"
        );
    }

    // ── Test 2: Blocking reads ───────────────────────────────────────────

    #[test]
    fn test_rebase_rejects_blocking_reads() {
        use fsqlite_types::glossary::{BtreeRef, SemanticKeyKind};

        let blocking_read = SemanticKeyRef::new(
            BtreeRef::Table(TableId::new(1)),
            SemanticKeyKind::TableRow,
            &[1, 2, 3],
        );

        let intent_log = vec![make_intent_op(
            1,
            IntentFootprint {
                reads: vec![blocking_read],
                writes: vec![],
                structural: StructuralEffects::NONE,
            },
            IntentOpKind::Update {
                table: TableId::new(1),
                key: RowId::new(1),
                new_record: vec![],
            },
        )];

        let result = check_rebase_eligibility(&intent_log);
        assert_eq!(
            result,
            RebaseEligibility::BlockingReads { op_index: 0 },
            "bead_id={BEAD_ID} blocking_reads"
        );
    }

    // ── Test 3: Structural effects ───────────────────────────────────────

    #[test]
    fn test_rebase_rejects_structural_effects() {
        let intent_log = vec![make_intent_op(
            1,
            IntentFootprint {
                reads: vec![],
                writes: vec![],
                structural: StructuralEffects::PAGE_SPLIT | StructuralEffects::OVERFLOW_ALLOC,
            },
            IntentOpKind::Insert {
                table: TableId::new(1),
                key: RowId::new(1),
                record: vec![],
            },
        )];

        let result = check_rebase_eligibility(&intent_log);
        assert!(
            matches!(
                result,
                RebaseEligibility::StructuralEffects {
                    op_index: 0,
                    effects,
                } if effects != 0
            ),
            "bead_id={BEAD_ID} structural_effects"
        );
    }

    // ── Test 4: UpdateExpression uses new base row ───────────────────────

    #[test]
    fn test_rebase_update_expression_column_ref_uses_new_base() {
        // New committed base: col0=1, col1=100 (different from original snapshot).
        let mut rows = HashMap::new();
        rows.insert(
            (1, 1),
            record_bytes(&[SqliteValue::Integer(1), SqliteValue::Integer(100)]),
        );
        let reader = MemBaseReader { rows };

        // UpdateExpression: SET col1 = col1 + 1 (should use 100 from new base, not stale).
        let column_updates = vec![(
            ColumnIdx::new(1),
            RebaseExpr::BinaryOp {
                op: fsqlite_types::glossary::RebaseBinaryOp::Add,
                left: Box::new(RebaseExpr::ColumnRef(ColumnIdx::new(1))),
                right: Box::new(RebaseExpr::Literal(SqliteValue::Integer(1))),
            },
        )];

        let schema = MemSchema {
            constraints: HashMap::from([(
                1,
                TableConstraints {
                    table_id: TableId::new(1),
                    not_null: vec![false, false],
                    affinities: vec![TypeAffinity::Integer, TypeAffinity::Integer],
                    check_exprs: vec![],
                },
            )]),
            indexes: HashMap::new(),
        };

        let result = replay_update_expression(
            TableId::new(1),
            RowId::new(1),
            &column_updates,
            &reader,
            &schema,
            &NoOpUniqueChecker,
        )
        .unwrap();

        // The result should be col0=1, col1=101 (100+1, NOT the stale snapshot value).
        let parsed = parse_record(&result.new_record).unwrap();
        assert_eq!(
            parsed[1],
            SqliteValue::Integer(101),
            "bead_id={BEAD_ID} uses_new_base"
        );
    }

    // ── Test 5: NOT NULL constraint failure ──────────────────────────────

    #[test]
    fn test_rebase_constraint_failure_aborts() {
        let mut rows = HashMap::new();
        rows.insert(
            (1, 1),
            record_bytes(&[SqliteValue::Integer(1), SqliteValue::Text("hello".into())]),
        );
        let reader = MemBaseReader { rows };

        // UpdateExpression: SET col1 = NULL (violates NOT NULL).
        let column_updates = vec![(ColumnIdx::new(1), RebaseExpr::Literal(SqliteValue::Null))];

        let schema = MemSchema {
            constraints: HashMap::from([(
                1,
                TableConstraints {
                    table_id: TableId::new(1),
                    not_null: vec![false, true], // col1 is NOT NULL
                    affinities: vec![TypeAffinity::Integer, TypeAffinity::Text],
                    check_exprs: vec![],
                },
            )]),
            indexes: HashMap::new(),
        };

        let result = replay_update_expression(
            TableId::new(1),
            RowId::new(1),
            &column_updates,
            &reader,
            &schema,
            &NoOpUniqueChecker,
        );

        assert!(
            matches!(
                result,
                Err(RebaseError::NotNullViolation { column_idx: 1, .. })
            ),
            "bead_id={BEAD_ID} not_null_violation"
        );
    }

    // ── Test 6: Index regeneration discards stale ops ────────────────────

    #[test]
    fn test_rebase_index_regeneration_discards_stale_ops() {
        let mut rows = HashMap::new();
        rows.insert(
            (1, 1),
            record_bytes(&[
                SqliteValue::Integer(1),
                SqliteValue::Text("new_base".into()),
            ]),
        );
        let reader = MemBaseReader { rows };

        let index_def = IndexDef {
            index_id: IndexId::new(10),
            table_id: TableId::new(1),
            unique: false,
            key_parts: vec![IndexKeyPart::Column {
                col_idx: ColumnIdx::new(1),
                affinity: TypeAffinity::Text,
                collation: Collation::Binary,
            }],
            where_predicate: None,
            table_column_affinities: vec![TypeAffinity::Integer, TypeAffinity::Text],
        };

        let schema = MemSchema {
            constraints: HashMap::from([(
                1,
                TableConstraints {
                    table_id: TableId::new(1),
                    not_null: vec![false, false],
                    affinities: vec![TypeAffinity::Integer, TypeAffinity::Text],
                    check_exprs: vec![],
                },
            )]),
            indexes: HashMap::from([(1, vec![index_def])]),
        };

        // SET col1 = 'updated'.
        let column_updates = vec![(
            ColumnIdx::new(1),
            RebaseExpr::Literal(SqliteValue::Text("updated".into())),
        )];

        let result = replay_update_expression(
            TableId::new(1),
            RowId::new(1),
            &column_updates,
            &reader,
            &schema,
            &NoOpUniqueChecker,
        )
        .unwrap();

        // Should have 2 index ops: IndexDelete(old key) + IndexInsert(new key).
        assert_eq!(
            result.index_ops.len(),
            2,
            "bead_id={BEAD_ID} index_regen_ops"
        );
        assert!(
            matches!(&result.index_ops[0], IntentOpKind::IndexDelete { .. }),
            "bead_id={BEAD_ID} first is delete"
        );
        assert!(
            matches!(&result.index_ops[1], IntentOpKind::IndexInsert { .. }),
            "bead_id={BEAD_ID} second is insert"
        );

        // Verify the new key encodes "updated", not the stale original key.
        if let IntentOpKind::IndexInsert { key, .. } = &result.index_ops[1] {
            let parsed = parse_record(key).unwrap();
            assert_eq!(
                parsed[0],
                SqliteValue::Text("updated".into()),
                "bead_id={BEAD_ID} key_from_new_base"
            );
        }
    }

    // ── Test 7: UNIQUE index enforcement on new base ─────────────────────

    #[test]
    fn test_rebase_unique_index_enforcement_on_new_base() {
        // Unique checker that reports a conflict.
        struct ConflictChecker {
            expected_key: Vec<u8>,
        }
        impl UniqueChecker for ConflictChecker {
            fn check_unique(
                &self,
                _index_id: IndexId,
                key_bytes: &[u8],
                _exclude_rowid: RowId,
            ) -> Option<RowId> {
                if key_bytes == self.expected_key {
                    Some(RowId::new(99))
                } else {
                    None
                }
            }
        }

        let mut rows = HashMap::new();
        rows.insert(
            (1, 1),
            record_bytes(&[
                SqliteValue::Integer(1),
                SqliteValue::Text("original".into()),
            ]),
        );
        let reader = MemBaseReader { rows };

        let index_def = IndexDef {
            index_id: IndexId::new(20),
            table_id: TableId::new(1),
            unique: true,
            key_parts: vec![IndexKeyPart::Column {
                col_idx: ColumnIdx::new(1),
                affinity: TypeAffinity::Text,
                collation: Collation::Binary,
            }],
            where_predicate: None,
            table_column_affinities: vec![TypeAffinity::Integer, TypeAffinity::Text],
        };

        let schema = MemSchema {
            constraints: HashMap::from([(
                1,
                TableConstraints {
                    table_id: TableId::new(1),
                    not_null: vec![false, false],
                    affinities: vec![TypeAffinity::Integer, TypeAffinity::Text],
                    check_exprs: vec![],
                },
            )]),
            indexes: HashMap::from([(1, vec![index_def.clone()])]),
        };

        // Pre-compute the key for "conflict_value".
        let conflict_key = compute_index_key(
            &index_def,
            &[
                SqliteValue::Integer(1),
                SqliteValue::Text("conflict_value".into()),
            ],
        )
        .unwrap();

        let checker = ConflictChecker {
            expected_key: conflict_key,
        };

        let column_updates = vec![(
            ColumnIdx::new(1),
            RebaseExpr::Literal(SqliteValue::Text("conflict_value".into())),
        )];

        let result = replay_update_expression(
            TableId::new(1),
            RowId::new(1),
            &column_updates,
            &reader,
            &schema,
            &checker,
        );

        assert!(
            matches!(
                result,
                Err(RebaseError::UniqueViolation {
                    conflicting_rowid,
                    ..
                }) if conflicting_rowid.get() == 99
            ),
            "bead_id={BEAD_ID} unique_violation_on_rebase"
        );
    }

    // ── Test 8: VDBE codegen emission rules ──────────────────────────────

    #[test]
    fn test_vdbe_codegen_updateexpression_emission_rules() {
        // All conditions met → eligible.
        let good = UpdateExpressionCandidate {
            has_triggers: false,
            has_foreign_keys: false,
            all_checks_rebase_safe: true,
            is_rowid_point_lookup: true,
            sets_rowid: false,
            all_sets_rebase_safe: true,
            has_prior_read_of_same_row: false,
        };
        assert!(
            can_emit_update_expression(&good),
            "bead_id={BEAD_ID} all_conditions_met"
        );

        // Has triggers → ineligible.
        assert!(
            !can_emit_update_expression(&UpdateExpressionCandidate {
                has_triggers: true,
                ..good
            }),
            "bead_id={BEAD_ID} has_triggers"
        );

        // Has foreign keys → ineligible.
        assert!(
            !can_emit_update_expression(&UpdateExpressionCandidate {
                has_foreign_keys: true,
                ..good
            }),
            "bead_id={BEAD_ID} has_fk"
        );

        // CHECK not rebase-safe → ineligible.
        assert!(
            !can_emit_update_expression(&UpdateExpressionCandidate {
                all_checks_rebase_safe: false,
                ..good
            }),
            "bead_id={BEAD_ID} check_not_safe"
        );

        // Not a rowid point lookup → ineligible.
        assert!(
            !can_emit_update_expression(&UpdateExpressionCandidate {
                is_rowid_point_lookup: false,
                ..good
            }),
            "bead_id={BEAD_ID} not_point_lookup"
        );

        // Sets rowid → ineligible.
        assert!(
            !can_emit_update_expression(&UpdateExpressionCandidate {
                sets_rowid: true,
                ..good
            }),
            "bead_id={BEAD_ID} sets_rowid"
        );

        // SET expr not rebase-safe → ineligible.
        assert!(
            !can_emit_update_expression(&UpdateExpressionCandidate {
                all_sets_rebase_safe: false,
                ..good
            }),
            "bead_id={BEAD_ID} set_not_safe"
        );

        // Prior read of same row → ineligible.
        assert!(
            !can_emit_update_expression(&UpdateExpressionCandidate {
                has_prior_read_of_same_row: true,
                ..good
            }),
            "bead_id={BEAD_ID} prior_read"
        );
    }

    // ── Test: Full pipeline ──────────────────────────────────────────────

    #[test]
    fn test_full_deterministic_rebase_pipeline() {
        let mut rows = HashMap::new();
        rows.insert(
            (1, 1),
            record_bytes(&[SqliteValue::Integer(1), SqliteValue::Integer(50)]),
        );
        rows.insert(
            (1, 2),
            record_bytes(&[SqliteValue::Integer(2), SqliteValue::Integer(75)]),
        );
        let reader = MemBaseReader { rows };

        let schema = MemSchema {
            constraints: HashMap::from([(
                1,
                TableConstraints {
                    table_id: TableId::new(1),
                    not_null: vec![false, false],
                    affinities: vec![TypeAffinity::Integer, TypeAffinity::Integer],
                    check_exprs: vec![],
                },
            )]),
            indexes: HashMap::new(),
        };

        let intent_log = vec![
            // UpdateExpression for rowid 1: SET col1 = col1 + 10.
            make_intent_op(
                1,
                empty_footprint(),
                IntentOpKind::UpdateExpression {
                    table: TableId::new(1),
                    key: RowId::new(1),
                    column_updates: vec![(
                        ColumnIdx::new(1),
                        RebaseExpr::BinaryOp {
                            op: fsqlite_types::glossary::RebaseBinaryOp::Add,
                            left: Box::new(RebaseExpr::ColumnRef(ColumnIdx::new(1))),
                            right: Box::new(RebaseExpr::Literal(SqliteValue::Integer(10))),
                        },
                    )],
                },
            ),
            // A plain Insert (passes through).
            make_intent_op(
                1,
                empty_footprint(),
                IntentOpKind::Insert {
                    table: TableId::new(1),
                    key: RowId::new(100),
                    record: vec![1, 2, 3],
                },
            ),
            // UpdateExpression for rowid 2: SET col1 = col1 * 2.
            make_intent_op(
                1,
                empty_footprint(),
                IntentOpKind::UpdateExpression {
                    table: TableId::new(1),
                    key: RowId::new(2),
                    column_updates: vec![(
                        ColumnIdx::new(1),
                        RebaseExpr::BinaryOp {
                            op: fsqlite_types::glossary::RebaseBinaryOp::Multiply,
                            left: Box::new(RebaseExpr::ColumnRef(ColumnIdx::new(1))),
                            right: Box::new(RebaseExpr::Literal(SqliteValue::Integer(2))),
                        },
                    )],
                },
            ),
        ];

        let snapshot = test_snapshot(1);
        let result =
            deterministic_rebase(&intent_log, snapshot, &reader, &schema, &NoOpUniqueChecker)
                .unwrap();

        // 2 UpdateExpressions replayed.
        assert_eq!(result.replayed_count, 2, "bead_id={BEAD_ID} replayed_count");

        // Should have 3 ops: Update(rowid 1), Insert(rowid 100), Update(rowid 2).
        assert_eq!(result.rebased_ops.len(), 3, "bead_id={BEAD_ID} total_ops");

        // Verify rowid 1: col1 = 50 + 10 = 60.
        if let IntentOpKind::Update { new_record, .. } = &result.rebased_ops[0] {
            let parsed = parse_record(new_record).unwrap();
            assert_eq!(parsed[1], SqliteValue::Integer(60));
        } else {
            panic!("bead_id={BEAD_ID} expected Update for rowid 1");
        }

        // Verify plain Insert passed through.
        assert!(matches!(
            &result.rebased_ops[1],
            IntentOpKind::Insert { .. }
        ));

        // Verify rowid 2: col1 = 75 * 2 = 150.
        if let IntentOpKind::Update { new_record, .. } = &result.rebased_ops[2] {
            let parsed = parse_record(new_record).unwrap();
            assert_eq!(parsed[1], SqliteValue::Integer(150));
        } else {
            panic!("bead_id={BEAD_ID} expected Update for rowid 2");
        }
    }

    // ── Test: Target row not found → abort ───────────────────────────────

    #[test]
    fn test_rebase_target_row_not_found() {
        let reader = MemBaseReader {
            rows: HashMap::new(),
        };
        let schema = empty_schema();

        let result = replay_update_expression(
            TableId::new(1),
            RowId::new(999),
            &[],
            &reader,
            &schema,
            &NoOpUniqueChecker,
        );

        assert!(
            matches!(
                result,
                Err(RebaseError::TargetRowNotFound { key, .. }) if key.get() == 999
            ),
            "bead_id={BEAD_ID} target_not_found"
        );
    }

    // ── Test: CHECK constraint enforcement ───────────────────────────────

    #[test]
    fn test_rebase_check_constraint_violation() {
        let mut rows = HashMap::new();
        rows.insert(
            (1, 1),
            record_bytes(&[SqliteValue::Integer(1), SqliteValue::Integer(10)]),
        );
        let reader = MemBaseReader { rows };

        // CHECK: col1 > 0 (implemented as: col1 itself, truthy when > 0).
        // But we need col1 = 0 to fail. Use the column itself as predicate.
        let schema = MemSchema {
            constraints: HashMap::from([(
                1,
                TableConstraints {
                    table_id: TableId::new(1),
                    not_null: vec![false, false],
                    affinities: vec![TypeAffinity::Integer, TypeAffinity::Integer],
                    check_exprs: vec![
                        // "col1 is truthy" — fails when col1 = 0.
                        RebaseExpr::ColumnRef(ColumnIdx::new(1)),
                    ],
                },
            )]),
            indexes: HashMap::new(),
        };

        // SET col1 = 0 → CHECK fails (0 is falsy).
        let column_updates = vec![(
            ColumnIdx::new(1),
            RebaseExpr::Literal(SqliteValue::Integer(0)),
        )];

        let result = replay_update_expression(
            TableId::new(1),
            RowId::new(1),
            &column_updates,
            &reader,
            &schema,
            &NoOpUniqueChecker,
        );

        assert!(
            matches!(result, Err(RebaseError::CheckViolation { .. })),
            "bead_id={BEAD_ID} check_violation"
        );
    }

    // ── Test: CHECK with NULL passes ─────────────────────────────────────

    #[test]
    fn test_rebase_check_null_passes() {
        let mut rows = HashMap::new();
        rows.insert(
            (1, 1),
            record_bytes(&[SqliteValue::Integer(1), SqliteValue::Integer(10)]),
        );
        let reader = MemBaseReader { rows };

        let schema = MemSchema {
            constraints: HashMap::from([(
                1,
                TableConstraints {
                    table_id: TableId::new(1),
                    not_null: vec![false, false],
                    affinities: vec![TypeAffinity::Integer, TypeAffinity::Integer],
                    check_exprs: vec![
                        // CHECK evaluates to NULL → passes per SQLite semantics.
                        RebaseExpr::Literal(SqliteValue::Null),
                    ],
                },
            )]),
            indexes: HashMap::new(),
        };

        let column_updates = vec![(
            ColumnIdx::new(1),
            RebaseExpr::Literal(SqliteValue::Integer(42)),
        )];

        let result = replay_update_expression(
            TableId::new(1),
            RowId::new(1),
            &column_updates,
            &reader,
            &schema,
            &NoOpUniqueChecker,
        );

        assert!(result.is_ok(), "bead_id={BEAD_ID} check_null_passes");
    }

    // ── Test: Eligible intent log passes full pipeline ───────────────────

    #[test]
    fn test_eligible_intent_log_rebase_eligibility() {
        let intent_log = vec![
            make_intent_op(
                1,
                empty_footprint(),
                IntentOpKind::Insert {
                    table: TableId::new(1),
                    key: RowId::new(1),
                    record: vec![],
                },
            ),
            make_intent_op(
                1,
                empty_footprint(),
                IntentOpKind::UpdateExpression {
                    table: TableId::new(1),
                    key: RowId::new(2),
                    column_updates: vec![],
                },
            ),
        ];

        assert_eq!(
            check_rebase_eligibility(&intent_log),
            RebaseEligibility::Eligible,
            "bead_id={BEAD_ID} eligible"
        );
    }
}