citadeldb-sql 0.9.0

SQL parser, planner, and executor for Citadel encrypted database
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
use citadel::{Argon2Profile, DatabaseBuilder};
use citadel_sql::{Connection, ExecutionResult, SqlError, Value};

fn create_db(dir: &std::path::Path) -> citadel::Database {
    let db_path = dir.join("test.db");
    DatabaseBuilder::new(db_path)
        .passphrase(b"test-passphrase")
        .argon2_profile(Argon2Profile::Iot)
        .create()
        .unwrap()
}

fn assert_rows_affected(result: ExecutionResult, expected: u64) {
    match result {
        ExecutionResult::RowsAffected(n) => assert_eq!(n, expected),
        other => panic!("expected RowsAffected({expected}), got {other:?}"),
    }
}

fn assert_ok(result: ExecutionResult) {
    match result {
        ExecutionResult::Ok => {}
        other => panic!("expected Ok, got {other:?}"),
    }
}

fn get_rows(result: ExecutionResult) -> Vec<Vec<Value>> {
    match result {
        ExecutionResult::Query(qr) => qr.rows,
        other => panic!("expected Query, got {other:?}"),
    }
}

#[test]
fn bulk_insert_with_defaults_1000_rows() {
    let dir = tempfile::tempdir().unwrap();
    let db = create_db(dir.path());
    let conn = Connection::open(&db).unwrap();

    assert_ok(conn.execute(
        "CREATE TABLE items (id INTEGER NOT NULL PRIMARY KEY, name TEXT DEFAULT 'unnamed', score REAL DEFAULT 0.0, active BOOLEAN DEFAULT TRUE)"
    ).unwrap());

    for i in 0..1000 {
        assert_rows_affected(
            conn.execute(&format!("INSERT INTO items (id) VALUES ({i})"))
                .unwrap(),
            1,
        );
    }

    let rows = get_rows(
        conn.execute("SELECT COUNT(*) FROM items WHERE name = 'unnamed'")
            .unwrap(),
    );
    assert_eq!(rows[0][0], Value::Integer(1000));

    let rows = get_rows(
        conn.execute("SELECT COUNT(*) FROM items WHERE score = 0.0")
            .unwrap(),
    );
    assert_eq!(rows[0][0], Value::Integer(1000));

    let rows = get_rows(
        conn.execute("SELECT COUNT(*) FROM items WHERE active = TRUE")
            .unwrap(),
    );
    assert_eq!(rows[0][0], Value::Integer(1000));
}

#[test]
fn bulk_insert_varying_column_subsets() {
    let dir = tempfile::tempdir().unwrap();
    let db = create_db(dir.path());
    let conn = Connection::open(&db).unwrap();

    assert_ok(conn.execute(
        "CREATE TABLE t (id INTEGER NOT NULL PRIMARY KEY, a INTEGER DEFAULT 10, b TEXT DEFAULT 'x', c REAL DEFAULT 1.5, d BOOLEAN DEFAULT FALSE)"
    ).unwrap());

    // Only id
    for i in 0..100 {
        assert_rows_affected(
            conn.execute(&format!("INSERT INTO t (id) VALUES ({i})"))
                .unwrap(),
            1,
        );
    }
    // id + a
    for i in 100..200 {
        assert_rows_affected(
            conn.execute(&format!("INSERT INTO t (id, a) VALUES ({i}, 99)"))
                .unwrap(),
            1,
        );
    }
    // id + b + d
    for i in 200..300 {
        assert_rows_affected(
            conn.execute(&format!(
                "INSERT INTO t (id, b, d) VALUES ({i}, 'custom', TRUE)"
            ))
            .unwrap(),
            1,
        );
    }

    let rows = get_rows(conn.execute("SELECT COUNT(*) FROM t WHERE a = 10").unwrap());
    assert_eq!(rows[0][0], Value::Integer(200)); // 0..100 + 200..300

    let rows = get_rows(
        conn.execute("SELECT COUNT(*) FROM t WHERE b = 'x'")
            .unwrap(),
    );
    assert_eq!(rows[0][0], Value::Integer(200)); // 0..100 + 100..200

    let rows = get_rows(
        conn.execute("SELECT COUNT(*) FROM t WHERE c = 1.5")
            .unwrap(),
    );
    assert_eq!(rows[0][0], Value::Integer(300)); // all
}

#[test]
fn check_division_boundary() {
    let dir = tempfile::tempdir().unwrap();
    let db = create_db(dir.path());
    let conn = Connection::open(&db).unwrap();

    assert_ok(conn.execute(
        "CREATE TABLE ratios (id INTEGER NOT NULL PRIMARY KEY, num INTEGER NOT NULL, denom INTEGER NOT NULL CHECK(denom != 0))"
    ).unwrap());

    assert_rows_affected(
        conn.execute("INSERT INTO ratios VALUES (1, 10, 5)")
            .unwrap(),
        1,
    );

    let err = conn
        .execute("INSERT INTO ratios VALUES (2, 10, 0)")
        .unwrap_err();
    assert!(matches!(err, SqlError::CheckViolation(..)));
}

#[test]
fn check_null_arithmetic_passes() {
    let dir = tempfile::tempdir().unwrap();
    let db = create_db(dir.path());
    let conn = Connection::open(&db).unwrap();

    assert_ok(conn.execute(
        "CREATE TABLE vals (id INTEGER NOT NULL PRIMARY KEY, x INTEGER CHECK(x > 0), y INTEGER CHECK(y < 100))"
    ).unwrap());

    // NULL passes both checks
    assert_rows_affected(
        conn.execute("INSERT INTO vals VALUES (1, NULL, NULL)")
            .unwrap(),
        1,
    );
    assert_rows_affected(
        conn.execute("INSERT INTO vals VALUES (2, NULL, 50)")
            .unwrap(),
        1,
    );
    assert_rows_affected(
        conn.execute("INSERT INTO vals VALUES (3, 10, NULL)")
            .unwrap(),
        1,
    );
}

#[test]
fn check_boundary_values() {
    let dir = tempfile::tempdir().unwrap();
    let db = create_db(dir.path());
    let conn = Connection::open(&db).unwrap();

    assert_ok(conn.execute(
        "CREATE TABLE bounded (id INTEGER NOT NULL PRIMARY KEY, val INTEGER NOT NULL CHECK(val >= 0 AND val <= 100))"
    ).unwrap());

    assert_rows_affected(
        conn.execute("INSERT INTO bounded VALUES (1, 0)").unwrap(),
        1,
    );
    assert_rows_affected(
        conn.execute("INSERT INTO bounded VALUES (2, 100)").unwrap(),
        1,
    );
    assert_rows_affected(
        conn.execute("INSERT INTO bounded VALUES (3, 50)").unwrap(),
        1,
    );

    let err = conn
        .execute("INSERT INTO bounded VALUES (4, -1)")
        .unwrap_err();
    assert!(matches!(err, SqlError::CheckViolation(..)));

    let err = conn
        .execute("INSERT INTO bounded VALUES (5, 101)")
        .unwrap_err();
    assert!(matches!(err, SqlError::CheckViolation(..)));
}

