guardian-db 0.17.2

High-performance, local-first decentralized database built on Rust and Iroh
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
#![cfg(feature = "sql")]
//! End-to-end conformance tests for the PostgreSQL extension mechanism:
//! CREATE/DROP EXTENSION lifecycle, catalog views, function/type/operator
//! gating, GUC configuration, and persistence of installed state in the
//! catalog (the same document that replicates between peers).

use guardian_db::sql::engine::{Database, Session};
use guardian_db::sql::{ExecResult, MemoryStorage};
use std::sync::Arc;

fn db() -> Arc<Database<MemoryStorage>> {
    Arc::new(Database::new(Arc::new(MemoryStorage::new()), "app"))
}

async fn session() -> Session<MemoryStorage> {
    Session::new(db(), "guardian")
}

async fn ok(s: &mut Session<MemoryStorage>, sql: &str) -> Vec<ExecResult> {
    s.execute(sql)
        .await
        .unwrap_or_else(|e| panic!("`{sql}` failed: {e}"))
}

async fn err_code(s: &mut Session<MemoryStorage>, sql: &str) -> String {
    match s.execute(sql).await {
        Ok(_) => panic!("expected `{sql}` to fail, but it succeeded"),
        Err(e) => e.sqlstate().to_string(),
    }
}

/// First row/column of a row-producing result, as PostgreSQL text output.
async fn scalar(s: &mut Session<MemoryStorage>, sql: &str) -> Option<String> {
    match ok(s, sql).await.pop() {
        Some(ExecResult::Rows { rows, .. }) => rows
            .first()
            .and_then(|r| r.first())
            .and_then(|v| v.to_text()),
        other => panic!("`{sql}` did not produce rows: {other:?}"),
    }
}

// ---------------------------------------------------------------------------
// Lifecycle
// ---------------------------------------------------------------------------

#[tokio::test]
async fn create_extension_gates_functions() {
    let mut s = session().await;
    // Not installed: typed undefined-function error naming the extension.
    assert_eq!(
        &err_code(&mut s, "SELECT uuid_generate_v4()").await,
        "42883"
    );
    ok(&mut s, "CREATE EXTENSION \"uuid-ossp\"").await;
    let u = scalar(&mut s, "SELECT uuid_generate_v4()").await.unwrap();
    assert_eq!(u.len(), 36);
}

#[tokio::test]
async fn create_extension_unknown_name_is_typed() {
    let mut s = session().await;
    assert_eq!(&err_code(&mut s, "CREATE EXTENSION postgis").await, "0A000");
}

#[tokio::test]
async fn create_extension_duplicate_and_if_not_exists() {
    let mut s = session().await;
    ok(&mut s, "CREATE EXTENSION pgcrypto").await;
    assert_eq!(
        &err_code(&mut s, "CREATE EXTENSION pgcrypto").await,
        "42710"
    );
    ok(&mut s, "CREATE EXTENSION IF NOT EXISTS pgcrypto").await;
}

#[tokio::test]
async fn create_extension_bad_version() {
    let mut s = session().await;
    assert_eq!(
        &err_code(&mut s, "CREATE EXTENSION pg_trgm WITH VERSION '9.9'").await,
        "42704"
    );
}

#[tokio::test]
async fn drop_extension_lifecycle() {
    let mut s = session().await;
    ok(&mut s, "CREATE EXTENSION pg_trgm").await;
    ok(&mut s, "DROP EXTENSION pg_trgm").await;
    assert_eq!(&err_code(&mut s, "DROP EXTENSION pg_trgm").await, "42704");
    ok(&mut s, "DROP EXTENSION IF EXISTS pg_trgm").await;
    // Functions are gated again after drop.
    assert_eq!(
        &err_code(&mut s, "SELECT similarity('a','b')").await,
        "42883"
    );
}

#[tokio::test]
async fn plpgsql_is_preinstalled_like_postgres() {
    let mut s = session().await;
    let v = scalar(
        &mut s,
        "SELECT extversion FROM pg_extension WHERE extname = 'plpgsql'",
    )
    .await;
    assert_eq!(v.as_deref(), Some("1.0"));
    ok(&mut s, "DROP EXTENSION plpgsql").await;
}

#[tokio::test]
async fn drop_extension_with_dependent_table_is_blocked() {
    let mut s = session().await;
    ok(&mut s, "CREATE EXTENSION citext").await;
    ok(&mut s, "CREATE TABLE users (email CITEXT PRIMARY KEY)").await;
    // RESTRICT (default) refuses; CASCADE refuses explicitly (no implicit
    // data destruction) — both typed.
    assert_eq!(&err_code(&mut s, "DROP EXTENSION citext").await, "0A000");
    assert_eq!(
        &err_code(&mut s, "DROP EXTENSION citext CASCADE").await,
        "0A000"
    );
    ok(&mut s, "DROP TABLE users").await;
    ok(&mut s, "DROP EXTENSION citext").await;
}

// ---------------------------------------------------------------------------
// ALTER EXTENSION (hand-parsed: sqlparser 0.62 has no AST for it)
// ---------------------------------------------------------------------------

#[tokio::test]
async fn alter_extension_update() {
    let mut s = session().await;
    // Not installed: typed undefined-object error.
    assert_eq!(
        &err_code(&mut s, "ALTER EXTENSION pg_trgm UPDATE").await,
        "42704"
    );
    ok(&mut s, "CREATE EXTENSION pg_trgm").await;
    // UPDATE and UPDATE TO the available version succeed with the right tag.
    let r = ok(&mut s, "ALTER EXTENSION pg_trgm UPDATE").await;
    assert_eq!(r[0].command_tag(), "ALTER EXTENSION");
    ok(&mut s, "ALTER EXTENSION pg_trgm UPDATE TO '1.6'").await;
    assert_eq!(
        scalar(
            &mut s,
            "SELECT extversion FROM pg_extension WHERE extname = 'pg_trgm'"
        )
        .await
        .as_deref(),
        Some("1.6")
    );
    // Unknown target version: 42704 naming the available version.
    let err = s
        .execute("ALTER EXTENSION pg_trgm UPDATE TO '9.9'")
        .await
        .unwrap_err();
    assert_eq!(err.sqlstate(), "42704");
    assert!(err.to_string().contains("1.6"), "should name 1.6: {err}");
}