#[test]
fn fk_stress_100_children_delete_parent() {
    let dir = tempfile::tempdir().unwrap();
    let db = create_db(dir.path());
    let conn = Connection::open(&db).unwrap();

    assert_ok(
        conn.execute("CREATE TABLE parent (id INTEGER NOT NULL PRIMARY KEY, name TEXT)")
            .unwrap(),
    );
    assert_ok(conn.execute(
        "CREATE TABLE child (id INTEGER NOT NULL PRIMARY KEY, parent_id INTEGER NOT NULL REFERENCES parent(id))"
    ).unwrap());

    assert_rows_affected(
        conn.execute("INSERT INTO parent VALUES (1, 'root')")
            .unwrap(),
        1,
    );
    for i in 0..100 {
        assert_rows_affected(
            conn.execute(&format!("INSERT INTO child VALUES ({i}, 1)"))
                .unwrap(),
            1,
        );
    }

    // Cannot delete parent with 100 children
    let err = conn.execute("DELETE FROM parent WHERE id = 1").unwrap_err();
    assert!(matches!(err, SqlError::ForeignKeyViolation(..)));

    // Delete all children first
    assert_rows_affected(
        conn.execute("DELETE FROM child WHERE parent_id = 1")
            .unwrap(),
        100,
    );

    assert_rows_affected(conn.execute("DELETE FROM parent WHERE id = 1").unwrap(), 1);
}

#[test]
fn fk_update_parent_pk_stress() {
    let dir = tempfile::tempdir().unwrap();
    let db = create_db(dir.path());
    let conn = Connection::open(&db).unwrap();

    assert_ok(
        conn.execute("CREATE TABLE dept (id INTEGER NOT NULL PRIMARY KEY, name TEXT)")
            .unwrap(),
    );
    assert_ok(conn.execute(
        "CREATE TABLE emp (id INTEGER NOT NULL PRIMARY KEY, dept_id INTEGER NOT NULL REFERENCES dept(id))"
    ).unwrap());

    for i in 1..=5 {
        assert_rows_affected(
            conn.execute(&format!("INSERT INTO dept VALUES ({i}, 'dept{i}')"))
                .unwrap(),
            1,
        );
    }
    for i in 1..=50 {
        let dept = ((i - 1) % 5) + 1;
        assert_rows_affected(
            conn.execute(&format!("INSERT INTO emp VALUES ({i}, {dept})"))
                .unwrap(),
            1,
        );
    }

    // Cannot update PK of dept that has employees
    let err = conn
        .execute("UPDATE dept SET id = 100 WHERE id = 1")
        .unwrap_err();
    assert!(matches!(err, SqlError::ForeignKeyViolation(..)));

    // Can update dept name (non-PK)
    assert_rows_affected(
        conn.execute("UPDATE dept SET name = 'newname' WHERE id = 1")
            .unwrap(),
        1,
    );
}

#[test]
fn mixed_default_check_fk_on_same_table() {
    let dir = tempfile::tempdir().unwrap();
    let db = create_db(dir.path());
    let conn = Connection::open(&db).unwrap();

    assert_ok(
        conn.execute(
            "CREATE TABLE categories (id INTEGER NOT NULL PRIMARY KEY, name TEXT NOT NULL)",
        )
        .unwrap(),
    );
    assert_rows_affected(
        conn.execute("INSERT INTO categories VALUES (1, 'general')")
            .unwrap(),
        1,
    );

    assert_ok(conn.execute(
        "CREATE TABLE products (id INTEGER NOT NULL PRIMARY KEY, name TEXT NOT NULL CHECK(LENGTH(name) > 0), price REAL NOT NULL DEFAULT 9.99 CHECK(price > 0), cat_id INTEGER NOT NULL DEFAULT 1 REFERENCES categories(id))"
    ).unwrap());

    // Insert with all defaults (just id + name)
    assert_rows_affected(
        conn.execute("INSERT INTO products (id, name) VALUES (1, 'Widget')")
            .unwrap(),
        1,
    );
    let rows = get_rows(
        conn.execute("SELECT price, cat_id FROM products WHERE id = 1")
            .unwrap(),
    );
    assert_eq!(rows[0][0], Value::Real(9.99));
    assert_eq!(rows[0][1], Value::Integer(1));

    // CHECK on name: empty string fails
    let err = conn
        .execute("INSERT INTO products (id, name) VALUES (2, '')")
        .unwrap_err();
    assert!(matches!(err, SqlError::CheckViolation(..)));

    // CHECK on price: negative fails
    let err = conn
        .execute("INSERT INTO products (id, name, price) VALUES (3, 'Gadget', -1.0)")
        .unwrap_err();
    assert!(matches!(err, SqlError::CheckViolation(..)));

    // FK: invalid category
    let err = conn
        .execute("INSERT INTO products (id, name, cat_id) VALUES (4, 'Thing', 999)")
        .unwrap_err();
    assert!(matches!(err, SqlError::ForeignKeyViolation(..)));
}

#[test]
fn transaction_rollback_preserves_state_after_violations() {
    let dir = tempfile::tempdir().unwrap();
    let db = create_db(dir.path());
    let conn = Connection::open(&db).unwrap();

    assert_ok(conn.execute(
        "CREATE TABLE accounts (id INTEGER NOT NULL PRIMARY KEY, balance INTEGER NOT NULL CHECK(balance >= 0))"
    ).unwrap());
    assert_rows_affected(
        conn.execute("INSERT INTO accounts VALUES (1, 100)")
            .unwrap(),
        1,
    );

    assert_ok(conn.execute("BEGIN").unwrap());
    assert_rows_affected(
        conn.execute("INSERT INTO accounts VALUES (2, 50)").unwrap(),
        1,
    );

    let err = conn
        .execute("INSERT INTO accounts VALUES (3, -10)")
        .unwrap_err();
    assert!(matches!(err, SqlError::CheckViolation(..)));

    assert_ok(conn.execute("ROLLBACK").unwrap());

    // Only original row should exist
    let rows = get_rows(conn.execute("SELECT COUNT(*) FROM accounts").unwrap());
    assert_eq!(rows[0][0], Value::Integer(1));
}

#[test]
fn partial_insert_five_columns_with_defaults() {
    let dir = tempfile::tempdir().unwrap();
    let db = create_db(dir.path());
    let conn = Connection::open(&db).unwrap();

    assert_ok(conn.execute(
        "CREATE TABLE records (id INTEGER NOT NULL PRIMARY KEY, a INTEGER DEFAULT 1, b TEXT DEFAULT 'hello', c REAL DEFAULT 3.14, d BOOLEAN DEFAULT TRUE, e INTEGER DEFAULT 42)"
    ).unwrap());

    // Insert with only id, c, e
    assert_rows_affected(
        conn.execute("INSERT INTO records (id, c, e) VALUES (1, 2.71, 99)")
            .unwrap(),
        1,
    );

    let rows = get_rows(
        conn.execute("SELECT a, b, c, d, e FROM records WHERE id = 1")
            .unwrap(),
    );
    assert_eq!(rows[0][0], Value::Integer(1));
    if let Value::Text(ref s) = rows[0][1] {
        assert_eq!(s.as_str(), "hello");
    } else {
        panic!("expected Text");
    }
    assert_eq!(rows[0][2], Value::Real(2.71));
    assert_eq!(rows[0][3], Value::Boolean(true));
    assert_eq!(rows[0][4], Value::Integer(99));
}

#[test]
fn update_hitting_check_and_fk_simultaneously() {
    let dir = tempfile::tempdir().unwrap();
    let db = create_db(dir.path());
    let conn = Connection::open(&db).unwrap();

    assert_ok(
        conn.execute("CREATE TABLE teams (id INTEGER NOT NULL PRIMARY KEY)")
            .unwrap(),
    );
    assert_rows_affected(conn.execute("INSERT INTO teams VALUES (1)").unwrap(), 1);
    assert_rows_affected(conn.execute("INSERT INTO teams VALUES (2)").unwrap(), 1);

    assert_ok(conn.execute(
        "CREATE TABLE players (id INTEGER NOT NULL PRIMARY KEY, team_id INTEGER NOT NULL REFERENCES teams(id), rating INTEGER NOT NULL CHECK(rating >= 0 AND rating <= 100))"
    ).unwrap());
    assert_rows_affected(
        conn.execute("INSERT INTO players VALUES (1, 1, 50)")
            .unwrap(),
        1,
    );

    // Valid update: change team and rating
    assert_rows_affected(
        conn.execute("UPDATE players SET team_id = 2, rating = 75 WHERE id = 1")
            .unwrap(),
        1,
    );

    // Invalid FK
    let err = conn
        .execute("UPDATE players SET team_id = 999 WHERE id = 1")
        .unwrap_err();
    assert!(matches!(err, SqlError::ForeignKeyViolation(..)));

    // Invalid CHECK
    let err = conn
        .execute("UPDATE players SET rating = 150 WHERE id = 1")
        .unwrap_err();
    assert!(matches!(err, SqlError::CheckViolation(..)));
}

#[test]
fn multiple_fks_to_different_parents() {
    let dir = tempfile::tempdir().unwrap();
    let db = create_db(dir.path());
    let conn = Connection::open(&db).unwrap();

    assert_ok(
        conn.execute("CREATE TABLE countries (id INTEGER NOT NULL PRIMARY KEY, name TEXT)")
            .unwrap(),
    );
    assert_ok(
        conn.execute("CREATE TABLE cities (id INTEGER NOT NULL PRIMARY KEY, name TEXT)")
            .unwrap(),
    );
    assert_ok(conn.execute(
        "CREATE TABLE offices (id INTEGER NOT NULL PRIMARY KEY, country_id INTEGER NOT NULL REFERENCES countries(id), city_id INTEGER NOT NULL REFERENCES cities(id))"
    ).unwrap());

    assert_rows_affected(
        conn.execute("INSERT INTO countries VALUES (1, 'USA')")
            .unwrap(),
        1,
    );
    assert_rows_affected(
        conn.execute("INSERT INTO cities VALUES (1, 'NYC')")
            .unwrap(),
        1,
    );

    // Valid: both parents exist
    assert_rows_affected(
        conn.execute("INSERT INTO offices VALUES (1, 1, 1)")
            .unwrap(),
        1,
    );

    // Invalid country
    let err = conn
        .execute("INSERT INTO offices VALUES (2, 99, 1)")
        .unwrap_err();
    assert!(matches!(err, SqlError::ForeignKeyViolation(..)));

    // Invalid city
    let err = conn
        .execute("INSERT INTO offices VALUES (3, 1, 99)")
        .unwrap_err();
    assert!(matches!(err, SqlError::ForeignKeyViolation(..)));
}

#[test]
fn self_referencing_fk() {
    let dir = tempfile::tempdir().unwrap();
    let db = create_db(dir.path());
    let conn = Connection::open(&db).unwrap();

    assert_ok(conn.execute(
        "CREATE TABLE employees (id INTEGER NOT NULL PRIMARY KEY, name TEXT NOT NULL, manager_id INTEGER REFERENCES employees(id))"
    ).unwrap());

    // CEO with no manager
    assert_rows_affected(
        conn.execute("INSERT INTO employees VALUES (1, 'CEO', NULL)")
            .unwrap(),
        1,
    );
    // VP reporting to CEO
    assert_rows_affected(
        conn.execute("INSERT INTO employees VALUES (2, 'VP', 1)")
            .unwrap(),
        1,
    );
    // Manager reporting to VP
    assert_rows_affected(
        conn.execute("INSERT INTO employees VALUES (3, 'Manager', 2)")
            .unwrap(),
        1,
    );

    // Invalid: references non-existent employee
    let err = conn
        .execute("INSERT INTO employees VALUES (4, 'Ghost', 999)")
        .unwrap_err();
    assert!(matches!(err, SqlError::ForeignKeyViolation(..)));

    // Cannot delete VP with subordinates
    let err = conn
        .execute("DELETE FROM employees WHERE id = 2")
        .unwrap_err();
    assert!(matches!(err, SqlError::ForeignKeyViolation(..)));

    // Delete leaf first, then intermediate
    assert_rows_affected(
        conn.execute("DELETE FROM employees WHERE id = 3").unwrap(),
        1,
    );
    assert_rows_affected(
        conn.execute("DELETE FROM employees WHERE id = 2").unwrap(),
        1,
    );
}