#[tokio::test]
async fn alter_extension_set_schema_and_membership_are_refused() {
    let mut s = session().await;
    ok(&mut s, "CREATE EXTENSION citext").await;
    // None of the registry extensions are relocatable.
    let err = s
        .execute("ALTER EXTENSION citext SET SCHEMA util")
        .await
        .unwrap_err();
    assert_eq!(err.sqlstate(), "0A000");
    assert!(err.to_string().contains("not relocatable"), "{err}");
    // Membership changes are reserved for extension scripts in PostgreSQL.
    assert_eq!(
        &err_code(&mut s, "ALTER EXTENSION citext ADD FUNCTION f(text)").await,
        "0A000"
    );
    assert_eq!(
        &err_code(&mut s, "ALTER EXTENSION citext DROP TYPE citext").await,
        "0A000"
    );
    // Malformed ALTER EXTENSION is a syntax error.
    assert_eq!(
        &err_code(&mut s, "ALTER EXTENSION citext FROBNICATE").await,
        "42601"
    );
}

#[tokio::test]
async fn alter_extension_mixes_with_other_statements_in_order() {
    let mut s = session().await;
    let results = ok(
        &mut s,
        "CREATE EXTENSION pg_trgm; \
         ALTER EXTENSION pg_trgm UPDATE; \
         SELECT similarity('abc', 'abc')",
    )
    .await;
    assert_eq!(results.len(), 3);
    assert_eq!(results[0].command_tag(), "CREATE EXTENSION");
    assert_eq!(results[1].command_tag(), "ALTER EXTENSION");
    match &results[2] {
        ExecResult::Rows { rows, .. } => {
            assert_eq!(rows[0][0].to_text().as_deref(), Some("1"));
        }
        other => panic!("expected rows, got {other:?}"),
    }
    // A `;` inside a string literal does not split the ALTER EXTENSION route.
    let results = ok(&mut s, "SELECT 'ALTER EXTENSION x; UPDATE'").await;
    assert_eq!(results.len(), 1);
}

#[tokio::test]
async fn alter_extension_transaction_semantics() {
    let mut s = session().await;
    // Inside an explicit transaction the version change is staged and commits.
    ok(
        &mut s,
        "BEGIN; CREATE EXTENSION pg_trgm; ALTER EXTENSION pg_trgm UPDATE TO '1.6'; COMMIT",
    )
    .await;
    assert_eq!(
        scalar(
            &mut s,
            "SELECT extversion FROM pg_extension WHERE extname = 'pg_trgm'"
        )
        .await
        .as_deref(),
        Some("1.6")
    );
    // A failing ALTER EXTENSION aborts an open block, like any other error.
    ok(&mut s, "BEGIN").await;
    assert_eq!(
        &err_code(&mut s, "ALTER EXTENSION nope UPDATE").await,
        "42704"
    );
    assert_eq!(&err_code(&mut s, "SELECT 1").await, "25P02");
    ok(&mut s, "ROLLBACK").await;
}

#[tokio::test]
async fn alter_extension_extended_protocol_is_rejected() {
    let s = session().await;
    let err = match s.prepare("ALTER EXTENSION pg_trgm UPDATE") {
        Err(e) => e,
        Ok(_) => panic!("preparing ALTER EXTENSION should fail"),
    };
    assert_eq!(err.sqlstate(), "42601");
    assert!(
        err.to_string().contains("simple query protocol"),
        "error should point at simple-protocol support: {err}"
    );
}

// ---------------------------------------------------------------------------
// Catalog views
// ---------------------------------------------------------------------------

#[tokio::test]
async fn pg_available_extensions_lists_registry() {
    let mut s = session().await;
    let n = scalar(&mut s, "SELECT count(*) FROM pg_available_extensions").await;
    let count: i64 = n.unwrap().parse().unwrap();
    assert!(count >= 10, "registry should list all bundled extensions");
    // installed_version reflects state.
    ok(&mut s, "CREATE EXTENSION unaccent").await;
    let v = scalar(
        &mut s,
        "SELECT installed_version FROM pg_available_extensions WHERE name = 'unaccent'",
    )
    .await;
    assert_eq!(v.as_deref(), Some("1.1"));
}

#[tokio::test]
async fn pg_extension_reflects_installs() {
    let mut s = session().await;
    ok(&mut s, "CREATE EXTENSION vector").await;
    let v = scalar(
        &mut s,
        "SELECT extversion FROM pg_extension WHERE extname = 'vector'",
    )
    .await;
    assert_eq!(v.as_deref(), Some("0.8.1"));
    let installed = scalar(
        &mut s,
        "SELECT installed FROM pg_available_extension_versions WHERE name = 'vector'",
    )
    .await;
    assert_eq!(installed.as_deref(), Some("t"));
}

#[tokio::test]
async fn runtime_column_reports_extension_strategy() {
    let mut s = session().await;
    // `runtime` is a GuardianDB extension column on pg_available_extensions.
    assert_eq!(
        scalar(
            &mut s,
            "SELECT runtime FROM pg_available_extensions WHERE name = 'pg_trgm'"
        )
        .await
        .as_deref(),
        Some("native")
    );
    assert_eq!(
        scalar(
            &mut s,
            "SELECT runtime FROM pg_available_extensions WHERE name = 'postgis'"
        )
        .await
        .as_deref(),
        Some("sidecar")
    );
    // The sidecar-routed registry entries.
    let n = scalar(
        &mut s,
        "SELECT count(*) FROM pg_available_extensions WHERE runtime = 'sidecar'",
    )
    .await;
    assert_eq!(n.as_deref(), Some("3"));
    // Without a configured sidecar, installing any of them fails typed, with
    // an actionable message naming both configuration channels.
    for name in ["postgis", "timescaledb", "pg_stat_statements"] {
        let err = s
            .execute(&format!("CREATE EXTENSION {name}"))
            .await
            .unwrap_err();
        assert_eq!(err.sqlstate(), "0A000", "{name}");
        let msg = err.to_string();
        assert!(msg.contains("guardian.sidecar_dsn"), "{msg}");
        assert!(msg.contains("GUARDIAN_PG_SIDECAR_DSN"), "{msg}");
    }
}

#[tokio::test]
async fn pg_depend_tracks_extension_dependencies() {
    let mut s = session().await;
    ok(&mut s, "CREATE EXTENSION citext").await;
    ok(
        &mut s,
        "CREATE TABLE users (id INT PRIMARY KEY, email CITEXT)",
    )
    .await;
    // One pg_extension -> pg_namespace row per installed extension
    // (plpgsql is pre-installed, so citext makes two).
    let n = scalar(
        &mut s,
        "SELECT count(*) FROM pg_depend \
         WHERE classid = 3079 AND refclassid = 2615 AND deptype = 'n'",
    )
    .await;
    assert_eq!(n.as_deref(), Some("2"));
    // The citext column registers a pg_class -> pg_extension dependency with
    // objsubid = its attribute number (email is column 2 of users).
    let sub = scalar(
        &mut s,
        "SELECT d.objsubid FROM pg_depend d JOIN pg_class c ON c.oid = d.objid \
         WHERE d.classid = 1259 AND d.refclassid = 3079 AND c.relname = 'users'",
    )
    .await;
    assert_eq!(sub.as_deref(), Some("2"));
    // ... and it points at citext's pg_extension row.
    let ext = scalar(
        &mut s,
        "SELECT e.extname FROM pg_depend d JOIN pg_extension e ON e.oid = d.refobjid \
         WHERE d.classid = 1259 AND d.refclassid = 3079",
    )
    .await;
    assert_eq!(ext.as_deref(), Some("citext"));
    // Dropping the table clears the column dependency.
    ok(&mut s, "DROP TABLE users").await;
    let n = scalar(
        &mut s,
        "SELECT count(*) FROM pg_depend WHERE classid = 1259",
    )
    .await;
    assert_eq!(n.as_deref(), Some("0"));
}