#[test]
fn fk_composite_key() {
    let dir = tempfile::tempdir().unwrap();
    let db = create_db(dir.path());
    let conn = Connection::open(&db).unwrap();

    assert_ok(conn.execute(
        "CREATE TABLE ledger (year INTEGER NOT NULL, month INTEGER NOT NULL, amount REAL, PRIMARY KEY (year, month))"
    ).unwrap());
    assert_ok(conn.execute(
        "CREATE TABLE entries (id INTEGER NOT NULL PRIMARY KEY, year INTEGER NOT NULL, month INTEGER NOT NULL, FOREIGN KEY (year, month) REFERENCES ledger(year, month))"
    ).unwrap());

    assert_rows_affected(
        conn.execute("INSERT INTO ledger VALUES (2024, 1, 1000.0)")
            .unwrap(),
        1,
    );
    assert_rows_affected(
        conn.execute("INSERT INTO ledger VALUES (2024, 2, 2000.0)")
            .unwrap(),
        1,
    );

    // Valid
    assert_rows_affected(
        conn.execute("INSERT INTO entries VALUES (1, 2024, 1)")
            .unwrap(),
        1,
    );
    assert_rows_affected(
        conn.execute("INSERT INTO entries VALUES (2, 2024, 2)")
            .unwrap(),
        1,
    );

    // Invalid: (2024, 3) doesn't exist
    let err = conn
        .execute("INSERT INTO entries VALUES (3, 2024, 3)")
        .unwrap_err();
    assert!(matches!(err, SqlError::ForeignKeyViolation(..)));

    // Cannot delete referenced ledger entry
    let err = conn
        .execute("DELETE FROM ledger WHERE year = 2024 AND month = 1")
        .unwrap_err();
    assert!(matches!(err, SqlError::ForeignKeyViolation(..)));
}

#[test]
fn check_with_coalesce() {
    let dir = tempfile::tempdir().unwrap();
    let db = create_db(dir.path());
    let conn = Connection::open(&db).unwrap();

    assert_ok(conn.execute(
        "CREATE TABLE items (id INTEGER NOT NULL PRIMARY KEY, val INTEGER, CHECK(COALESCE(val, 0) >= 0))"
    ).unwrap());

    // NULL coalesces to 0, passes >= 0
    assert_rows_affected(
        conn.execute("INSERT INTO items VALUES (1, NULL)").unwrap(),
        1,
    );
    assert_rows_affected(conn.execute("INSERT INTO items VALUES (2, 10)").unwrap(), 1);

    let err = conn
        .execute("INSERT INTO items VALUES (3, -5)")
        .unwrap_err();
    assert!(matches!(err, SqlError::CheckViolation(..)));
}

#[test]
fn check_with_case_when() {
    let dir = tempfile::tempdir().unwrap();
    let db = create_db(dir.path());
    let conn = Connection::open(&db).unwrap();

    assert_ok(conn.execute(
        "CREATE TABLE orders (id INTEGER NOT NULL PRIMARY KEY, status TEXT NOT NULL, amount REAL NOT NULL, CHECK(CASE WHEN status = 'free' THEN amount = 0.0 ELSE amount > 0.0 END))"
    ).unwrap());

    assert_rows_affected(
        conn.execute("INSERT INTO orders VALUES (1, 'free', 0.0)")
            .unwrap(),
        1,
    );
    assert_rows_affected(
        conn.execute("INSERT INTO orders VALUES (2, 'paid', 9.99)")
            .unwrap(),
        1,
    );

    // free with non-zero
    let err = conn
        .execute("INSERT INTO orders VALUES (3, 'free', 5.0)")
        .unwrap_err();
    assert!(matches!(err, SqlError::CheckViolation(..)));

    // paid with zero
    let err = conn
        .execute("INSERT INTO orders VALUES (4, 'paid', 0.0)")
        .unwrap_err();
    assert!(matches!(err, SqlError::CheckViolation(..)));
}

#[test]
fn check_with_between() {
    let dir = tempfile::tempdir().unwrap();
    let db = create_db(dir.path());
    let conn = Connection::open(&db).unwrap();

    assert_ok(conn.execute(
        "CREATE TABLE scores (id INTEGER NOT NULL PRIMARY KEY, val INTEGER NOT NULL CHECK(val BETWEEN 1 AND 10))"
    ).unwrap());

    assert_rows_affected(conn.execute("INSERT INTO scores VALUES (1, 1)").unwrap(), 1);
    assert_rows_affected(
        conn.execute("INSERT INTO scores VALUES (2, 10)").unwrap(),
        1,
    );
    assert_rows_affected(conn.execute("INSERT INTO scores VALUES (3, 5)").unwrap(), 1);

    let err = conn
        .execute("INSERT INTO scores VALUES (4, 0)")
        .unwrap_err();
    assert!(matches!(err, SqlError::CheckViolation(..)));

    let err = conn
        .execute("INSERT INTO scores VALUES (5, 11)")
        .unwrap_err();
    assert!(matches!(err, SqlError::CheckViolation(..)));
}

#[test]
fn default_with_nested_arithmetic() {
    let dir = tempfile::tempdir().unwrap();
    let db = create_db(dir.path());
    let conn = Connection::open(&db).unwrap();

    assert_ok(
        conn.execute(
            "CREATE TABLE calc (id INTEGER NOT NULL PRIMARY KEY, val INTEGER DEFAULT (2 * 3 + 1))",
        )
        .unwrap(),
    );

    assert_rows_affected(conn.execute("INSERT INTO calc (id) VALUES (1)").unwrap(), 1);
    let rows = get_rows(conn.execute("SELECT val FROM calc WHERE id = 1").unwrap());
    assert_eq!(rows[0][0], Value::Integer(7));
}

#[test]
fn not_null_default_check_on_same_column() {
    let dir = tempfile::tempdir().unwrap();
    let db = create_db(dir.path());
    let conn = Connection::open(&db).unwrap();

    assert_ok(conn.execute(
        "CREATE TABLE strict (id INTEGER NOT NULL PRIMARY KEY, val INTEGER NOT NULL DEFAULT 50 CHECK(val >= 0 AND val <= 100))"
    ).unwrap());

    // Omit val -> gets default 50, passes NOT NULL, passes CHECK
    assert_rows_affected(
        conn.execute("INSERT INTO strict (id) VALUES (1)").unwrap(),
        1,
    );
    let rows = get_rows(conn.execute("SELECT val FROM strict WHERE id = 1").unwrap());
    assert_eq!(rows[0][0], Value::Integer(50));

    // Explicit 75 -> passes
    assert_rows_affected(
        conn.execute("INSERT INTO strict VALUES (2, 75)").unwrap(),
        1,
    );

    // Explicit 150 -> fails CHECK
    let err = conn
        .execute("INSERT INTO strict VALUES (3, 150)")
        .unwrap_err();
    assert!(matches!(err, SqlError::CheckViolation(..)));
}