// ---------------------------------------------------------------------------
// Persistence: installed state lives in the catalog document (the replicated
// unit), so a fresh session over the SAME storage sees it; a fresh storage
// does not.
// ---------------------------------------------------------------------------

#[tokio::test]
async fn extension_state_persists_across_sessions() {
    let storage = Arc::new(MemoryStorage::new());
    let database = Arc::new(Database::new(storage.clone(), "app"));
    let mut s1 = Session::new(database.clone(), "guardian");
    ok(&mut s1, "CREATE EXTENSION pgcrypto").await;
    drop(s1);
    // New session, same storage: still installed (catalog was saved).
    let database2 = Arc::new(Database::new(storage, "app"));
    let mut s2 = Session::new(database2, "guardian");
    let d = scalar(&mut s2, "SELECT encode(digest('abc','sha256'),'hex')").await;
    assert_eq!(
        d.as_deref(),
        Some("ba7816bf8f01cfea414140de5dae2223b00361a396177a9cb410ff61f20015ad")
    );
    // Fresh storage: not installed.
    let mut s3 = session().await;
    assert_eq!(
        &err_code(&mut s3, "SELECT digest('a','md5')").await,
        "42883"
    );
}

// ---------------------------------------------------------------------------
// Functions, operators, types
// ---------------------------------------------------------------------------

#[tokio::test]
async fn pg_trgm_operators_and_gucs() {
    let mut s = session().await;
    ok(&mut s, "CREATE EXTENSION pg_trgm").await;
    assert_eq!(
        scalar(&mut s, "SELECT similarity('word','two words')")
            .await
            .as_deref(),
        Some("0.36363637")
    );
    // Default threshold 0.3: 'word' % 'two words' is true.
    assert_eq!(
        scalar(&mut s, "SELECT 'word' % 'two words'")
            .await
            .as_deref(),
        Some("t")
    );
    // Raise the threshold via SET; the operator observes it.
    ok(&mut s, "SET pg_trgm.similarity_threshold = 0.5").await;
    assert_eq!(
        scalar(&mut s, "SELECT 'word' % 'two words'")
            .await
            .as_deref(),
        Some("f")
    );
    // set_limit()/show_limit() round-trip and persist for the session.
    assert_eq!(
        scalar(&mut s, "SELECT set_limit(0.2)").await.as_deref(),
        Some("0.2")
    );
    assert_eq!(
        scalar(&mut s, "SELECT show_limit()").await.as_deref(),
        Some("0.2")
    );
    assert_eq!(
        scalar(&mut s, "SELECT 'word' % 'two words'")
            .await
            .as_deref(),
        Some("t")
    );
}

#[tokio::test]
async fn citext_column_semantics() {
    let mut s = session().await;
    // Type is gated on the extension.
    assert_eq!(
        &err_code(&mut s, "CREATE TABLE t (e CITEXT)").await,
        "42704"
    );
    ok(&mut s, "CREATE EXTENSION citext").await;
    ok(&mut s, "CREATE TABLE t (e CITEXT UNIQUE)").await;
    ok(&mut s, "INSERT INTO t VALUES ('Alice@Example.COM')").await;
    // Case-insensitive UNIQUE.
    assert_eq!(
        &err_code(&mut s, "INSERT INTO t VALUES ('alice@example.com')").await,
        "23505"
    );
    // Case-insensitive comparison, original case preserved on output.
    assert_eq!(
        scalar(&mut s, "SELECT e FROM t WHERE e = 'ALICE@EXAMPLE.COM'")
            .await
            .as_deref(),
        Some("Alice@Example.COM")
    );
}

#[tokio::test]
async fn vector_column_and_distance_operators() {
    let mut s = session().await;
    ok(&mut s, "CREATE EXTENSION vector").await;
    ok(
        &mut s,
        "CREATE TABLE items (id INT PRIMARY KEY, v VECTOR(2))",
    )
    .await;
    ok(&mut s, "INSERT INTO items VALUES (1,'[1,2]'), (2,'[4,6]')").await;
    // Dimension enforcement.
    assert_eq!(
        &err_code(&mut s, "INSERT INTO items VALUES (3,'[1,2,3]')").await,
        "42804"
    );
    assert_eq!(
        scalar(
            &mut s,
            "SELECT v <-> '[4,6]'::vector FROM items WHERE id = 1"
        )
        .await
        .as_deref(),
        Some("5")
    );
    assert_eq!(
        scalar(
            &mut s,
            "SELECT l2_distance('[1,2]'::vector,'[4,6]'::vector)"
        )
        .await
        .as_deref(),
        Some("5")
    );
    // ORDER BY nearest-neighbour, the canonical pgvector query shape.
    assert_eq!(
        scalar(
            &mut s,
            "SELECT id FROM items ORDER BY v <-> '[3.9,5.9]'::vector LIMIT 1"
        )
        .await
        .as_deref(),
        Some("2")
    );
}

#[tokio::test]
async fn fuzzystrmatch_and_unaccent_functions() {
    let mut s = session().await;
    ok(&mut s, "CREATE EXTENSION fuzzystrmatch").await;
    ok(&mut s, "CREATE EXTENSION unaccent").await;
    assert_eq!(
        scalar(&mut s, "SELECT levenshtein('kitten','sitting')")
            .await
            .as_deref(),
        Some("3")
    );
    assert_eq!(
        scalar(&mut s, "SELECT soundex('Margaret')")
            .await
            .as_deref(),
        Some("M626")
    );
    assert_eq!(
        scalar(&mut s, "SELECT unaccent('Hôtel')").await.as_deref(),
        Some("Hotel")
    );
}

// ---------------------------------------------------------------------------
// Sidecar runtime: DSN validation and transaction-scoped routing rules that
// need no live sidecar. The wire-level tests live in `sidecar_wire` below.
// ---------------------------------------------------------------------------

#[tokio::test]
async fn sidecar_dsn_rejects_non_disable_sslmode() {
    let mut s = session().await;
    ok(
        &mut s,
        "SET guardian.sidecar_dsn = 'postgres://u:p@127.0.0.1:5432/db?sslmode=require'",
    )
    .await;
    // The client is plaintext-only, so the DSN is rejected before any I/O.
    let err = s.execute("CREATE EXTENSION postgis").await.unwrap_err();
    assert_eq!(err.sqlstate(), "0A000");
    assert!(err.to_string().contains("sslmode"), "{err}");
}

#[tokio::test]
async fn sidecar_routing_is_autocommit_only() {
    let mut s = session().await;
    ok(
        &mut s,
        "SET guardian.sidecar_dsn = 'postgres://u@127.0.0.1:1/db?sslmode=disable'",
    )
    .await;
    // Inside an explicit transaction the local error is kept (same SQLSTATE)
    // with a hint explaining why nothing was forwarded — no connection is
    // even attempted, so the unreachable DSN above is never dialed.
    ok(&mut s, "BEGIN").await;
    let err = s
        .execute("SELECT this_function_does_not_exist(1)")
        .await
        .unwrap_err();
    assert_eq!(err.sqlstate(), "42883");
    assert!(err.to_string().contains("sidecar"), "{err}");
    assert!(err.to_string().contains("transaction"), "{err}");
    ok(&mut s, "ROLLBACK").await;
    // Sidecar extension DDL is refused inside transaction blocks too.
    ok(&mut s, "BEGIN").await;
    let err = s.execute("CREATE EXTENSION postgis").await.unwrap_err();
    assert_eq!(err.sqlstate(), "0A000");
    assert!(err.to_string().contains("transaction block"), "{err}");
    ok(&mut s, "ROLLBACK").await;
}

// ---------------------------------------------------------------------------
// Sidecar runtime over the real wire protocol. The mock sidecar is a second
// GuardianDB pgwire server (same protocol, same SQLSTATE-tagged errors), so
// these tests exercise the client, the forwarding rules and the error
// mapping end to end over TCP.
// ---------------------------------------------------------------------------

#[cfg(feature = "pgwire")]
mod sidecar_wire {
    use super::*;
    use guardian_db::sql::{Catalog, RelationalStorage};
    use tokio::net::TcpListener;

    /// Start a GuardianDB pgwire server over `storage` on an ephemeral port;
    /// returns its DSN and the served database (for direct seeding).
    async fn mock_sidecar(storage: Arc<MemoryStorage>) -> (String, Arc<Database<MemoryStorage>>) {
        let db = Arc::new(Database::new(storage, "sidecar"));
        let listener = TcpListener::bind("127.0.0.1:0").await.unwrap();
        let port = listener.local_addr().unwrap().port();
        let served = db.clone();
        tokio::spawn(async move {
            let _ = guardian_db::pgwire::serve_on(listener, served, "guardian").await;
        });
        (
            format!("postgres://guardian:guardian@127.0.0.1:{port}/sidecar?sslmode=disable"),
            db,
        )
    }

    async fn set_dsn(s: &mut Session<MemoryStorage>, dsn: &str) {
        ok(s, &format!("SET guardian.sidecar_dsn = '{dsn}'")).await;
    }

    #[tokio::test]
    async fn create_extension_forwarding_propagates_sidecar_errors() {
        // The mock (a GuardianDB engine with no sidecar of its own) rejects
        // CREATE EXTENSION pg_stat_statements with 0A000. That SQLSTATE must
        // arrive typed at the main session — proving the statement was
        // forwarded and the wire ErrorResponse was mapped faithfully.
        let (dsn, _mock_db) = mock_sidecar(Arc::new(MemoryStorage::new())).await;
        let mut s = session().await;
        set_dsn(&mut s, &dsn).await;
        let err = s
            .execute("CREATE EXTENSION pg_stat_statements")
            .await
            .unwrap_err();
        assert_eq!(err.sqlstate(), "0A000");
        // The failed install left no local record.
        let n = scalar(
            &mut s,
            "SELECT count(*) FROM pg_extension WHERE extname = 'pg_stat_statements'",
        )
        .await;
        assert_eq!(n.as_deref(), Some("0"));
    }

    #[tokio::test]
    async fn query_fallback_routes_to_sidecar_over_the_wire() {
        // pg_trgm is installed on the MOCK only. Locally, similarity() fails
        // with 42883; once a DSN is configured the statement is forwarded
        // verbatim and the mock's answer comes back decoded.
        let (dsn, mock_db) = mock_sidecar(Arc::new(MemoryStorage::new())).await;
        let mut mock_session = Session::new(mock_db, "guardian");
        ok(&mut mock_session, "CREATE EXTENSION pg_trgm").await;
        ok(
            &mut mock_session,
            "CREATE TABLE sidecar_only (n INT); INSERT INTO sidecar_only VALUES (7)",
        )
        .await;
        drop(mock_session);

        let mut s = session().await;
        // Without a DSN the local error stands.
        assert_eq!(
            &err_code(&mut s, "SELECT similarity('a','a')").await,
            "42883"
        );
        set_dsn(&mut s, &dsn).await;
        assert_eq!(
            scalar(&mut s, "SELECT similarity('a','a')")
                .await
                .as_deref(),
            Some("1")
        );
        // Undefined-table fallback works the same way: the relation exists
        // only on the sidecar, so the local 42P01 forwards the query.
        assert_eq!(
            scalar(&mut s, "SELECT n FROM sidecar_only")
                .await
                .as_deref(),
            Some("7")
        );
        // A statement that is undefined on both sides keeps the sidecar's
        // typed error.
        assert_eq!(
            &err_code(&mut s, "SELECT nowhere_function(1)").await,
            "42883"
        );
    }