#[test]
fn interleaved_insert_delete_with_fk() {
    let dir = tempfile::tempdir().unwrap();
    let db = create_db(dir.path());
    let conn = Connection::open(&db).unwrap();

    assert_ok(
        conn.execute("CREATE TABLE tags (id INTEGER NOT NULL PRIMARY KEY)")
            .unwrap(),
    );
    assert_ok(conn.execute(
        "CREATE TABLE posts (id INTEGER NOT NULL PRIMARY KEY, tag_id INTEGER NOT NULL REFERENCES tags(id))"
    ).unwrap());

    // Interleave: add parent, add children, remove children, remove parent, repeat
    for batch in 0..10 {
        let tag_id = batch + 1;
        assert_rows_affected(
            conn.execute(&format!("INSERT INTO tags VALUES ({tag_id})"))
                .unwrap(),
            1,
        );

        for j in 0..10 {
            let post_id = batch * 10 + j + 1;
            assert_rows_affected(
                conn.execute(&format!("INSERT INTO posts VALUES ({post_id}, {tag_id})"))
                    .unwrap(),
                1,
            );
        }

        // Delete children
        assert_rows_affected(
            conn.execute(&format!("DELETE FROM posts WHERE tag_id = {tag_id}"))
                .unwrap(),
            10,
        );

        assert_rows_affected(
            conn.execute(&format!("DELETE FROM tags WHERE id = {tag_id}"))
                .unwrap(),
            1,
        );
    }

    let rows = get_rows(conn.execute("SELECT COUNT(*) FROM tags").unwrap());
    assert_eq!(rows[0][0], Value::Integer(0));
    let rows = get_rows(conn.execute("SELECT COUNT(*) FROM posts").unwrap());
    assert_eq!(rows[0][0], Value::Integer(0));
}

#[test]
fn many_fk_violations_then_valid_inserts() {
    let dir = tempfile::tempdir().unwrap();
    let db = create_db(dir.path());
    let conn = Connection::open(&db).unwrap();

    assert_ok(
        conn.execute("CREATE TABLE colors (id INTEGER NOT NULL PRIMARY KEY)")
            .unwrap(),
    );
    assert_ok(conn.execute(
        "CREATE TABLE items (id INTEGER NOT NULL PRIMARY KEY, color_id INTEGER NOT NULL REFERENCES colors(id))"
    ).unwrap());

    // 50 FK violations
    for i in 0..50 {
        let err = conn
            .execute(&format!("INSERT INTO items VALUES ({i}, 999)"))
            .unwrap_err();
        assert!(matches!(err, SqlError::ForeignKeyViolation(..)));
    }

    let rows = get_rows(conn.execute("SELECT COUNT(*) FROM items").unwrap());
    assert_eq!(rows[0][0], Value::Integer(0));

    assert_rows_affected(conn.execute("INSERT INTO colors VALUES (1)").unwrap(), 1);
    for i in 0..50 {
        assert_rows_affected(
            conn.execute(&format!("INSERT INTO items VALUES ({i}, 1)"))
                .unwrap(),
            1,
        );
    }

    let rows = get_rows(conn.execute("SELECT COUNT(*) FROM items").unwrap());
    assert_eq!(rows[0][0], Value::Integer(50));
}

#[test]
fn check_on_update_multiple_set_clauses() {
    let dir = tempfile::tempdir().unwrap();
    let db = create_db(dir.path());
    let conn = Connection::open(&db).unwrap();

    assert_ok(conn.execute(
        "CREATE TABLE ranges (id INTEGER NOT NULL PRIMARY KEY, lo INTEGER NOT NULL, hi INTEGER NOT NULL, CHECK(lo <= hi))"
    ).unwrap());

    assert_rows_affected(
        conn.execute("INSERT INTO ranges VALUES (1, 10, 20)")
            .unwrap(),
        1,
    );

    // Valid: swap to wider range
    assert_rows_affected(
        conn.execute("UPDATE ranges SET lo = 5, hi = 25 WHERE id = 1")
            .unwrap(),
        1,
    );

    // Invalid: lo > hi
    let err = conn
        .execute("UPDATE ranges SET lo = 30, hi = 10 WHERE id = 1")
        .unwrap_err();
    assert!(matches!(err, SqlError::CheckViolation(..)));

    let rows = get_rows(
        conn.execute("SELECT lo, hi FROM ranges WHERE id = 1")
            .unwrap(),
    );
    assert_eq!(rows[0][0], Value::Integer(5));
    assert_eq!(rows[0][1], Value::Integer(25));
}

#[test]
fn fk_in_transaction_rollback() {
    let dir = tempfile::tempdir().unwrap();
    let db = create_db(dir.path());
    let conn = Connection::open(&db).unwrap();

    assert_ok(
        conn.execute("CREATE TABLE parent (id INTEGER NOT NULL PRIMARY KEY)")
            .unwrap(),
    );
    assert_ok(conn.execute(
        "CREATE TABLE child (id INTEGER NOT NULL PRIMARY KEY, pid INTEGER NOT NULL REFERENCES parent(id))"
    ).unwrap());

    assert_rows_affected(conn.execute("INSERT INTO parent VALUES (1)").unwrap(), 1);
    assert_rows_affected(conn.execute("INSERT INTO child VALUES (1, 1)").unwrap(), 1);

    // In transaction: add new parent, add child referencing it, then rollback
    assert_ok(conn.execute("BEGIN").unwrap());
    assert_rows_affected(conn.execute("INSERT INTO parent VALUES (2)").unwrap(), 1);
    assert_rows_affected(conn.execute("INSERT INTO child VALUES (2, 2)").unwrap(), 1);
    assert_ok(conn.execute("ROLLBACK").unwrap());

    // Only original data survives
    let rows = get_rows(conn.execute("SELECT COUNT(*) FROM parent").unwrap());
    assert_eq!(rows[0][0], Value::Integer(1));
    let rows = get_rows(conn.execute("SELECT COUNT(*) FROM child").unwrap());
    assert_eq!(rows[0][0], Value::Integer(1));
}