    #[tokio::test]
    async fn sidecar_binding_installs_records_and_persists() {
        // Seed the mock as a sidecar that already provides
        // pg_stat_statements (as a real PostgreSQL would), so the forwarded
        // CREATE EXTENSION IF NOT EXISTS succeeds and reports a version.
        let mock_storage = Arc::new(MemoryStorage::new());
        let mut seeded = Catalog::new("sidecar");
        seeded.install_extension("pg_stat_statements", "1.11");
        mock_storage
            .save_catalog(&serde_json::to_value(&seeded).unwrap())
            .await
            .unwrap();
        let (dsn, _mock_db) = mock_sidecar(mock_storage).await;

        let storage = Arc::new(MemoryStorage::new());
        let database = Arc::new(Database::new(storage.clone(), "app"));
        let mut s1 = Session::new(database, "guardian");
        set_dsn(&mut s1, &dsn).await;
        ok(&mut s1, "CREATE EXTENSION IF NOT EXISTS pg_stat_statements").await;
        // Recorded locally with the version the sidecar reported (not the
        // registry default), suffix-free in every view.
        assert_eq!(
            scalar(
                &mut s1,
                "SELECT extversion FROM pg_extension WHERE extname = 'pg_stat_statements'"
            )
            .await
            .as_deref(),
            Some("1.11")
        );
        drop(s1);

        // Restart: a fresh session over the same storage still sees the
        // binding — no DSN is needed just to read the catalog.
        let database2 = Arc::new(Database::new(storage, "app"));
        let mut s2 = Session::new(database2, "guardian");
        assert_eq!(
            scalar(
                &mut s2,
                "SELECT extversion FROM pg_extension WHERE extname = 'pg_stat_statements'"
            )
            .await
            .as_deref(),
            Some("1.11")
        );
        // Dropping a sidecar-bound extension without a sidecar configured is
        // refused with the actionable message; with the DSN it forwards the
        // drop and removes the local record.
        assert_eq!(
            &err_code(&mut s2, "DROP EXTENSION pg_stat_statements").await,
            "0A000"
        );
        set_dsn(&mut s2, &dsn).await;
        ok(&mut s2, "DROP EXTENSION pg_stat_statements").await;
        assert_eq!(
            scalar(
                &mut s2,
                "SELECT count(*) FROM pg_extension WHERE extname = 'pg_stat_statements'"
            )
            .await
            .as_deref(),
            Some("0")
        );
    }
}

// ---------------------------------------------------------------------------
// Session configuration (SHOW / current_setting)
// ---------------------------------------------------------------------------

#[tokio::test]
async fn show_and_current_setting() {
    let mut s = session().await;
    ok(&mut s, "SET application_name = 'conformance'").await;
    assert_eq!(
        scalar(&mut s, "SHOW application_name").await.as_deref(),
        Some("conformance")
    );
    assert_eq!(
        scalar(&mut s, "SELECT current_setting('application_name')")
            .await
            .as_deref(),
        Some("conformance")
    );
    // Extension GUC default is visible without SET once registered.
    assert_eq!(
        scalar(&mut s, "SHOW pg_trgm.similarity_threshold")
            .await
            .as_deref(),
        Some("0.3")
    );
    // Unknown parameter: typed.
    assert_eq!(&err_code(&mut s, "SHOW no_such_parameter").await, "42704");
    // current_setting(name, true) is NULL-forgiving.
    assert_eq!(
        scalar(&mut s, "SELECT current_setting('nope', true)").await,
        None
    );
}

// ---------------------------------------------------------------------------
// Sidecar runtime against a REAL PostgreSQL (ignored by default: requires a
// local PostgreSQL 16 installation). Run with:
//   cargo test --features sql --test sql_extensions -- --ignored
// ---------------------------------------------------------------------------

/// Kills the postgres child and removes its data directory on drop, so a
/// failing assertion cannot leak the server process.
struct PgGuard {
    child: std::process::Child,
    dir: std::path::PathBuf,
}

impl Drop for PgGuard {
    fn drop(&mut self) {
        let _ = self.child.kill();
        let _ = self.child.wait();
        let _ = std::fs::remove_dir_all(&self.dir);
    }
}

/// Numeric output of an `id` invocation (e.g. `id -u postgres`).
fn id_of(args: &[&str]) -> Option<u32> {
    let out = std::process::Command::new("id").args(args).output().ok()?;
    String::from_utf8_lossy(&out.stdout).trim().parse().ok()
}

#[tokio::test]
#[ignore = "requires a local PostgreSQL 16 installation (initdb/postgres)"]
async fn sidecar_real_postgres() {
    let bin = std::path::Path::new("/usr/lib/postgresql/16/bin");
    assert!(
        bin.join("initdb").exists(),
        "PostgreSQL 16 not found at {}",
        bin.display()
    );
    let dir = std::env::temp_dir().join(format!("gdb_sidecar_pg_{}", std::process::id()));
    let _ = std::fs::remove_dir_all(&dir);
    let data = dir.join("data");
    let sockets = dir.join("sock");
    std::fs::create_dir_all(&sockets).unwrap();
    // initdb refuses to run as root: when the test runs as root (containers,
    // sandboxes), hand the server to the unprivileged `postgres` user.
    let run_as: Option<(u32, u32)> = if id_of(&["-u"]) == Some(0) {
        let uid = id_of(&["-u", "postgres"]).expect("running as root and no `postgres` user");
        let gid = id_of(&["-g", "postgres"]).expect("no `postgres` group");
        let chown = std::process::Command::new("chown")
            .arg("-R")
            .arg("postgres")
            .arg(&dir)
            .status()
            .unwrap();
        assert!(chown.success(), "chown of {} failed", dir.display());
        Some((uid, gid))
    } else {
        None
    };
    let demote = |cmd: &mut std::process::Command| {
        if let Some((uid, gid)) = run_as {
            use std::os::unix::process::CommandExt;
            cmd.uid(uid).gid(gid);
        }
    };
    let mut initdb = std::process::Command::new(bin.join("initdb"));
    initdb.args([
        "-D",
        data.to_str().unwrap(),
        "-U",
        "postgres",
        "-A",
        "trust",
    ]);
    demote(&mut initdb);
    let out = initdb.output().unwrap();
    assert!(
        out.status.success(),
        "initdb failed: {}",
        String::from_utf8_lossy(&out.stderr)
    );
    // An ephemeral port: bind, remember, release.
    let port = {
        let probe = std::net::TcpListener::bind("127.0.0.1:0").unwrap();
        probe.local_addr().unwrap().port()
    };
    let mut server = std::process::Command::new(bin.join("postgres"));
    server
        .args([
            "-D",
            data.to_str().unwrap(),
            "-p",
            &port.to_string(),
            "-c",
            "listen_addresses=127.0.0.1",
            // pg_stat_statements needs its shared library preloaded for the
            // stats view to be readable.
            "-c",
            "shared_preload_libraries=pg_stat_statements",
            "-k",
            sockets.to_str().unwrap(),
        ])
        .stdout(std::process::Stdio::null())
        .stderr(std::process::Stdio::null());
    demote(&mut server);
    let child = server.spawn().unwrap();
    let _guard = PgGuard { child, dir };
    // Wait for readiness.
    let mut ready = false;
    for _ in 0..100 {
        let ok = std::process::Command::new(bin.join("pg_isready"))
            .args(["-h", "127.0.0.1", "-p", &port.to_string()])
            .output()
            .map(|o| o.status.success())
            .unwrap_or(false);
        if ok {
            ready = true;
            break;
        }
        tokio::time::sleep(std::time::Duration::from_millis(100)).await;
    }
    assert!(ready, "postgres did not become ready on port {port}");

    let mut s = session().await;
    ok(
        &mut s,
        &format!(
            "SET guardian.sidecar_dsn = \
             'postgres://postgres@127.0.0.1:{port}/postgres?sslmode=disable'"
        ),
    )
    .await;
    // CREATE EXTENSION forwards to the real PostgreSQL, and the recorded
    // version is what the sidecar reports (PostgreSQL 16 ships 1.10).
    ok(&mut s, "CREATE EXTENSION pg_stat_statements").await;
    assert_eq!(
        scalar(
            &mut s,
            "SELECT extversion FROM pg_extension WHERE extname = 'pg_stat_statements'"
        )
        .await
        .as_deref(),
        Some("1.10")
    );
    // The stats view exists only on the sidecar: the local 42P01 triggers
    // fallback-forwarding and real rows come back over the wire.
    let calls = scalar(&mut s, "SELECT count(*) FROM pg_stat_statements").await;
    assert!(
        calls.as_deref().map(|n| n.parse::<i64>().is_ok()) == Some(true),
        "expected a numeric count from pg_stat_statements, got {calls:?}"
    );
    // Clean up the binding (forwards DROP EXTENSION to the sidecar).
    ok(&mut s, "DROP EXTENSION pg_stat_statements").await;
}