#[test]
fn default_does_not_override_explicit_null_stress() {
    let dir = tempfile::tempdir().unwrap();
    let db = create_db(dir.path());
    let conn = Connection::open(&db).unwrap();

    assert_ok(
        conn.execute("CREATE TABLE t (id INTEGER NOT NULL PRIMARY KEY, val INTEGER DEFAULT 42)")
            .unwrap(),
    );

    // 100 rows with explicit NULL
    for i in 0..100 {
        assert_rows_affected(
            conn.execute(&format!("INSERT INTO t (id, val) VALUES ({i}, NULL)"))
                .unwrap(),
            1,
        );
    }

    let rows = get_rows(
        conn.execute("SELECT COUNT(*) FROM t WHERE val IS NULL")
            .unwrap(),
    );
    assert_eq!(rows[0][0], Value::Integer(100));

    // 100 rows with omitted val -> gets default
    for i in 100..200 {
        assert_rows_affected(
            conn.execute(&format!("INSERT INTO t (id) VALUES ({i})"))
                .unwrap(),
            1,
        );
    }

    let rows = get_rows(
        conn.execute("SELECT COUNT(*) FROM t WHERE val = 42")
            .unwrap(),
    );
    assert_eq!(rows[0][0], Value::Integer(100));
}

#[test]
fn check_mixed_types_in_expression() {
    let dir = tempfile::tempdir().unwrap();
    let db = create_db(dir.path());
    let conn = Connection::open(&db).unwrap();

    assert_ok(conn.execute(
        "CREATE TABLE mixed (id INTEGER NOT NULL PRIMARY KEY, active BOOLEAN NOT NULL, count INTEGER NOT NULL, CHECK(active = TRUE OR count > 0))"
    ).unwrap());

    assert_rows_affected(
        conn.execute("INSERT INTO mixed VALUES (1, TRUE, 0)")
            .unwrap(),
        1,
    );
    assert_rows_affected(
        conn.execute("INSERT INTO mixed VALUES (2, FALSE, 5)")
            .unwrap(),
        1,
    );

    // inactive with zero count -> fails
    let err = conn
        .execute("INSERT INTO mixed VALUES (3, FALSE, 0)")
        .unwrap_err();
    assert!(matches!(err, SqlError::CheckViolation(..)));
}

#[test]
fn fk_delete_parent_after_child_update() {
    let dir = tempfile::tempdir().unwrap();
    let db = create_db(dir.path());
    let conn = Connection::open(&db).unwrap();

    assert_ok(
        conn.execute("CREATE TABLE p (id INTEGER NOT NULL PRIMARY KEY)")
            .unwrap(),
    );
    assert_ok(conn.execute(
        "CREATE TABLE c (id INTEGER NOT NULL PRIMARY KEY, pid INTEGER NOT NULL REFERENCES p(id))"
    ).unwrap());

    assert_rows_affected(conn.execute("INSERT INTO p VALUES (1)").unwrap(), 1);
    assert_rows_affected(conn.execute("INSERT INTO p VALUES (2)").unwrap(), 1);
    assert_rows_affected(conn.execute("INSERT INTO c VALUES (1, 1)").unwrap(), 1);

    // Move child to parent 2
    assert_rows_affected(
        conn.execute("UPDATE c SET pid = 2 WHERE id = 1").unwrap(),
        1,
    );

    assert_rows_affected(conn.execute("DELETE FROM p WHERE id = 1").unwrap(), 1);

    let err = conn.execute("DELETE FROM p WHERE id = 2").unwrap_err();
    assert!(matches!(err, SqlError::ForeignKeyViolation(..)));
}

#[test]
fn fk_child_update_to_invalid_parent() {
    let dir = tempfile::tempdir().unwrap();
    let db = create_db(dir.path());
    let conn = Connection::open(&db).unwrap();

    assert_ok(
        conn.execute("CREATE TABLE p (id INTEGER NOT NULL PRIMARY KEY)")
            .unwrap(),
    );
    assert_ok(conn.execute(
        "CREATE TABLE c (id INTEGER NOT NULL PRIMARY KEY, pid INTEGER NOT NULL REFERENCES p(id))"
    ).unwrap());

    assert_rows_affected(conn.execute("INSERT INTO p VALUES (1)").unwrap(), 1);
    assert_rows_affected(conn.execute("INSERT INTO c VALUES (1, 1)").unwrap(), 1);

    // Update child FK to non-existent parent
    let err = conn
        .execute("UPDATE c SET pid = 999 WHERE id = 1")
        .unwrap_err();
    assert!(matches!(err, SqlError::ForeignKeyViolation(..)));

    let rows = get_rows(conn.execute("SELECT pid FROM c WHERE id = 1").unwrap());
    assert_eq!(rows[0][0], Value::Integer(1));
}

#[test]
fn fk_update_child_to_null_allowed() {
    let dir = tempfile::tempdir().unwrap();
    let db = create_db(dir.path());
    let conn = Connection::open(&db).unwrap();

    assert_ok(
        conn.execute("CREATE TABLE p (id INTEGER NOT NULL PRIMARY KEY)")
            .unwrap(),
    );
    assert_ok(
        conn.execute(
            "CREATE TABLE c (id INTEGER NOT NULL PRIMARY KEY, pid INTEGER REFERENCES p(id))",
        )
        .unwrap(),
    );

    assert_rows_affected(conn.execute("INSERT INTO p VALUES (1)").unwrap(), 1);
    assert_rows_affected(conn.execute("INSERT INTO c VALUES (1, 1)").unwrap(), 1);

    // Set FK to NULL -> OK (MATCH SIMPLE)
    assert_rows_affected(
        conn.execute("UPDATE c SET pid = NULL WHERE id = 1")
            .unwrap(),
        1,
    );

    let rows = get_rows(conn.execute("SELECT pid FROM c WHERE id = 1").unwrap());
    assert_eq!(rows[0][0], Value::Null);
}

#[test]
fn column_level_unique_rejects_duplicate() {
    let dir = tempfile::tempdir().unwrap();
    let db = create_db(dir.path());
    let conn = Connection::open(&db).unwrap();

    assert_ok(
        conn.execute("CREATE TABLE t (id INTEGER PRIMARY KEY, email TEXT UNIQUE)")
            .unwrap(),
    );
    conn.execute("INSERT INTO t VALUES (1, 'a@x')").unwrap();
    let err = conn.execute("INSERT INTO t VALUES (2, 'a@x')").unwrap_err();
    assert!(matches!(err, SqlError::UniqueViolation(_)));
}

#[test]
fn column_level_unique_allows_multiple_nulls() {
    let dir = tempfile::tempdir().unwrap();
    let db = create_db(dir.path());
    let conn = Connection::open(&db).unwrap();

    assert_ok(
        conn.execute("CREATE TABLE t (id INTEGER PRIMARY KEY, email TEXT UNIQUE)")
            .unwrap(),
    );
    conn.execute("INSERT INTO t (id) VALUES (1)").unwrap();
    conn.execute("INSERT INTO t (id) VALUES (2)").unwrap();
    conn.execute("INSERT INTO t (id) VALUES (3)").unwrap();
    let rows = get_rows(conn.execute("SELECT COUNT(*) FROM t").unwrap());
    assert_eq!(rows[0][0], Value::Integer(3));
}

#[test]
fn table_level_unique_rejects_duplicate() {
    let dir = tempfile::tempdir().unwrap();
    let db = create_db(dir.path());
    let conn = Connection::open(&db).unwrap();

    assert_ok(
        conn.execute(
            "CREATE TABLE t (id INTEGER PRIMARY KEY, v INTEGER NOT NULL CHECK(v > 0), UNIQUE(v))",
        )
        .unwrap(),
    );
    conn.execute("INSERT INTO t VALUES (1, 10)").unwrap();
    let err = conn.execute("INSERT INTO t VALUES (2, 10)").unwrap_err();
    assert!(matches!(err, SqlError::UniqueViolation(_)));
}

#[test]
fn table_level_unique_multi_column() {
    let dir = tempfile::tempdir().unwrap();
    let db = create_db(dir.path());
    let conn = Connection::open(&db).unwrap();

    assert_ok(
        conn.execute(
            "CREATE TABLE t (id INTEGER PRIMARY KEY, a INTEGER NOT NULL, b INTEGER NOT NULL, UNIQUE(a, b))",
        )
        .unwrap(),
    );
    conn.execute("INSERT INTO t VALUES (1, 1, 2)").unwrap();
    // Partial match is allowed: (1, 3) differs from (1, 2) in b.
    conn.execute("INSERT INTO t VALUES (2, 1, 3)").unwrap();
    // Same (a, b) combo → violation.
    let err = conn.execute("INSERT INTO t VALUES (3, 1, 2)").unwrap_err();
    assert!(matches!(err, SqlError::UniqueViolation(_)));
}

#[test]
fn table_level_unique_named_constraint() {
    let dir = tempfile::tempdir().unwrap();
    let db = create_db(dir.path());
    let conn = Connection::open(&db).unwrap();

    assert_ok(
        conn.execute(
            "CREATE TABLE t (id INTEGER PRIMARY KEY, v INTEGER NOT NULL, CONSTRAINT uk_v UNIQUE(v))",
        )
        .unwrap(),
    );
    conn.execute("INSERT INTO t VALUES (1, 10)").unwrap();
    let err = conn.execute("INSERT INTO t VALUES (2, 10)").unwrap_err();
    match err {
        SqlError::UniqueViolation(name) => assert_eq!(name, "uk_v"),
        other => panic!("expected UniqueViolation(uk_v), got {other:?}"),
    }
}

#[test]
fn unique_on_pk_column_does_not_create_redundant_index() {
    let dir = tempfile::tempdir().unwrap();
    let db = create_db(dir.path());
    let conn = Connection::open(&db).unwrap();

    // UNIQUE on a PK column should be a no-op (no duplicate index).
    assert_ok(
        conn.execute("CREATE TABLE t (id INTEGER PRIMARY KEY UNIQUE, v INTEGER)")
            .unwrap(),
    );
    conn.execute("INSERT INTO t VALUES (1, 10)").unwrap();
    // Duplicate PK still rejected via PK path.
    let err = conn.execute("INSERT INTO t VALUES (1, 20)").unwrap_err();
    assert!(matches!(
        err,
        SqlError::DuplicateKey | SqlError::UniqueViolation(_)
    ));
}

#[test]
fn unique_update_breaking_uniqueness_rejected() {
    let dir = tempfile::tempdir().unwrap();
    let db = create_db(dir.path());
    let conn = Connection::open(&db).unwrap();
    assert_ok(
        conn.execute("CREATE TABLE t (id INTEGER PRIMARY KEY, v INTEGER NOT NULL UNIQUE)")
            .unwrap(),
    );
    conn.execute("INSERT INTO t VALUES (1, 10), (2, 20), (3, 30)")
        .unwrap();
    let err = conn
        .execute("UPDATE t SET v = 10 WHERE id = 2")
        .unwrap_err();
    assert!(matches!(err, SqlError::UniqueViolation(_)));
    // Original values preserved.
    let rows = get_rows(conn.execute("SELECT v FROM t WHERE id = 2").unwrap());
    assert_eq!(rows[0][0], Value::Integer(20));
}

#[test]
fn unique_update_to_same_value_idempotent() {
    let dir = tempfile::tempdir().unwrap();
    let db = create_db(dir.path());
    let conn = Connection::open(&db).unwrap();
    assert_ok(
        conn.execute("CREATE TABLE t (id INTEGER PRIMARY KEY, v INTEGER NOT NULL UNIQUE)")
            .unwrap(),
    );
    conn.execute("INSERT INTO t VALUES (1, 10)").unwrap();
    // UPDATE to same value must not raise UniqueViolation against itself.
    assert_rows_affected(conn.execute("UPDATE t SET v = 10 WHERE id = 1").unwrap(), 1);
}

#[test]
fn unique_delete_then_reinsert_same_value() {
    let dir = tempfile::tempdir().unwrap();
    let db = create_db(dir.path());
    let conn = Connection::open(&db).unwrap();
    assert_ok(
        conn.execute("CREATE TABLE t (id INTEGER PRIMARY KEY, v INTEGER NOT NULL UNIQUE)")
            .unwrap(),
    );
    conn.execute("INSERT INTO t VALUES (1, 10)").unwrap();
    conn.execute("DELETE FROM t WHERE id = 1").unwrap();
    // After delete, the UNIQUE value is free again.
    conn.execute("INSERT INTO t VALUES (2, 10)").unwrap();
    let rows = get_rows(conn.execute("SELECT v FROM t").unwrap());
    assert_eq!(rows[0][0], Value::Integer(10));
}

#[test]
fn unique_null_column_allows_multiple_rows() {
    let dir = tempfile::tempdir().unwrap();
    let db = create_db(dir.path());
    let conn = Connection::open(&db).unwrap();
    assert_ok(
        conn.execute("CREATE TABLE t (id INTEGER PRIMARY KEY, email TEXT UNIQUE)")
            .unwrap(),
    );
    // Explicit NULL + implicit NULL both allowed, multiple times.
    conn.execute("INSERT INTO t (id, email) VALUES (1, NULL)")
        .unwrap();
    conn.execute("INSERT INTO t (id, email) VALUES (2, NULL)")
        .unwrap();
    conn.execute("INSERT INTO t (id) VALUES (3)").unwrap();
    conn.execute("INSERT INTO t VALUES (4, 'x')").unwrap();
    // But non-null duplicates still rejected.
    let err = conn.execute("INSERT INTO t VALUES (5, 'x')").unwrap_err();
    assert!(matches!(err, SqlError::UniqueViolation(_)));
}