// ---------------------------------------------------------------------------
// Tier-2 native contrib extensions: hstore, intarray, ltree, cube,
// earthdistance. Expected values in this section were generated from live
// PostgreSQL 16.13 with the matching contrib extensions installed.
// ---------------------------------------------------------------------------

#[tokio::test]
async fn registry_lists_all_eighteen_extensions() {
    let mut s = session().await;
    let n = scalar(&mut s, "SELECT count(*) FROM pg_available_extensions").await;
    assert_eq!(n.as_deref(), Some("18"));
    // The five tier-2 extensions run natively.
    let native = scalar(
        &mut s,
        "SELECT count(*) FROM pg_available_extensions WHERE runtime = 'native' \
         AND name IN ('hstore','intarray','ltree','cube','earthdistance')",
    )
    .await;
    assert_eq!(native.as_deref(), Some("5"));
    // Versions match the registry.
    for (name, version) in [
        ("hstore", "1.8"),
        ("intarray", "1.5"),
        ("ltree", "1.3"),
        ("cube", "1.5"),
        ("earthdistance", "1.2"),
    ] {
        let v = scalar(
            &mut s,
            &format!("SELECT default_version FROM pg_available_extensions WHERE name = '{name}'"),
        )
        .await;
        assert_eq!(v.as_deref(), Some(version), "{name}");
    }
    // The excluded contrib names stay typed failures, never fake successes.
    for name in ["isn", "lo", "tablefunc"] {
        assert_eq!(
            &err_code(&mut s, &format!("CREATE EXTENSION {name}")).await,
            "0A000",
            "{name}"
        );
    }
}