#[test]
fn unique_multi_column_null_in_one_allowed() {
    let dir = tempfile::tempdir().unwrap();
    let db = create_db(dir.path());
    let conn = Connection::open(&db).unwrap();
    assert_ok(
        conn.execute("CREATE TABLE t (id INTEGER PRIMARY KEY, a INTEGER, b INTEGER, UNIQUE(a, b))")
            .unwrap(),
    );
    // SQL standard: tuples with any NULL component are treated as distinct.
    conn.execute("INSERT INTO t VALUES (1, 1, NULL)").unwrap();
    conn.execute("INSERT INTO t VALUES (2, 1, NULL)").unwrap();
    conn.execute("INSERT INTO t VALUES (3, NULL, 1)").unwrap();
    conn.execute("INSERT INTO t VALUES (4, NULL, NULL)")
        .unwrap();
    conn.execute("INSERT INTO t VALUES (5, NULL, NULL)")
        .unwrap();
    let rows = get_rows(conn.execute("SELECT COUNT(*) FROM t").unwrap());
    assert_eq!(rows[0][0], Value::Integer(5));
}

#[test]
fn unique_multiple_constraints_same_table() {
    let dir = tempfile::tempdir().unwrap();
    let db = create_db(dir.path());
    let conn = Connection::open(&db).unwrap();
    assert_ok(
        conn.execute(
            "CREATE TABLE t (id INTEGER PRIMARY KEY, email TEXT UNIQUE, phone TEXT UNIQUE, \
             CONSTRAINT uk_ab UNIQUE(email, phone))",
        )
        .unwrap(),
    );
    conn.execute("INSERT INTO t VALUES (1, 'a@x', '111')")
        .unwrap();
    // Email dup.
    let err = conn
        .execute("INSERT INTO t VALUES (2, 'a@x', '222')")
        .unwrap_err();
    assert!(matches!(err, SqlError::UniqueViolation(_)));
    // Phone dup.
    let err = conn
        .execute("INSERT INTO t VALUES (3, 'b@x', '111')")
        .unwrap_err();
    assert!(matches!(err, SqlError::UniqueViolation(_)));
    // Both distinct → ok.
    conn.execute("INSERT INTO t VALUES (4, 'b@x', '222')")
        .unwrap();
}

#[test]
fn unique_with_fk_on_same_column() {
    let dir = tempfile::tempdir().unwrap();
    let db = create_db(dir.path());
    let conn = Connection::open(&db).unwrap();
    assert_ok(
        conn.execute("CREATE TABLE parent (id INTEGER PRIMARY KEY)")
            .unwrap(),
    );
    assert_ok(
        conn.execute(
            "CREATE TABLE child (id INTEGER PRIMARY KEY, pid INTEGER UNIQUE REFERENCES parent(id))",
        )
        .unwrap(),
    );
    conn.execute("INSERT INTO parent VALUES (1), (2)").unwrap();
    conn.execute("INSERT INTO child VALUES (1, 1)").unwrap();
    // 1-to-1: another child pointing to same parent violates UNIQUE.
    let err = conn.execute("INSERT INTO child VALUES (2, 1)").unwrap_err();
    assert!(matches!(err, SqlError::UniqueViolation(_)));
    // Different parent → ok.
    conn.execute("INSERT INTO child VALUES (3, 2)").unwrap();
    // FK violation for non-existent parent.
    let err = conn
        .execute("INSERT INTO child VALUES (4, 999)")
        .unwrap_err();
    assert!(matches!(err, SqlError::ForeignKeyViolation(_)));
}

#[test]
fn unique_large_scale_1000_distinct() {
    let dir = tempfile::tempdir().unwrap();
    let db = create_db(dir.path());
    let conn = Connection::open(&db).unwrap();
    assert_ok(
        conn.execute("CREATE TABLE t (id INTEGER PRIMARY KEY, v INTEGER NOT NULL UNIQUE)")
            .unwrap(),
    );
    for i in 0..1000 {
        assert_rows_affected(
            conn.execute(&format!("INSERT INTO t VALUES ({i}, {i})"))
                .unwrap(),
            1,
        );
    }
    // Any duplicate in a large set is still rejected.
    let err = conn
        .execute("INSERT INTO t VALUES (5000, 500)")
        .unwrap_err();
    assert!(matches!(err, SqlError::UniqueViolation(_)));
}

#[test]
fn unique_transaction_rollback_preserves_state() {
    let dir = tempfile::tempdir().unwrap();
    let db = create_db(dir.path());
    let conn = Connection::open(&db).unwrap();
    assert_ok(
        conn.execute("CREATE TABLE t (id INTEGER PRIMARY KEY, v INTEGER NOT NULL UNIQUE)")
            .unwrap(),
    );
    conn.execute("INSERT INTO t VALUES (1, 10)").unwrap();

    conn.execute("BEGIN").unwrap();
    conn.execute("INSERT INTO t VALUES (2, 20)").unwrap();
    let err = conn.execute("INSERT INTO t VALUES (3, 10)").unwrap_err();
    assert!(matches!(err, SqlError::UniqueViolation(_)));
    conn.execute("ROLLBACK").unwrap();

    // After rollback only the pre-transaction row survives.
    let rows = get_rows(conn.execute("SELECT COUNT(*) FROM t").unwrap());
    assert_eq!(rows[0][0], Value::Integer(1));
}

#[test]
fn unique_composite_order_matters() {
    let dir = tempfile::tempdir().unwrap();
    let db = create_db(dir.path());
    let conn = Connection::open(&db).unwrap();
    assert_ok(
        conn.execute("CREATE TABLE t (id INTEGER PRIMARY KEY, a INTEGER NOT NULL, b INTEGER NOT NULL, UNIQUE(a, b))")
            .unwrap(),
    );
    conn.execute("INSERT INTO t VALUES (1, 1, 2)").unwrap();
    // (2, 1) is a different tuple from (1, 2), should be allowed.
    conn.execute("INSERT INTO t VALUES (2, 2, 1)").unwrap();
    // Exact (1, 2) repeat rejected.
    let err = conn.execute("INSERT INTO t VALUES (3, 1, 2)").unwrap_err();
    assert!(matches!(err, SqlError::UniqueViolation(_)));
}