#[tokio::test]
async fn hstore_column_end_to_end() {
    let mut s = session().await;
    // The type is gated on the extension.
    assert_eq!(
        &err_code(&mut s, "CREATE TABLE cfg (h HSTORE)").await,
        "42704"
    );
    ok(&mut s, "CREATE EXTENSION hstore").await;
    ok(&mut s, "CREATE TABLE cfg (id INT PRIMARY KEY, h HSTORE)").await;
    ok(
        &mut s,
        "INSERT INTO cfg VALUES (1, 'a=>1, b=>NULL'), (2, 'a=>2, c=>x')",
    )
    .await;
    // Canonical PG output: quoted, NULLs bare, (length, bytes) key order.
    assert_eq!(
        scalar(&mut s, "SELECT h FROM cfg WHERE id = 1")
            .await
            .as_deref(),
        Some(r#""a"=>"1", "b"=>NULL"#)
    );
    // -> key lookup in projections and WHERE.
    assert_eq!(
        scalar(&mut s, "SELECT h -> 'a' FROM cfg WHERE id = 2")
            .await
            .as_deref(),
        Some("2")
    );
    assert_eq!(
        scalar(&mut s, "SELECT id FROM cfg WHERE h -> 'a' = '1'")
            .await
            .as_deref(),
        Some("1")
    );
    // ? exists and @> containment.
    assert_eq!(
        scalar(&mut s, "SELECT id FROM cfg WHERE h ? 'c'")
            .await
            .as_deref(),
        Some("2")
    );
    assert_eq!(
        scalar(&mut s, "SELECT id FROM cfg WHERE h @> 'a=>1'")
            .await
            .as_deref(),
        Some("1")
    );
    // || concatenation (right side wins) and - deletion.
    assert_eq!(
        scalar(&mut s, "SELECT h || 'a=>9' FROM cfg WHERE id = 1")
            .await
            .as_deref(),
        Some(r#""a"=>"9", "b"=>NULL"#)
    );
    assert_eq!(
        scalar(&mut s, "SELECT h - 'b'::text FROM cfg WHERE id = 1")
            .await
            .as_deref(),
        Some(r#""a"=>"1""#)
    );
    // Functions route through the extension dispatch.
    assert_eq!(
        scalar(&mut s, "SELECT akeys(h) FROM cfg WHERE id = 1")
            .await
            .as_deref(),
        Some("{a,b}")
    );
    assert_eq!(
        scalar(&mut s, "SELECT hstore_to_json(h) FROM cfg WHERE id = 1")
            .await
            .as_deref(),
        Some(r#"{"a":"1","b":null}"#)
    );
    // Bad input is a typed syntax error: 42601 from the hstore parser (like
    // PG); the INSERT coercion path wraps it as datatype mismatch (42804).
    assert_eq!(
        &err_code(&mut s, "SELECT 'not hstore'::hstore").await,
        "42601"
    );
    assert_eq!(
        &err_code(&mut s, "INSERT INTO cfg VALUES (3, 'not hstore')").await,
        "42804"
    );
    // The dependent column blocks DROP EXTENSION.
    assert_eq!(&err_code(&mut s, "DROP EXTENSION hstore").await, "0A000");
}

#[tokio::test]
async fn hstore_data_persists_across_sessions() {
    let storage = Arc::new(MemoryStorage::new());
    let database = Arc::new(Database::new(storage.clone(), "app"));
    let mut s1 = Session::new(database, "guardian");
    ok(&mut s1, "CREATE EXTENSION hstore").await;
    ok(&mut s1, "CREATE TABLE kv (h HSTORE)").await;
    ok(&mut s1, "INSERT INTO kv VALUES ('k=>persisted')").await;
    drop(s1);
    let database2 = Arc::new(Database::new(storage, "app"));
    let mut s2 = Session::new(database2, "guardian");
    assert_eq!(
        scalar(&mut s2, "SELECT h -> 'k' FROM kv").await.as_deref(),
        Some("persisted")
    );
}

#[tokio::test]
async fn intarray_functions_and_operators() {
    let mut s = session().await;
    // Gated before install: operators keep their normal error path...
    assert!(s.execute("SELECT '{1,2}'::int[] + 3").await.is_err());
    // ...and functions name the extension (42883).
    assert_eq!(
        &err_code(&mut s, "SELECT icount('{1,2}'::int[])").await,
        "42883"
    );
    ok(&mut s, "CREATE EXTENSION intarray").await;
    for (sql, expect) in [
        ("SELECT icount('{1,2,3,2}'::int[])", "4"),
        ("SELECT sort('{3,1,2}'::int[])", "{1,2,3}"),
        ("SELECT sort('{3,1,2}'::int[], 'desc')", "{3,2,1}"),
        ("SELECT uniq('{1,1,2,2,3,1,1}'::int[])", "{1,2,3,1}"),
        ("SELECT uniq(sort('{1,2,3,2,1}'::int[]))", "{1,2,3}"),
        ("SELECT idx('{1,2,3,2}'::int[], 2)", "2"),
        ("SELECT subarray('{1,2,3,2,1}'::int[], 2, 3)", "{2,3,2}"),
        ("SELECT intset(42)", "{42}"),
        ("SELECT '{1,2,3}'::int[] && '{3,4}'::int[]", "t"),
        ("SELECT '{1,2,3}'::int[] && '{4,5}'::int[]", "f"),
        ("SELECT '{1,2,3}'::int[] @> '{2,2}'::int[]", "t"),
        ("SELECT '{2}'::int[] <@ '{1,2,3}'::int[]", "t"),
        ("SELECT '{1,2,3}'::int[] + 4", "{1,2,3,4}"),
        ("SELECT '{1,2,3}'::int[] + '{3,4}'::int[]", "{1,2,3,3,4}"),
        ("SELECT '{1,2,3,2}'::int[] - 2", "{1,3}"),
        ("SELECT '{1,2,3,2,4}'::int[] - '{2,4,9}'::int[]", "{1,3}"),
        ("SELECT '{1,2,3}'::int[] | '{3,4}'::int[]", "{1,2,3,4}"),
        ("SELECT '{1,2,3,2}'::int[] & '{2,3,4}'::int[]", "{2,3}"),
        ("SELECT '{1,3,5}'::int[] # 5", "3"),
    ] {
        assert_eq!(scalar(&mut s, sql).await.as_deref(), Some(expect), "{sql}");
    }
    // Table-driven WHERE with overlap.
    ok(
        &mut s,
        "CREATE TABLE tagged (id INT PRIMARY KEY, tags INT[])",
    )
    .await;
    ok(
        &mut s,
        "INSERT INTO tagged VALUES (1, '{1,2}'), (2, '{3,4}')",
    )
    .await;
    assert_eq!(
        scalar(&mut s, "SELECT id FROM tagged WHERE tags && '{2,9}'::int[]")
            .await
            .as_deref(),
        Some("1")
    );
    // Non-int arrays are rejected with CannotCoerce (42846).
    assert_eq!(
        &err_code(&mut s, "SELECT icount(ARRAY['a','b'])").await,
        "42846"
    );
}

#[tokio::test]
async fn ltree_column_end_to_end() {
    let mut s = session().await;
    assert_eq!(
        &err_code(&mut s, "CREATE TABLE paths (p LTREE)").await,
        "42704"
    );
    ok(&mut s, "CREATE EXTENSION ltree").await;
    ok(&mut s, "CREATE TABLE paths (p LTREE)").await;
    ok(
        &mut s,
        "INSERT INTO paths VALUES ('Top'), ('Top.Science'), ('Top.Science.Astronomy'), \
         ('Top.Hobbies'), ('Top.Hobbies.Amateurs_Astronomy')",
    )
    .await;
    // Descendant-or-self search, the canonical ltree query shape.
    assert_eq!(
        scalar(
            &mut s,
            "SELECT count(*) FROM paths WHERE p <@ 'Top.Science'"
        )
        .await
        .as_deref(),
        Some("2")
    );
    // Ancestor includes equality (PG-verified).
    assert_eq!(
        scalar(&mut s, "SELECT 'a.b'::ltree @> 'a.b'::ltree")
            .await
            .as_deref(),
        Some("t")
    );
    // lquery matching with quantifiers and word matching.
    assert_eq!(
        scalar(&mut s, "SELECT count(*) FROM paths WHERE p ~ 'Top.*{1}'")
            .await
            .as_deref(),
        Some("2")
    );
    assert_eq!(
        scalar(
            &mut s,
            "SELECT p FROM paths WHERE p ~ '*.Amateurs_Astronomy%'"
        )
        .await
        .as_deref(),
        Some("Top.Hobbies.Amateurs_Astronomy")
    );
    // Functions.
    assert_eq!(
        scalar(
            &mut s,
            "SELECT nlevel(p) FROM paths WHERE p = 'Top.Science.Astronomy'"
        )
        .await
        .as_deref(),
        Some("3")
    );
    assert_eq!(
        scalar(&mut s, "SELECT subpath('Top.Child1.Child2', -2, 1)")
            .await
            .as_deref(),
        Some("Child1")
    );
    assert_eq!(
        scalar(&mut s, "SELECT lca('1.2.3'::ltree, '1.2.3.4'::ltree)")
            .await
            .as_deref(),
        Some("1.2")
    );
    // ORDER BY uses label-sequence ordering.
    let rows = ok(&mut s, "SELECT p FROM paths ORDER BY p").await;
    match rows.into_iter().next().unwrap() {
        ExecResult::Rows { rows, .. } => {
            let sorted: Vec<String> = rows.iter().map(|r| r[0].to_text().unwrap()).collect();
            assert_eq!(
                sorted,
                [
                    "Top",
                    "Top.Hobbies",
                    "Top.Hobbies.Amateurs_Astronomy",
                    "Top.Science",
                    "Top.Science.Astronomy"
                ]
            );
        }
        other => panic!("expected rows, got {other:?}"),
    }
    // Label validation is typed: 42601 from the ltree parser (like PG); the
    // INSERT coercion path wraps it as datatype mismatch (42804).
    assert_eq!(
        &err_code(&mut s, "SELECT 'not a path'::ltree").await,
        "42601"
    );
    assert_eq!(
        &err_code(&mut s, "INSERT INTO paths VALUES ('not a path')").await,
        "42804"
    );
}

#[tokio::test]
async fn cube_column_end_to_end() {
    let mut s = session().await;
    assert_eq!(
        &err_code(&mut s, "CREATE TABLE boxes (c CUBE)").await,
        "42704"
    );
    ok(&mut s, "CREATE EXTENSION cube").await;
    ok(&mut s, "CREATE TABLE boxes (id INT PRIMARY KEY, c CUBE)").await;
    ok(
        &mut s,
        "INSERT INTO boxes VALUES (1, '(0,0),(1,1)'), (2, '(2,2),(3,3)'), (3, '5')",
    )
    .await;
    // Text output matches contrib/cube exactly.
    assert_eq!(
        scalar(&mut s, "SELECT c FROM boxes WHERE id = 1")
            .await
            .as_deref(),
        Some("(0, 0),(1, 1)")
    );
    assert_eq!(
        scalar(&mut s, "SELECT c FROM boxes WHERE id = 3")
            .await
            .as_deref(),
        Some("(5)")
    );
    // Containment and overlap in WHERE.
    assert_eq!(
        scalar(&mut s, "SELECT id FROM boxes WHERE c @> '(0.5,0.5)'::cube")
            .await
            .as_deref(),
        Some("1")
    );
    assert_eq!(
        scalar(
            &mut s,
            "SELECT count(*) FROM boxes WHERE c && '(0.5,0.5),(2.5,2.5)'::cube"
        )
        .await
        .as_deref(),
        Some("2")
    );
    // Distance operator and nearest-neighbour ordering.
    assert_eq!(
        scalar(&mut s, "SELECT '(0,0)'::cube <-> '(3,4)'::cube")
            .await
            .as_deref(),
        Some("5")
    );
    assert_eq!(
        scalar(
            &mut s,
            "SELECT id FROM boxes WHERE id < 3 ORDER BY c <-> '(2.4,2.4)'::cube LIMIT 1"
        )
        .await
        .as_deref(),
        Some("2")
    );
    // Functions (PG-verified vectors).
    for (sql, expect) in [
        ("SELECT cube_dim('(1,2),(3,4)'::cube)", "2"),
        ("SELECT cube_is_point('(1,2),(1,2)'::cube)", "t"),
        (
            "SELECT cube_union('(1)'::cube, '(2,3)'::cube)",
            "(1, 0),(2, 3)",
        ),
        (
            "SELECT cube_inter('(0,0),(1,1)'::cube, '(2,2),(3,3)'::cube)",
            "(2, 2),(1, 1)",
        ),
        (
            "SELECT cube_enlarge('(0,0),(1,1)'::cube, -2, 2)",
            "(0.5, 0.5)",
        ),
        ("SELECT cube(1.5)", "(1.5)"),
    ] {
        assert_eq!(scalar(&mut s, sql).await.as_deref(), Some(expect), "{sql}");
    }
    // Bad input is 22P02 from the cube parser (like PG); the INSERT coercion
    // path wraps it as datatype mismatch (42804).
    assert_eq!(&err_code(&mut s, "SELECT '(1,2),(3)'::cube").await, "22P02");
    assert_eq!(
        &err_code(&mut s, "INSERT INTO boxes VALUES (4, '(1,2),(3)')").await,
        "42804"
    );
}

#[tokio::test]
async fn earthdistance_requires_cube_and_cascades() {
    let mut s = session().await;
    // Without cube: typed 0A000 naming the missing requirement.
    let err = s
        .execute("CREATE EXTENSION earthdistance")
        .await
        .unwrap_err();
    assert_eq!(err.sqlstate(), "0A000");
    assert!(err.to_string().contains("cube"), "{err}");
    assert!(err.to_string().contains("CASCADE"), "{err}");
    // CASCADE installs the dependency chain.
    ok(&mut s, "CREATE EXTENSION earthdistance CASCADE").await;
    let n = scalar(
        &mut s,
        "SELECT count(*) FROM pg_extension WHERE extname IN ('cube','earthdistance')",
    )
    .await;
    assert_eq!(n.as_deref(), Some("2"));
    // PG: earth() = 6378168.
    assert_eq!(
        scalar(&mut s, "SELECT earth()").await.as_deref(),
        Some("6378168")
    );
    // PG: earth_distance(ll_to_earth(51.5074,-0.1278), ll_to_earth(40.7128,-74.0060))
    //     = 5576489.226133242 (London -> New York, meters). Transcendental
    //     results are compared numerically, not textually.
    let d: f64 = scalar(
        &mut s,
        "SELECT earth_distance(ll_to_earth(51.5074,-0.1278), ll_to_earth(40.7128,-74.0060))",
    )
    .await
    .unwrap()
    .parse()
    .unwrap();
    assert!((d - 5576489.226133242).abs() < 1e-3, "got {d}");
    // Radius search: earth_box + containment (PG-verified truth values).
    assert_eq!(
        scalar(
            &mut s,
            "SELECT earth_box(ll_to_earth(0,0), 1000) @> ll_to_earth(0.001, 0.001)"
        )
        .await
        .as_deref(),
        Some("t")
    );
    assert_eq!(
        scalar(
            &mut s,
            "SELECT earth_box(ll_to_earth(0,0), 1000) @> ll_to_earth(1, 1)"
        )
        .await
        .as_deref(),
        Some("f")
    );
    // latitude/longitude round-trip (exact for longitude at this input).
    assert_eq!(
        scalar(&mut s, "SELECT longitude(ll_to_earth(45, 100))")
            .await
            .as_deref(),
        Some("100")
    );
    // cube cannot be dropped while earthdistance needs it... PostgreSQL
    // allows it (dependencies are script-level), and so do we: dropping
    // earthdistance first is the clean path.
    ok(&mut s, "DROP EXTENSION earthdistance").await;
    ok(&mut s, "DROP EXTENSION cube").await;
}

#[tokio::test]
async fn hstore_arrow_does_not_shadow_json() {
    let mut s = session().await;
    ok(&mut s, "CREATE EXTENSION hstore").await;
    // `->` with an hstore left operand routes to hstore...
    assert_eq!(
        scalar(&mut s, "SELECT 'a=>1'::hstore -> 'a'")
            .await
            .as_deref(),
        Some("1")
    );
    // ...while non-hstore left operands keep their pre-existing behaviour
    // (the engine's JSON `->` path, whatever it supports) — the operator
    // must not be silently claimed by hstore.
    let json_arrow = s.execute("SELECT '{\"a\": 1}'::jsonb -> 'a'").await;
    if let Ok(results) = json_arrow {
        // If the JSON path supports `->`, it must produce JSON, not hstore.
        if let Some(ExecResult::Rows { rows, .. }) = results.into_iter().next() {
            assert_eq!(rows[0][0].to_text().as_deref(), Some("1"));
        }
    }
}