heliosdb-nano 4.6.2

PostgreSQL-compatible embedded database with TDE + ZKE encryption, HNSW vector search, Product Quantization, git-like branching, time-travel queries, materialized views, row-level security, and 50+ enterprise features
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
//! PostgreSQL protocol handler
//!
//! This module implements the PostgreSQL wire protocol handler that processes
//! client messages and generates appropriate responses.

use crate::{EmbeddedDatabase, Error, Result, Schema, Tuple, Value};

/// Case-insensitive prefix check without allocating a new String.
#[inline]
pub(super) fn starts_with_icase(s: &str, prefix: &str) -> bool {
    // Safety: length is checked on the left side of &&
    #[allow(clippy::indexing_slicing)]
    {
        s.len() >= prefix.len() && s.as_bytes()[..prefix.len()].eq_ignore_ascii_case(prefix.as_bytes())
    }
}

/// True if the statement is a CTE (`WITH …` / `WITH RECURSIVE …`). These are
/// almost always row-returning (`WITH … SELECT`) but do not start with
/// `SELECT`, so the SELECT-prefix routing in both query paths used to misroute
/// them to the command path and silently return zero rows over the wire
/// (Token Dashboard #3). The trailing-char guard rejects `WITHIN` / `WITHOUT`.
#[inline]
pub(super) fn starts_with_cte(s: &str) -> bool {
    let t = s.trim_start();
    starts_with_icase(t, "WITH")
        && t.as_bytes()
            .get(4)
            .map_or(true, |c| !c.is_ascii_alphanumeric() && *c != b'_')
}
use super::auth::{AuthManager, AuthMethod, ScramAuthState};
use super::catalog::PgCatalog;
use super::messages::{AuthenticationMessage, BackendMessage, FieldDescription, FrontendMessage, TransactionStatus};
use super::prepared::PreparedStatementManager;
use super::ssl::SecureConnection;
use bytes::{BufMut, BytesMut};
use std::sync::Arc;
use tokio::io::{AsyncReadExt, AsyncWriteExt, BufWriter};
use tokio::net::TcpStream;
#[cfg(unix)]
use tokio::net::UnixStream;

/// PostgreSQL connection handler
///
/// Uses `BufWriter` to batch all write_all() calls into a single TCP packet,
/// flushed once at the end of each response cycle (ReadyForQuery). Combined
/// with TCP_NODELAY on the socket, this minimizes both syscalls and latency.
pub struct PgConnectionHandler<S = BufWriter<TcpStream>> {
    stream: S,
    pub(super) database: Arc<EmbeddedDatabase>,
    auth_manager: Arc<AuthManager>,
    pub(super) catalog: PgCatalog,
    pub(super) prepared_statements: PreparedStatementManager,
    authenticated: bool,
    transaction_status: TransactionStatus,
    buffer: BytesMut,
    username: Option<String>,
    scram_state: Option<ScramAuthState>,
    write_buf: BytesMut,
    /// When `true`, `send_ready_for_query()` is a no-op. Used by
    /// multi-statement simple query dispatch to emit a single trailing
    /// ReadyForQuery after the whole `;`-separated batch.
    pub(super) suppress_ready_for_query: bool,
    /// Extended-query protocol requires ErrorResponse, then discarding input
    /// until Sync, then ReadyForQuery. Sending ReadyForQuery early can make
    /// drivers close or wedge the connection after an Execute-time error.
    awaiting_sync_after_error: bool,
    /// Per-connection database session (R0.1). Transactions opened by this
    /// connection live in the session, not in the process-global slot, so
    /// concurrent connections get isolated transactions.
    pub(super) session_id: crate::session::SessionId,
}

impl<S> Drop for PgConnectionHandler<S> {
    fn drop(&mut self) {
        // Roll back any open transaction and release the session when the
        // connection ends, however it ends.
        let _ = self.database.destroy_session(self.session_id);
    }
}

impl PgConnectionHandler<BufWriter<TcpStream>> {
    /// Create a new connection handler with TcpStream (wrapped in BufWriter)
    pub fn new(
        stream: TcpStream,
        database: Arc<EmbeddedDatabase>,
        auth_manager: Arc<AuthManager>,
        initial_data: Option<&[u8]>,
    ) -> Self {
        let mut buffer = BytesMut::with_capacity(8192);
        if let Some(data) = initial_data {
            buffer.extend_from_slice(data);
        }

        let session_id = database
            .create_wire_session("pg_wire")
            .expect("wire session creation is infallible");
        Self {
            stream: BufWriter::new(stream),
            database: database.clone(),
            auth_manager,
            catalog: PgCatalog::with_database(database),
            prepared_statements: PreparedStatementManager::new(),
            authenticated: false,
            transaction_status: TransactionStatus::Idle,
            buffer,
            username: None,
            scram_state: None,
            write_buf: BytesMut::with_capacity(4096),
            suppress_ready_for_query: false,
            awaiting_sync_after_error: false,
            session_id,
        }
    }
}

#[cfg(unix)]
impl PgConnectionHandler<BufWriter<UnixStream>> {
    /// Create a new connection handler bound to a Unix domain socket stream.
    pub fn new_unix(stream: UnixStream, database: Arc<EmbeddedDatabase>, auth_manager: Arc<AuthManager>) -> Self {
        let session_id = database
            .create_wire_session("pg_wire")
            .expect("wire session creation is infallible");
        Self {
            stream: BufWriter::new(stream),
            database: database.clone(),
            auth_manager,
            catalog: PgCatalog::with_database(database),
            prepared_statements: PreparedStatementManager::new(),
            authenticated: false,
            transaction_status: TransactionStatus::Idle,
            buffer: BytesMut::with_capacity(8192),
            username: None,
            scram_state: None,
            write_buf: BytesMut::with_capacity(4096),
            suppress_ready_for_query: false,
            awaiting_sync_after_error: false,
            session_id,
        }
    }
}

/// Accept a PostgreSQL client connection over a Unix domain socket.
///
/// Used for local / embedded deployments where clients expect libpq's
/// default `/tmp/.s.PGSQL.<port>` socket path.
#[cfg(unix)]
pub async fn handle_connection_unix(
    database: Arc<EmbeddedDatabase>,
    stream: UnixStream,
    _connection_id: u32,
) -> Result<()> {
    // Trust auth over a local socket — the kernel already enforces access
    // via filesystem permissions on the socket file.
    let auth_manager = Arc::new(AuthManager::new(AuthMethod::Trust));
    let mut handler = PgConnectionHandler::new_unix(stream, database, auth_manager);
    handler.handle().await
}

impl PgConnectionHandler<BufWriter<SecureConnection<TcpStream>>> {
    /// Create a new connection handler with SecureConnection (wrapped in BufWriter)
    pub fn new_with_stream(
        stream: SecureConnection<TcpStream>,
        database: Arc<EmbeddedDatabase>,
        auth_manager: Arc<AuthManager>,
        initial_data: Option<&[u8]>,
    ) -> Self {
        let mut buffer = BytesMut::with_capacity(8192);
        if let Some(data) = initial_data {
            buffer.extend_from_slice(data);
        }

        let session_id = database
            .create_wire_session("pg_wire")
            .expect("wire session creation is infallible");
        Self {
            stream: BufWriter::new(stream),
            database: database.clone(),
            auth_manager,
            catalog: PgCatalog::with_database(database),
            prepared_statements: PreparedStatementManager::new(),
            authenticated: false,
            transaction_status: TransactionStatus::Idle,
            buffer,
            username: None,
            scram_state: None,
            write_buf: BytesMut::with_capacity(4096),
            suppress_ready_for_query: false,
            awaiting_sync_after_error: false,
            session_id,
        }
    }
}

impl<S> PgConnectionHandler<S>
where
    S: AsyncReadExt + AsyncWriteExt + Unpin,
{
    /// Test-only constructor over an arbitrary stream, pre-authenticated.
    /// Used by the in-crate wire tests (`wire_tests.rs`) — fields are
    /// private, so tests outside this module need a builder.
    #[cfg(test)]
    pub(super) fn new_for_tests(database: Arc<EmbeddedDatabase>, stream: S) -> Self {
        Self {
            stream,
            session_id: database
                .create_wire_session("pg_wire_test")
                .expect("wire session creation is infallible"),
            database: Arc::clone(&database),
            auth_manager: Arc::new(AuthManager::new(AuthMethod::Trust)),
            catalog: PgCatalog::with_database(database),
            prepared_statements: PreparedStatementManager::new(),
            authenticated: true,
            transaction_status: TransactionStatus::Idle,
            buffer: BytesMut::with_capacity(8192),
            username: None,
            scram_state: None,
            write_buf: BytesMut::with_capacity(4096),
            suppress_ready_for_query: false,
            awaiting_sync_after_error: false,
        }
    }

    /// Handle connection lifecycle
    pub async fn handle(&mut self) -> Result<()> {
        tracing::info!("New PostgreSQL connection");

        // Handle startup and authentication
        if let Err(e) = self.handle_startup().await {
            tracing::error!("Startup failed: {}", e);
            let _ = self.send_error("FATAL", "08P01", &e.to_string(), None, None).await;
            return Err(e);
        }

        // Main message loop
        tracing::debug!("Entering main message loop");
        loop {
            tracing::trace!("Waiting for next message from client");
            match self.read_message().await {
                Ok(Some(msg)) => {
                    tracing::debug!("Received message: {:?}", msg);
                    if self.awaiting_sync_after_error {
                        self.handle_message_while_awaiting_sync(msg).await?;
                        continue;
                    }

                    let wait_for_sync = Self::message_requires_sync_after_error(&msg);
                    if let Err(e) = self.handle_message(msg).await {
                        tracing::error!("Error handling message: {}", e);
                        self.send_error_for_query(&e, wait_for_sync).await?;
                        if wait_for_sync {
                            self.awaiting_sync_after_error = true;
                        }
                    }
                }
                Ok(None) => {
                    // Connection closed gracefully
                    tracing::info!("Client disconnected");
                    break;
                }
                Err(e) => {
                    tracing::error!("Error reading message: {}", e);
                    break;
                }
            }
        }

        Ok(())
    }

    async fn handle_message_while_awaiting_sync(&mut self, msg: FrontendMessage) -> Result<()> {
        match msg {
            FrontendMessage::Sync => {
                self.awaiting_sync_after_error = false;
                self.send_ready_for_query().await
            }
            FrontendMessage::Terminate => Ok(()),
            _ => {
                tracing::debug!("Discarding frontend message until Sync after extended-query error");
                Ok(())
            }
        }
    }

    fn message_requires_sync_after_error(msg: &FrontendMessage) -> bool {
        matches!(
            msg,
            FrontendMessage::Parse { .. }
                | FrontendMessage::Bind { .. }
                | FrontendMessage::Execute { .. }
                | FrontendMessage::Describe { .. }
                | FrontendMessage::Close { .. }
        )
    }

    /// Handle startup sequence
    // SAFETY: Buffer indices [0..3] are guarded by self.buffer.len() >= 4 check.
    #[allow(clippy::indexing_slicing)]
    async fn handle_startup(&mut self) -> Result<()> {
        // Check if we have initial data in the buffer (passed from server after reading 8 bytes)
        // This happens when client sends StartupMessage directly without SSLRequest
        let len_buf: [u8; 4];
        if self.buffer.len() >= 4 {
            // Length was already read by server and passed to us
            len_buf = [self.buffer[0], self.buffer[1], self.buffer[2], self.buffer[3]];
        } else {
            // Read startup message length from stream
            let mut buf = [0u8; 4];
            self.stream
                .read_exact(&mut buf)
                .await
                .map_err(|e| Error::network(format!("Failed to read startup length: {}", e)))?;
            len_buf = buf;
            self.buffer.extend_from_slice(&len_buf);
        }

        let len = i32::from_be_bytes(len_buf) as usize;

        // Validate before allocating: this runs pre-authentication, so an
        // unchecked length here is a remote 2 GiB allocation (or, negative
        // reinterpreted, effectively unbounded). Mirrors parse_startup().
        if !(8..=super::messages::MAX_STARTUP_MESSAGE_LEN).contains(&len) {
            return Err(Error::protocol(format!(
                "Invalid startup message length {} (max {})",
                len as i64,
                super::messages::MAX_STARTUP_MESSAGE_LEN
            )));
        }

        // Calculate how many bytes we still need to read
        let bytes_in_buffer = self.buffer.len();
        let bytes_needed = len.saturating_sub(bytes_in_buffer);

        if bytes_needed > 0 {
            let mut remaining_buf = vec![0u8; bytes_needed];
            self.stream
                .read_exact(&mut remaining_buf)
                .await
                .map_err(|e| Error::network(format!("Failed to read startup message: {}", e)))?;
            self.buffer.extend_from_slice(&remaining_buf);
        }

        // Parse startup message
        let msg = FrontendMessage::parse_startup(&mut self.buffer)?
            .ok_or_else(|| Error::protocol("Invalid startup message"))?;

        if let FrontendMessage::Startup {
            protocol_version,
            params,
        } = msg
        {
            tracing::info!("Protocol version: {}, params: {:?}", protocol_version, params);

            self.username = params.get("user").cloned();

            // Thread the login role onto the session so a `"$user"` search_path
            // entry expands to this user's schema (I-USER).
            let _ = self
                .database
                .set_session_login_user(self.session_id, self.username.clone());

            // Bug 5 — validate the requested database name. Reject
            // unknown names rather than silently routing every
            // connection to the default `heliosdb` keyspace. Reserved
            // names (`heliosdb`, `postgres`) and any registered tenant
            // are accepted. An empty / missing `database` parameter
            // falls back to the username, matching libpq behaviour;
            // we still validate that fallback.
            if let Some(requested) = params.get("database").cloned().or_else(|| params.get("user").cloned()) {
                if !self.database.database_name_is_valid(&requested) {
                    return Err(Error::authentication(format!(
                        "database \"{requested}\" does not exist"
                    )));
                }
            }

            // Send authentication request
            match self.auth_manager.method() {
                AuthMethod::Trust => {
                    self.authenticated = true;
                    self.send_auth_ok().await?;
                }
                AuthMethod::CleartextPassword => {
                    self.send_message(BackendMessage::Authentication(AuthenticationMessage::CleartextPassword))
                        .await?;
                    self.flush().await?; // Client must read challenge before responding

                    // Wait for password message
                    if let Some(FrontendMessage::PasswordMessage { password }) = self.read_message().await? {
                        let username = self
                            .username
                            .as_ref()
                            .ok_or_else(|| Error::authentication("No username provided"))?;

                        if self.auth_manager.verify_cleartext(username, &password)? {
                            self.authenticated = true;
                            self.send_auth_ok().await?;
                        } else {
                            return Err(Error::authentication("Invalid password"));
                        }
                    } else {
                        return Err(Error::protocol("Expected password message"));
                    }
                }
                AuthMethod::ScramSha256 => {
                    // Initiate SCRAM-SHA-256 authentication
                    self.handle_scram_authentication().await?;
                }
                _ => {
                    // Other auth methods not yet implemented
                    self.authenticated = true;
                    self.send_auth_ok().await?;
                }
            }

            // Send parameter status messages
            self.send_parameter_status(
                "server_version",
                &format!("16.0 (HeliosDB Nano {})", env!("CARGO_PKG_VERSION")),
            )
            .await?;
            self.send_parameter_status("server_encoding", "UTF8").await?;
            self.send_parameter_status("client_encoding", "UTF8").await?;
            self.send_parameter_status("DateStyle", "ISO, MDY").await?;
            self.send_parameter_status("TimeZone", "UTC").await?;
            self.send_parameter_status("integer_datetimes", "on").await?;
            // Advertise standard_conforming_strings=on (the PostgreSQL default
            // since 9.1, and what Nano's lexer actually implements: backslashes
            // in regular '...' literals are ordinary characters). Drivers such
            // as psycopg2 read this at connect time; when it is ABSENT they
            // assume the legacy off behaviour and DOUBLE every backslash in
            // bytea/text literals (`'\x00..'::bytea` -> `'\\x00..'::bytea`),
            // which the (correctly conforming) lexer then decodes via bytea
            // escape format into the wrong bytes — silently corrupting BLOB/RAW
            // round-trips. Sending it makes those drivers emit single-backslash
            // literals that Nano decodes correctly.
            self.send_parameter_status("standard_conforming_strings", "on").await?;

            // Item 10: advertise the helios.* opt-in capabilities so a
            // capability-probing client (HeliosProxy) auto-enables only what
            // this server actually supports. libpq tolerates unknown
            // ParameterStatus names, and non-helios clients ignore them, so
            // this is safe to always send (paid once per connection, off the
            // per-query path pg35 measures).
            self.send_parameter_status("helios.copy", "on").await?;
            self.send_parameter_status("helios.pipeline", "on").await?;
            self.send_parameter_status("helios.plan_cache", "on").await?;
            self.send_parameter_status("helios.binary_results", "on").await?;
            self.send_parameter_status("helios.reset_session", "on").await?;
            self.send_parameter_status("helios.fast_autocommit", "off").await?;

            // Send backend key data
            self.send_message(BackendMessage::BackendKeyData {
                process_id: std::process::id() as i32,
                secret_key: rand::random(),
            })
            .await?;

            // Send ready for query
            self.send_ready_for_query().await?;

            Ok(())
        } else {
            Err(Error::protocol("Expected startup message"))
        }
    }

    /// Read a message from the client
    // SAFETY: temp_buf[..n] slice is bounded by n from stream.read() which is <= temp_buf.len().
    #[allow(clippy::indexing_slicing)]
    async fn read_message(&mut self) -> Result<Option<FrontendMessage>> {
        // Try to parse existing buffer first
        tracing::trace!("read_message: Checking buffer, len={}", self.buffer.len());
        if let Some(msg) = FrontendMessage::parse(&mut self.buffer)? {
            tracing::trace!("read_message: Parsed message from existing buffer");
            return Ok(Some(msg));
        }

        // Read more data
        let mut temp_buf = vec![0u8; 4096];
        loop {
            tracing::trace!("read_message: Attempting to read from stream");
            match self.stream.read(&mut temp_buf).await {
                Ok(0) => {
                    tracing::debug!("read_message: EOF received (0 bytes)");
                    return Ok(None); // EOF
                }
                Ok(n) => {
                    tracing::trace!("read_message: Read {} bytes", n);
                    self.buffer.extend_from_slice(&temp_buf[..n]);
                    if let Some(msg) = FrontendMessage::parse(&mut self.buffer)? {
                        tracing::trace!("read_message: Successfully parsed message after read");
                        return Ok(Some(msg));
                    }
                    tracing::trace!("read_message: Insufficient data for complete message, continuing");
                }
                Err(e) if e.kind() == std::io::ErrorKind::WouldBlock => {
                    tracing::trace!("read_message: WouldBlock, sleeping 10ms");
                    tokio::time::sleep(tokio::time::Duration::from_millis(10)).await;
                }
                Err(e) => {
                    tracing::error!("read_message: Read error: {}", e);
                    return Err(Error::network(format!("Read error: {}", e)));
                }
            }
        }
    }

    /// Handle a frontend message.
    ///
    /// `pub(super)` so the wire conformance tests can drive an exact
    /// Parse/Bind/Execute/Sync pipeline through the same dispatch the main
    /// loop uses (the loop is just `read_message` → `handle_message`).
    pub(super) async fn handle_message(&mut self, msg: FrontendMessage) -> Result<()> {
        if !self.authenticated && !matches!(msg, FrontendMessage::PasswordMessage { .. }) {
            return Err(Error::authentication("Not authenticated"));
        }

        match msg {
            FrontendMessage::Query { query } => {
                self.handle_query(&query).await?;
            }
            FrontendMessage::Parse {
                statement_name,
                query,
                param_types,
            } => {
                self.handle_parse_extended(statement_name, query, param_types).await?;
            }
            FrontendMessage::Bind {
                portal_name,
                statement_name,
                param_formats,
                params,
                result_formats,
            } => {
                self.handle_bind_extended(portal_name, statement_name, param_formats, params, result_formats)
                    .await?;
            }
            FrontendMessage::Execute { portal_name, max_rows } => {
                self.handle_execute_extended(portal_name, max_rows).await?;
            }
            FrontendMessage::Describe { target, name } => {
                self.handle_describe_extended(target, name).await?;
            }
            FrontendMessage::Close { target, name } => {
                self.handle_close(target, name).await?;
            }
            FrontendMessage::Sync => {
                self.send_ready_for_query().await?;
            }
            FrontendMessage::Flush => {
                // Flush tells the server to push any buffered response
                // bytes to the network now — without ending the
                // implicit extended-protocol transaction (that's what
                // Sync does) and without sending ReadyForQuery. Every
                // pipelined driver (postgres-js, pg, npgsql, etc.)
                // emits Parse+Bind+[Describe+]Execute+Flush and waits
                // for the ParseComplete / BindComplete / DataRows /
                // CommandComplete to arrive before sending Sync.
                self.flush().await?;
            }
            FrontendMessage::Terminate => {
                return Ok(());
            }
            _ => {
                tracing::warn!("Unhandled message type: {:?}", msg);
            }
        }

        Ok(())
    }

    /// Handle simple query protocol — dispatches one or more `;`-separated
    /// statements within a single `Q` message, per the PostgreSQL wire
    /// spec. Each statement produces its own response messages
    /// (CommandComplete / RowDescription+DataRow / etc.); a **single**
    /// ReadyForQuery terminates the whole batch.
    async fn handle_query(&mut self, query: &str) -> Result<()> {
        let statements = pg_split_sql_respecting_quotes(query);
        if statements.len() <= 1 {
            return self.handle_single_query(query).await;
        }

        // Multi-statement simple query. Each inner statement calls the
        // per-statement handler, which sends its own ReadyForQuery. We
        // swallow all but the last RFQ via the per-connection flag so the
        // client sees the PostgreSQL-correct single trailing RFQ.
        self.suppress_ready_for_query = true;
        let last_idx = statements.len() - 1;
        for (i, stmt) in statements.iter().enumerate() {
            if i == last_idx {
                self.suppress_ready_for_query = false;
            }
            self.handle_single_query(stmt).await?;
        }
        self.suppress_ready_for_query = false;
        Ok(())
    }

    /// Handle exactly one statement. All pre-existing `handle_query`
    /// logic lives here so the per-statement response sequence stays
    /// unchanged from v3.12's behaviour.
    // SAFETY: results[0] is guarded by !results.is_empty() check.
    #[allow(clippy::indexing_slicing)]
    pub(super) async fn handle_single_query(&mut self, query: &str) -> Result<()> {
        tracing::debug!("Executing query: {}", query);

        // `DO $$ … $$` / `DO LANGUAGE … $$ … $$` blocks. sqlparser
        // doesn't support DO, so we unwrap the body and recurse over
        // the plain-SQL statements inside. No PL/pgSQL control flow
        // is expanded — this covers the common Drizzle / Prisma
        // migration backfill pattern only.
        if pg_looks_like_do_block(query.trim()) {
            return self.handle_do_block(query).await;
        }

        // KanttBan #23 (v3.31.1 phase 2.2): rewrite PG's
        // `SELECT FROM …` shorthand (empty projection, valid in
        // PG inside EXISTS subqueries) to `SELECT 1 FROM …`.
        // sqlparser-rs doesn't accept the empty-projection form,
        // and drizzle-kit's getColumnsInfoQuery uses it heavily in
        // an EXISTS subquery for SERIAL detection. Hoisting the
        // rewrite into a single helper so every wire-protocol path
        // (simple-query here, extended-query in handler_extended.rs)
        // benefits.
        let rewritten = pg_rewrite_empty_projection(query);
        let query = rewritten.as_str();

        // Check for empty query
        if query.trim().is_empty() {
            self.send_message(BackendMessage::EmptyQueryResponse).await?;
            self.send_ready_for_query().await?;
            return Ok(());
        }

        // COPY ... FROM STDIN / TO STDOUT is a wire sub-protocol — handle it
        // here, before the normal parse/plan path (item 2c). parse_copy returns
        // None for any non-STDIN/STDOUT SQL, so everything else falls through.
        if let Some(copy_stmt) = super::copy::parse_copy(query) {
            return self.handle_copy(copy_stmt).await;
        }

        // Handle transaction commands (case-insensitive without allocation)
        let trimmed = query.trim();
        if trimmed.eq_ignore_ascii_case("BEGIN")
            || starts_with_icase(trimmed, "BEGIN ")
            || trimmed.eq_ignore_ascii_case("START TRANSACTION")
            || starts_with_icase(trimmed, "START TRANSACTION ")
        {
            // Parse isolation level if specified
            // Supported: BEGIN [TRANSACTION] [ISOLATION LEVEL {READ UNCOMMITTED | READ COMMITTED | REPEATABLE READ | SERIALIZABLE}]
            let isolation_level = Self::parse_isolation_level(trimmed);

            // Check if already in a transaction - PostgreSQL behavior is to warn but continue
            if self.transaction_status == TransactionStatus::InTransaction {
                // Send warning like PostgreSQL does
                self.send_message(BackendMessage::NoticeResponse {
                    severity: "WARNING".to_string(),
                    code: "25001".to_string(),
                    message: "there is already a transaction in progress".to_string(),
                })
                .await?;
            } else {
                self.rollback_failed_transaction_for_recovery()?;
                // Map the requested isolation level onto the session before
                // BEGIN (READ UNCOMMITTED runs as READ COMMITTED, like
                // PostgreSQL itself).
                if let Some(level) = isolation_level.as_deref() {
                    let mapped = match level {
                        "SERIALIZABLE" => crate::session::IsolationLevel::Serializable,
                        "REPEATABLE READ" => crate::session::IsolationLevel::RepeatableRead,
                        _ => crate::session::IsolationLevel::ReadCommitted,
                    };
                    let _ = self.database.set_session_isolation(self.session_id, mapped);
                    tracing::debug!("Transaction starting with isolation level: {}", level);
                }
                self.database.begin_transaction_for_session(self.session_id)?;
                self.transaction_status = TransactionStatus::InTransaction;
            }
            self.send_command_complete("BEGIN").await?;
            self.send_ready_for_query().await?;
            return Ok(());
        } else if starts_with_icase(trimmed, "SET TRANSACTION ISOLATION LEVEL ")
            || starts_with_icase(trimmed, "SET SESSION CHARACTERISTICS")
        {
            // SET TRANSACTION ISOLATION LEVEL is valid before any queries in a transaction
            let level = Self::parse_isolation_level(trimmed);
            if level.is_some() {
                self.send_command_complete("SET").await?;
            } else {
                self.send_error("ERROR", "22023", "Invalid isolation level", None, None)
                    .await?;
                return Ok(());
            }
            self.send_ready_for_query().await?;
            return Ok(());
        } else if starts_with_icase(trimmed, "SET ")
            && !starts_with_icase(trimmed, "SET TRANSACTION")
            && !starts_with_icase(trimmed, "SET SESSION CHARACTERISTICS")
        {
            // R1.3-p2: session-scoped synchronous_commit (PG-compatible).
            match EmbeddedDatabase::parse_synchronous_commit_statement(trimmed) {
                Ok(Some(value)) => {
                    if let Err(e) = self.database.set_session_synchronous_commit(self.session_id, value) {
                        self.send_error("ERROR", "22023", &e.to_string(), None, None).await?;
                        return Ok(());
                    }
                    self.send_command_complete("SET").await?;
                    self.send_ready_for_query().await?;
                    return Ok(());
                }
                Err(e) => {
                    self.send_error("ERROR", "22023", &e.to_string(), None, None).await?;
                    return Ok(());
                }
                Ok(None) => {}
            }
            // Item 9: SET helios.fast_autocommit = on|off — intercept before the
            // generic ack below (which would silently drop an unknown SET).
            match EmbeddedDatabase::parse_helios_fast_autocommit_statement(trimmed) {
                Ok(Some(value)) => {
                    if let Err(e) = self.database.set_session_fast_autocommit(self.session_id, value) {
                        self.send_error("ERROR", "22023", &e.to_string(), None, None).await?;
                        return Ok(());
                    }
                    // Item 10: GUC_REPORT — echo the new value so a capability-
                    // probing pool observes the change.
                    self.send_parameter_status("helios.fast_autocommit", if value { "on" } else { "off" })
                        .await?;
                    self.send_command_complete("SET").await?;
                    self.send_ready_for_query().await?;
                    return Ok(());
                }
                Err(e) => {
                    self.send_error("ERROR", "22023", &e.to_string(), None, None).await?;
                    return Ok(());
                }
                Ok(None) => {}
            }
            if EmbeddedDatabase::is_search_path_statement(trimmed) {
                // `SET search_path` is a per-session schema selector: store it on
                // THIS connection's session, never the shared embedded field, so
                // a concurrent connection's search_path can't steer this one's
                // bare names.
                if let Err(e) = self.database.try_handle_session_search_path(self.session_id, trimmed) {
                    self.send_error("ERROR", "22023", &e.to_string(), None, None).await?;
                    return Ok(());
                }
            } else if EmbeddedDatabase::is_set_constraints_statement(trimmed) {
                // `SET CONSTRAINTS { ALL | names } { DEFERRED | IMMEDIATE }` arms
                // transaction-scoped FK deferral. The generic ack below would drop
                // it (a silent no-op), so a wire client's deferred FK never armed
                // and a valid "insert child, then parent, then COMMIT" sequence
                // spuriously failed. Route through `execute()` so
                // `try_handle_set_constraints` runs; the process-wide
                // `constraints_all_deferred` switch it flips is honored on the
                // session/wire FK path too. The command tag stays "SET" (below).
                if let Err(e) = self.database.execute(trimmed) {
                    self.send_error("ERROR", "22023", &e.to_string(), None, None).await?;
                    return Ok(());
                }
            } else if EmbeddedDatabase::is_fk_setting_statement(trimmed) {
                // FK/bulk-load knobs stay on the process-wide storage engine; the
                // generic ack below would drop them.
                if let Err(e) = self.database.execute(trimmed) {
                    self.send_error("ERROR", "22023", &e.to_string(), None, None).await?;
                    return Ok(());
                }
            }
            // Handle generic SET commands for client compatibility (e.g., SET client_encoding = 'UTF8').
            self.send_command_complete("SET").await?;
            self.send_ready_for_query().await?;
            return Ok(());
        } else if starts_with_icase(trimmed, "RESET ")
            && trimmed[6..]
                .trim()
                .trim_end_matches(';')
                .trim()
                .eq_ignore_ascii_case("synchronous_commit")
        {
            // R1.3-p2: back to the storage.durable_commit default.
            if let Err(e) = self.database.set_session_synchronous_commit(self.session_id, None) {
                self.send_error("ERROR", "22023", &e.to_string(), None, None).await?;
                return Ok(());
            }
            self.send_command_complete("RESET").await?;
            self.send_ready_for_query().await?;
            return Ok(());
        } else if starts_with_icase(trimmed, "RESET ")
            && trimmed[6..]
                .trim()
                .trim_end_matches(';')
                .trim()
                .eq_ignore_ascii_case("helios.fast_autocommit")
        {
            // Item 9: RESET helios.fast_autocommit -> default (off).
            let _ = self.database.set_session_fast_autocommit(self.session_id, false);
            self.send_parameter_status("helios.fast_autocommit", "off").await?; // item 10 GUC_REPORT
            self.send_command_complete("RESET").await?;
            self.send_ready_for_query().await?;
            return Ok(());
        } else if starts_with_icase(trimmed, "RESET ") && EmbeddedDatabase::is_search_path_statement(trimmed) {
            // RESET search_path -> back to `public` for THIS session only.
            if let Err(e) = self.database.set_session_current_schema(self.session_id, None) {
                self.send_error("ERROR", "22023", &e.to_string(), None, None).await?;
                return Ok(());
            }
            self.send_command_complete("RESET").await?;
            self.send_ready_for_query().await?;
            return Ok(());
        } else if starts_with_icase(trimmed, "SHOW ") && !crate::sql::Parser::is_show_branches(trimmed) {
            // Handle SHOW commands for client compatibility
            let param = trimmed[5..].trim().trim_end_matches(';').trim();
            let (col_name, value) = if param.eq_ignore_ascii_case("synchronous_commit") {
                // R1.3-p2: effective per-session value.
                let effective = self
                    .database
                    .session_synchronous_commit_effective(self.session_id)
                    .unwrap_or(false);
                (
                    "synchronous_commit".to_string(),
                    if effective { "on".to_string() } else { "off".to_string() },
                )
            } else if param.eq_ignore_ascii_case("helios.fast_autocommit") {
                // Item 9: SHOW helios.fast_autocommit.
                let on = self.database.session_fast_autocommit(self.session_id).unwrap_or(false);
                (
                    "helios.fast_autocommit".to_string(),
                    if on { "on".to_string() } else { "off".to_string() },
                )
            } else if param.eq_ignore_ascii_case("search_path") {
                // Reflect THIS session's real current schema (per-connection,
                // not the shared embedded field or another connection's value).
                let mut path = self.database.session_search_path(self.session_id).unwrap_or_default();
                let val = if path.is_empty() {
                    "\"$user\", public".to_string()
                } else {
                    // Preserve v4.5.0's SHOW convention: the displayed path
                    // always ends with `public`. I-SP resolution uses the raw
                    // ordered path verbatim; only the SHOW *display* appends the
                    // implicit `public` (when it isn't already listed).
                    if !path.iter().any(|s| s == "public") {
                        path.push("public".to_string());
                    }
                    path.join(", ")
                };
                ("search_path".to_string(), val)
            } else {
                Self::resolve_show_parameter(param)
            };
            let schema = Schema::new(vec![crate::Column::new(&col_name, crate::DataType::Text)]);
            let row = Tuple::new(vec![Value::String(value)]);
            let rows = vec![row];
            self.send_query_result(schema, &rows).await?;
            self.send_ready_for_query().await?;
            return Ok(());
        } else if starts_with_icase(trimmed, "PRAGMA ") || trimmed.eq_ignore_ascii_case("PRAGMA") {
            // SQLite drop-in: accept and stub PRAGMA. `table_info(t)` returns
            // SQLite-shaped column rows; everything else returns an empty
            // ack so sqlite3-driven apps don't blow up on schema-introspection
            // / connection-tuning calls that have no PG analogue.
            if let Some((name, arg)) = crate::sql::sqlite_compat::parse_pragma(trimmed) {
                match name.to_lowercase().as_str() {
                    "table_info" => {
                        let table = arg.unwrap_or_default();
                        // strip surrounding quotes / brackets
                        let table = table
                            .trim()
                            .trim_matches(|c| c == '\'' || c == '"' || c == '`')
                            .to_string();
                        let rows = self.pragma_table_info(&table)?;
                        let schema = Schema::new(vec![
                            crate::Column::new("cid", crate::DataType::Int4),
                            crate::Column::new("name", crate::DataType::Text),
                            crate::Column::new("type", crate::DataType::Text),
                            crate::Column::new("notnull", crate::DataType::Int4),
                            crate::Column::new("dflt_value", crate::DataType::Text),
                            crate::Column::new("pk", crate::DataType::Int4),
                        ]);
                        self.send_query_result(schema, &rows).await?;
                        self.send_ready_for_query().await?;
                        return Ok(());
                    }
                    _ => {
                        // Acknowledge unknown / connection-tuning PRAGMAs as no-ops.
                        // Includes: foreign_keys, journal_mode, synchronous, busy_timeout,
                        // cache_size, temp_store, locking_mode, etc.
                        tracing::debug!("PRAGMA stubbed (no-op): {} = {:?}", name, arg);
                        self.send_command_complete("PRAGMA").await?;
                        self.send_ready_for_query().await?;
                        return Ok(());
                    }
                }
            } else {
                self.send_command_complete("PRAGMA").await?;
                self.send_ready_for_query().await?;
                return Ok(());
            }
        } else if trimmed.eq_ignore_ascii_case("COMMIT") {
            // Handle commit even if no transaction active (PostgreSQL warns but succeeds)
            if self.transaction_status == TransactionStatus::InTransaction {
                self.database.commit_transaction_for_session(self.session_id)?;
            } else if self.transaction_status == TransactionStatus::Failed {
                self.rollback_failed_transaction_for_recovery()?;
                self.send_command_complete("ROLLBACK").await?;
                self.send_ready_for_query().await?;
                return Ok(());
            } else {
                self.send_message(BackendMessage::NoticeResponse {
                    severity: "WARNING".to_string(),
                    code: "25P01".to_string(),
                    message: "there is no transaction in progress".to_string(),
                })
                .await?;
            }
            self.transaction_status = TransactionStatus::Idle;
            self.send_command_complete("COMMIT").await?;
            self.send_ready_for_query().await?;
            return Ok(());
        } else if trimmed.eq_ignore_ascii_case("ROLLBACK") {
            // Handle rollback even if no transaction active (PostgreSQL warns but succeeds)
            if matches!(
                self.transaction_status,
                TransactionStatus::InTransaction | TransactionStatus::Failed
            ) {
                if self.database.session_in_transaction(self.session_id) {
                    self.database.rollback_transaction_for_session(self.session_id)?;
                }
            } else {
                self.send_message(BackendMessage::NoticeResponse {
                    severity: "WARNING".to_string(),
                    code: "25P01".to_string(),
                    message: "there is no transaction in progress".to_string(),
                })
                .await?;
            }
            self.transaction_status = TransactionStatus::Idle;
            self.send_command_complete("ROLLBACK").await?;
            self.send_ready_for_query().await?;
            return Ok(());
        } else if let Some(target) = Self::parse_discard_target(trimmed) {
            // Item 5: DISCARD resets session state without a reconnect, so a
            // connection pool can hand this physical connection to a different
            // client. DISCARD ALL is the pool's reset; the narrower forms are
            // accepted for compatibility.
            match target {
                "ALL" => {
                    if matches!(
                        self.transaction_status,
                        TransactionStatus::InTransaction | TransactionStatus::Failed
                    ) && self.database.session_in_transaction(self.session_id)
                    {
                        self.database.rollback_transaction_for_session(self.session_id)?;
                    }
                    self.transaction_status = TransactionStatus::Idle;
                    self.prepared_statements.clear_all()?;
                    // Reset session GUCs to their defaults.
                    let _ = self.database.set_session_synchronous_commit(self.session_id, None);
                    let _ = self.database.set_session_fast_autocommit(self.session_id, false);
                    // Back to `public` so a pooled connection can't inherit the
                    // previous client's search_path.
                    let _ = self.database.set_session_current_schema(self.session_id, None);
                    let _ = self
                        .database
                        .set_session_isolation(self.session_id, crate::session::IsolationLevel::ReadCommitted);
                    // Item 10: GUC_REPORT the reset helios.* GUC.
                    self.send_parameter_status("helios.fast_autocommit", "off").await?;
                }
                "PLANS" => {
                    self.prepared_statements.clear_all()?;
                }
                // Nano has no session-scoped temp tables or sequence caches to
                // drop; accept and ack for client compatibility.
                _ => {}
            }
            self.send_command_complete(&format!("DISCARD {target}")).await?;
            self.send_ready_for_query().await?;
            return Ok(());
        }

        if self.transaction_status == TransactionStatus::Failed {
            self.send_error(
                "ERROR",
                "25P02",
                "current transaction is aborted, commands ignored until end of transaction block",
                None,
                Some("Use ROLLBACK to clear the failed transaction state".to_string()),
            )
            .await?;
            return Ok(());
        }

        // Transparent write forwarding for standbys (HeliosProxy feature)
        // DML operations are forwarded to primary, DQL executes locally
        #[cfg(feature = "ha-tier1")]
        {
            use crate::replication::ha_state::{ha_state, SyncMode};
            use crate::replication::query_forwarder::{query_forwarder, ForwardedResult};

            if ha_state().is_read_only() {
                let is_write = starts_with_icase(trimmed, "INSERT")
                    || starts_with_icase(trimmed, "UPDATE")
                    || starts_with_icase(trimmed, "DELETE")
                    || starts_with_icase(trimmed, "CREATE")
                    || starts_with_icase(trimmed, "DROP")
                    || starts_with_icase(trimmed, "ALTER")
                    || starts_with_icase(trimmed, "TRUNCATE");

                if is_write {
                    // Check sync mode - only forward in Sync or SemiSync mode
                    let config = ha_state().get_config();
                    let sync_mode = config.as_ref().map(|c| c.sync_mode).unwrap_or(SyncMode::Async);

                    if matches!(sync_mode, SyncMode::Sync | SyncMode::SemiSync) {
                        // Forward write to primary transparently
                        if let Some(forwarder) = query_forwarder() {
                            match forwarder.forward_query(query) {
                                Ok(ForwardedResult::Command { tag, .. }) => {
                                    self.send_command_complete(&tag).await?;
                                    self.send_ready_for_query().await?;
                                    return Ok(());
                                }
                                Ok(ForwardedResult::Rows { columns, rows }) => {
                                    // Send forwarded row results (for RETURNING clauses)
                                    self.send_forwarded_rows(&columns, &rows).await?;
                                    self.send_ready_for_query().await?;
                                    return Ok(());
                                }
                                Ok(ForwardedResult::Error {
                                    severity,
                                    code,
                                    message,
                                    detail,
                                    hint,
                                }) => {
                                    self.send_error(&severity, &code, &message, detail, hint).await?;
                                    self.send_ready_for_query().await?;
                                    return Ok(());
                                }
                                Err(e) => {
                                    self.send_error(
                                        "ERROR",
                                        "08006",
                                        &format!("Failed to forward query to primary: {}", e),
                                        None,
                                        Some("Check primary connectivity".to_string()),
                                    )
                                    .await?;
                                    self.send_ready_for_query().await?;
                                    return Ok(());
                                }
                            }
                        } else {
                            // Forwarder not initialized - reject write
                            self.send_error(
                                "ERROR",
                                "25006",
                                "cannot execute write operations: primary connection not established",
                                None,
                                Some("Standby is still connecting to primary".to_string()),
                            )
                            .await?;
                            self.send_ready_for_query().await?;
                            return Ok(());
                        }
                    } else {
                        // Async mode - reject writes (traditional read-only standby)
                        self.send_error(
                            "ERROR",
                            "25006",
                            "cannot execute write operations in read-only mode (async standby)",
                            None,
                            Some("Connect to the primary for write operations, or configure sync mode for transparent routing.".to_string()),
                        ).await?;
                        self.send_ready_for_query().await?;
                        return Ok(());
                    }
                }
            }
        }

        // Check for pg_catalog queries
        if let Some(result) = self.catalog.handle_query(query)? {
            let (schema, rows) = result;
            self.send_query_result(schema, &rows).await?;
            self.send_ready_for_query().await?;
            return Ok(());
        }

        // Execute query through database
        let is_select = starts_with_icase(trimmed, "SELECT");
        let is_show_branches = crate::sql::Parser::is_show_branches(trimmed);
        // A CTE (`WITH … SELECT …`) is row-returning but doesn't start with
        // SELECT; route it through query_with_columns so it returns rows
        // rather than a command tag (Token Dashboard #3). Skip the read cache
        // so a data-modifying CTE still executes on every call.
        let is_cte = !is_select && starts_with_cte(trimmed);
        let is_dml_returning = !is_select && !is_cte && {
            let upper = trimmed.to_uppercase();
            (starts_with_icase(trimmed, "INSERT")
                || starts_with_icase(trimmed, "UPDATE")
                || starts_with_icase(trimmed, "DELETE"))
                && upper.contains("RETURNING")
        };

        if is_select || is_show_branches {
            // The shared result/plan caches are keyed by SQL text only and hold
            // public-schema resolutions only; a session with a non-`public`
            // search_path must resolve through `query_with_columns_for_session`
            // (which installs its per-session schema), never this shared read.
            let cached_query = if is_show_branches
                || self.database.session_in_transaction(self.session_id)
                || self.database.session_schema_active(self.session_id)
            {
                None
            } else {
                self.database.try_cached_query_with_columns(query)
            };
            if let Some((cached_results, columns)) = cached_query {
                let schema = Self::schema_from_query_columns(&columns, cached_results.as_slice());
                self.send_query_result(schema, cached_results.as_slice()).await?;
            } else {
                match run_guarded(|| self.database.query_with_columns_for_session(self.session_id, query)) {
                    Ok((results, columns)) => {
                        let schema = Self::schema_from_query_columns(&columns, &results);
                        self.send_query_result(schema, &results).await?;
                    }
                    // A STANDALONE row-returning statement surfaces its own error
                    // as a wire ErrorResponse and completes with Ok — the same
                    // self-contained contract the `SET` arms above already use,
                    // and wire-equivalent to the run-loop's `send_error_for_query`
                    // (which then sees Ok and does nothing). A bare name under
                    // `public` that resolves to no table (search_path correctly
                    // scoped) lands here: the query rightly errors, and the client
                    // must observe an 'E', not a dropped connection. Inside a
                    // multi-statement simple query (`suppress_ready_for_query`),
                    // the error is PROPAGATED instead so the batch aborts on the
                    // first failure (PostgreSQL implicit-transaction semantics).
                    Err(e) => {
                        if self.suppress_ready_for_query {
                            return Err(e);
                        }
                        self.send_error_for_query(&e, false).await?;
                        return Ok(());
                    }
                }
            }
        } else if is_cte {
            let (results, columns) =
                run_guarded(|| self.database.query_with_columns_for_session(self.session_id, query))?;
            let schema = Self::schema_from_query_columns(&columns, &results);
            self.send_query_result(schema, &results).await?;
        } else if is_dml_returning {
            // DML with RETURNING clause - returns rows like a query. W3.3:
            // same autocommit write-conflict retry as the plain-DML arm below.
            let policy = self.database.statement_retry_policy();
            let retriable = policy.is_enabled() && !self.database.session_in_transaction(self.session_id);
            let db = &self.database;
            let sid = self.session_id;
            let (affected, tuples) =
                run_with_retry(policy, retriable, || db.execute_returning_for_session(sid, query)).await?;
            if tuples.is_empty() {
                // No rows returned - send command complete with count
                let tag = self.get_command_tag(query, affected);
                self.send_command_complete(&tag).await?;
            } else {
                // Derive schema from plan for proper column names
                let schema = self.derive_returning_schema(query).unwrap_or_else(|_| {
                    if let Some(first) = tuples.first() {
                        first.schema()
                    } else {
                        Schema::new(vec![])
                    }
                });
                self.send_query_result(schema, &tuples).await?;
            }
        } else {
            // W3.3: autocommit same-row write-conflict retry (default OFF). The
            // gate is autocommit-only — an open explicit txn surfaces 40001
            // untouched. `op` captures `&self.database` (not `&self`), so the
            // future stays Send for the spawned connection task.
            let policy = self.database.statement_retry_policy();
            let retriable = policy.is_enabled() && !self.database.session_in_transaction(self.session_id);
            let db = &self.database;
            let sid = self.session_id;
            let affected = run_with_retry(policy, retriable, || db.execute_for_session(sid, query)).await?;
            let tag = self.get_command_tag(query, affected);
            self.send_command_complete(&tag).await?;
        }

        self.send_ready_for_query().await?;
        Ok(())
    }

    fn schema_from_query_columns(columns: &[String], rows: &[Tuple]) -> Schema {
        if !columns.is_empty() {
            Schema::new(
                columns
                    .iter()
                    .enumerate()
                    .map(|(i, name)| {
                        let data_type = rows
                            .first()
                            .and_then(|r| r.values.get(i))
                            .map(Value::data_type)
                            .unwrap_or(crate::DataType::Text);
                        crate::Column {
                            name: name.clone(),
                            data_type,
                            nullable: true,
                            primary_key: false,
                            source_table: None,
                            source_table_name: None,
                            default_expr: None,
                            unique: false,
                            storage_mode: crate::ColumnStorageMode::Default,
                        }
                    })
                    .collect(),
            )
        } else if !rows.is_empty() {
            rows[0].schema()
        } else {
            Schema::new(vec![])
        }
    }

    // Extended protocol methods are in handler_extended.rs module

    /// Handle SCRAM-SHA-256 authentication flow
    // SAFETY: parts[1] and parts[2] are guarded by parts.len() >= 3 check.
    #[allow(clippy::indexing_slicing)]
    async fn handle_scram_authentication(&mut self) -> Result<()> {
        // Send AuthenticationSASL with SCRAM-SHA-256 mechanism
        self.send_message(BackendMessage::Authentication(AuthenticationMessage::ScramSha256))
            .await?;
        self.flush().await?; // Client must read challenge before responding

        // Wait for client-first-message (SASL initial response)
        // BUG-003 (restored iter-72): accept the parser's SaslInitialResponse
        // variant. Older handler only matched PasswordMessage, which read the
        // SCRAM body as if it were null-terminated and lost everything after
        // "SCRAM-SHA-256" — every libpq client then failed
        // `parse_scram_client_first` with "missing GS2 authzid slot".
        let client_first = match self.read_message().await? {
            Some(FrontendMessage::SaslInitialResponse { mechanism: _, data }) => String::from_utf8(data)
                .map_err(|e| Error::protocol(format!("SCRAM client-first-message not UTF-8: {}", e)))?,
            Some(FrontendMessage::PasswordMessage { password }) => password,
            _ => return Err(Error::protocol("Expected SASL initial response")),
        };

        tracing::debug!("Received client-first-message: {}", client_first);

        // Parse client-first-message per RFC 5802. Bug 2: the previous
        // parser ignored the GS2 header and misaligned every offset for
        // real clients (libpq, asyncpg, node-postgres, JDBC). Now
        // delegated to `auth::parse_scram_client_first`.
        // BUG-003 (Perf-73): per RFC 5802 + the Postgres SCRAM profile, the
        // SCRAM `n=` field is empty. Source the real username from the
        // StartupMessage that was stored on `self.username` during the
        // startup phase.
        let (_scram_user_unused, client_nonce_owned) = super::auth::parse_scram_client_first(&client_first)?;
        let username_owned = self
            .username
            .clone()
            .ok_or_else(|| Error::authentication("SCRAM authentication started without a startup-time user name"))?;
        let username: &str = &username_owned;
        let client_nonce: &str = &client_nonce_owned;

        tracing::info!("SCRAM authentication for user: {}", username);

        // Get user credentials from password store
        let password_store = self
            .auth_manager
            .password_store()
            .ok_or_else(|| Error::authentication("SCRAM password store not configured"))?;

        let credentials = password_store
            .get_credentials(username)
            .ok_or_else(|| Error::authentication("User not found"))?;

        // Create SCRAM state
        let mut scram_state = ScramAuthState::new(username.to_string());
        scram_state.set_client_nonce(client_nonce.to_string());

        // Build client-first-message-bare for auth message.
        // BUG-003 (Perf-73): MUST match exactly what the client sent (empty
        // `n=` per the Postgres SCRAM profile + RFC 5802) — the SCRAM proof
        // verification hashes this string. Reconstructing with the startup
        // user breaks the proof and yields "Invalid password".
        let client_first_bare = format!("n=,r={}", client_nonce);
        scram_state.set_client_first_message_bare(client_first_bare);

        // Generate server-first-message
        let server_first = scram_state.build_server_first_message()?;

        tracing::debug!("Sending server-first-message: {}", server_first);

        // Send AuthenticationSASLContinue with server-first-message
        self.send_message(BackendMessage::Authentication(
            AuthenticationMessage::ScramSha256Continue {
                data: server_first.as_bytes().to_vec(),
            },
        ))
        .await?;
        self.flush().await?; // Client must read continue before responding

        // Wait for client-final-message. BUG-003 (Perf-73): SCRAM client-final
        // arrives as a SASLResponse (no mechanism prefix), not a PasswordMessage.
        let client_final = match self.read_message().await? {
            Some(FrontendMessage::SaslResponse { data }) => String::from_utf8(data)
                .map_err(|e| Error::protocol(format!("SCRAM client-final-message not UTF-8: {}", e)))?,
            Some(FrontendMessage::PasswordMessage { password }) => password,
            _ => return Err(Error::protocol("Expected SASL response")),
        };

        tracing::debug!("Received client-final-message: {}", client_final);

        // Parse client-final-message
        // Format: c=channel-binding,r=nonce,p=proof
        let final_parts: Vec<&str> = client_final.split(',').collect();
        if final_parts.len() < 3 {
            return Err(Error::protocol("Invalid SCRAM client-final-message"));
        }

        // Extract proof
        let proof_part = final_parts
            .iter()
            .find(|p| p.starts_with("p="))
            .ok_or_else(|| Error::protocol("Missing proof in client-final-message"))?;
        let client_proof_b64 = proof_part
            .strip_prefix("p=")
            .ok_or_else(|| Error::protocol("Invalid proof format"))?;

        // Build client-final-message-without-proof
        let client_final_without_proof: Vec<&str> =
            final_parts.iter().filter(|p| !p.starts_with("p=")).copied().collect();
        let client_final_without_proof = client_final_without_proof.join(",");

        // Verify client proof and get server signature
        let server_signature = scram_state.verify_client_proof(
            client_proof_b64,
            &client_final_without_proof,
            &credentials.stored_key,
            &credentials.server_key,
        )?;

        tracing::info!("SCRAM authentication successful for user: {}", username);

        // Build server-final-message
        let server_final = scram_state.build_server_final_message(&server_signature)?;

        tracing::debug!("Sending server-final-message: {}", server_final);

        // Send AuthenticationSASLFinal with server-final-message
        self.send_message(BackendMessage::Authentication(
            AuthenticationMessage::ScramSha256Final {
                data: server_final.as_bytes().to_vec(),
            },
        ))
        .await?;

        // Authentication successful
        self.authenticated = true;
        self.username = Some(username.to_string());

        Ok(())
    }

    /// Send query results
    async fn send_query_result(&mut self, schema: Schema, rows: &[Tuple]) -> Result<()> {
        // Send RowDescription
        let fields = schema_to_field_descriptions(&schema);
        self.send_message(BackendMessage::RowDescription { fields }).await?;

        self.send_data_rows_direct(rows).await?;

        // Send CommandComplete
        let tag = format!("SELECT {}", rows.len());
        self.send_command_complete(&tag).await?;

        Ok(())
    }

    /// Extended-protocol DataRow emission honouring the portal's result
    /// formats (R5.W1): all-text format requests stream through the direct
    /// encoder; any binary format code falls back to the legacy per-row
    /// conversion path, where the existing binary value encoders
    /// (`value_to_pg_binary`) live. Wire output is identical either way for
    /// text formats — both encoders share the same per-type text forms.
    pub(super) async fn send_data_rows_with_formats(&mut self, rows: &[Tuple], result_formats: &[i16]) -> Result<()> {
        if formats_request_text_only(result_formats) {
            return self.send_data_rows_direct(rows).await;
        }
        for row in rows {
            let values = tuple_to_pg_values_with_formats(row, result_formats);
            self.send_message(BackendMessage::DataRow { values }).await?;
        }
        Ok(())
    }

    /// Stream DataRows through the direct Tuple encoder (text format).
    ///
    /// Encodes rows into chunks before writing — keeps the zero-clone
    /// per-value encoding of [`Self::encode_data_row_direct`] while avoiding
    /// one async write per result row. Used by the simple-query path and,
    /// since R5.W1, by extended-protocol Execute whenever every requested
    /// result format is text (format code 0) — which is what mainstream
    /// drivers request.
    pub(super) async fn send_data_rows_direct(&mut self, rows: &[Tuple]) -> Result<()> {
        const DATA_ROW_FLUSH_AT: usize = 64 * 1024;
        self.write_buf.clear();
        for row in rows {
            self.encode_data_row_direct(row);
            if self.write_buf.len() >= DATA_ROW_FLUSH_AT {
                self.stream
                    .write_all(&self.write_buf)
                    .await
                    .map_err(|e| Error::network(format!("Failed to send query rows: {}", e)))?;
                self.write_buf.clear();
            }
        }
        if !self.write_buf.is_empty() {
            self.stream
                .write_all(&self.write_buf)
                .await
                .map_err(|e| Error::network(format!("Failed to send query rows: {}", e)))?;
            self.write_buf.clear();
        }
        Ok(())
    }

    /// Send forwarded query results from primary (for transparent routing)
    #[cfg(feature = "ha-tier1")]
    async fn send_forwarded_rows(
        &mut self,
        columns: &[crate::replication::query_forwarder::ColumnInfo],
        rows: &[Vec<Option<String>>],
    ) -> Result<()> {
        use crate::protocol::postgres::messages::FieldDescription;

        // Send RowDescription
        let fields: Vec<FieldDescription> = columns
            .iter()
            .map(|col| FieldDescription {
                name: col.name.clone(),
                table_oid: 0,
                column_attr_num: 0,
                data_type_oid: col.type_oid,
                data_type_size: -1,
                type_modifier: -1,
                format_code: 0, // Text format
            })
            .collect();
        self.send_message(BackendMessage::RowDescription { fields }).await?;

        // Send DataRows
        for row in rows {
            let values: Vec<Option<Vec<u8>>> = row.iter().map(|v| v.as_ref().map(|s| s.as_bytes().to_vec())).collect();
            self.send_message(BackendMessage::DataRow { values }).await?;
        }

        // Send CommandComplete
        let tag = format!("SELECT {}", rows.len());
        self.send_command_complete(&tag).await?;

        Ok(())
    }

    /// Send a backend message (write only, no flush).
    /// Caller is responsible for flushing at the end of a response cycle.
    /// COPY ... FROM STDIN wire sub-protocol (v3.58 item 2c). Sends
    /// CopyInResponse, drains CopyData frames until CopyDone/CopyFail, parses
    /// the text rows, and bulk-inserts them in batches. TO STDOUT and non-text
    /// formats return a clear error for now (added in a 2c follow-up). Row
    /// decoding + injection-safe INSERT construction live in the unit-tested
    /// `copy` module.
    async fn handle_copy(&mut self, copy: super::copy::CopyStatement) -> Result<()> {
        use super::copy::CopyFormat;
        if copy.format == CopyFormat::Binary {
            return self
                .send_error("ERROR", "0A000", "COPY binary format is not yet supported", None, None)
                .await;
        }
        if copy.to_stdout {
            return self.handle_copy_to_stdout(&copy).await;
        }

        // Ready to receive: text format (overall_format = 0).
        let ncols = copy.columns.len();
        self.send_message(BackendMessage::CopyInResponse {
            overall_format: 0,
            column_formats: vec![0i16; ncols],
        })
        .await?;
        // The client must SEE CopyInResponse before it will send any CopyData,
        // but send_message only writes into the BufWriter. Flush now — exactly
        // like the auth-challenge path ("Client must read challenge before
        // responding") — or both sides deadlock: client waits for 'G', server
        // waits for CopyData. (Found by Proxy live validation of 2c.)
        self.flush().await?;

        // Drain CopyData frames until CopyDone / CopyFail, decoding each frame
        // into typed rows as it arrives and dropping the raw bytes — so peak
        // memory tracks the parsed batch, not (~4–6×) the whole stream buffered
        // as one Vec<u8> (the pre-W2.4 OOM vector). The decoder carries the
        // partial trailing line, the CSV quote state, and any incomplete-UTF8
        // tail across frames, which split at arbitrary byte offsets.
        let max_buffered_rows = self.database.copy_max_buffered_rows();
        let max_record_bytes = self.database.copy_max_record_bytes();
        let mut decoder = super::copy::CopyStreamDecoder::new(copy.format, max_buffered_rows, max_record_bytes);
        let mut client_fail: Option<String> = None;
        loop {
            match self.read_message().await? {
                Some(FrontendMessage::CopyData(chunk)) => {
                    // W3.4: time the synchronous per-frame decode only (never the
                    // `read_message().await` network wait). Inert unless
                    // `copy_phase_stats` is on.
                    let _cps = crate::copy_phase_stats::time(crate::copy_phase_stats::Phase::Decode, 0);
                    decoder.push(&chunk);
                }
                Some(FrontendMessage::CopyDone) => break,
                Some(FrontendMessage::CopyFail(msg)) => {
                    client_fail = Some(msg);
                    break;
                }
                // Connection ending mid-copy: abort without inserting.
                None | Some(FrontendMessage::Terminate) => return Ok(()),
                Some(_) => {
                    return self
                        .send_error(
                            "ERROR",
                            "08P01",
                            "unexpected message during COPY FROM STDIN",
                            None,
                            None,
                        )
                        .await;
                }
            }
        }
        if let Some(msg) = client_fail {
            return self
                .send_error("ERROR", "57014", &format!("COPY from stdin failed: {msg}"), None, None)
                .await;
        }

        // Bounded-memory guard: either cap exceeded ⇒ abort the COPY with a clean
        // PG-style error (program_limit_exceeded, 54000) and zero rows applied —
        // the decoder has already released what it buffered. We still drained
        // every frame to CopyDone above, so the wire stays in sync. Name whichever
        // cap tripped so the operator knows which knob to raise.
        if let Some(reason) = decoder.overflow_reason() {
            let detail = match reason {
                super::copy::CopyOverflow::Rows => {
                    format!("buffered row count exceeded copy_max_buffered_rows ({max_buffered_rows})")
                }
                super::copy::CopyOverflow::RecordBytes => {
                    format!("in-progress record size exceeded copy_max_record_bytes ({max_record_bytes})")
                }
            };
            return self
                .send_error(
                    "ERROR",
                    "54000",
                    &format!("COPY aborted: {detail}; no rows inserted"),
                    None,
                    None,
                )
                .await;
        }

        // Flush the decoder into the typed row batch and bulk-insert.
        let rows = {
            let _cps = crate::copy_phase_stats::time(crate::copy_phase_stats::Phase::Decode, 0);
            decoder.finish()
        };
        let total = rows.len();

        // R-B1: typed fast path — apply the whole COPY as one atomic batch
        // through the fast insert-batch machinery, skipping the per-chunk
        // render-to-SQL → parse → generic-plan-arm round-trip. Only for
        // autocommit COPY (no open session transaction); returns None for
        // shapes it does not cover (triggers, FK/CHECK, RLS, …), in which case
        // we fall through to the generic SQL path below with identical
        // semantics.
        if !self.database.session_in_transaction(self.session_id) {
            match self.database.copy_bulk_insert(&copy.table, &copy.columns, &rows) {
                Some(Ok(_)) => {
                    self.send_command_complete(&format!("COPY {total}")).await?;
                    return self.send_ready_for_query().await;
                }
                Some(Err(e)) => {
                    return self
                        .send_error("ERROR", "XX000", &format!("COPY insert failed: {e}"), None, None)
                        .await;
                }
                None => {} // fall back to the generic SQL path
            }
        }

        // R-B4: route the generic fallback through the SESSION so that COPY
        // inside `BEGIN … ROLLBACK` participates in the transaction (previously
        // it used the session-unaware `execute()` and leaked rows on rollback).
        // Outside a transaction `execute_for_session` autocommits per chunk,
        // matching the prior behavior.
        const BATCH: usize = 500;
        // W3.2: attribute this generic COPY fallback to the `copy` write-volume
        // class. copy_bulk_insert declined the fast batch (constrained /
        // columnar / trigger / session-transaction shape), so each chunk is
        // re-issued as an `INSERT … VALUES` through the buffered generic arm —
        // which, absent a scope, would land in `other` (or `insert_multi` with
        // the arm's class upgrade), never in `copy`, so a routed-around COPY
        // reads `rows = 0` in the census. The generic arm's upgrade is
        // `if_other`, so this enclosing `Copy` scope wins. Hoisted once per COPY
        // (per-statement, zero per-row cost). The loop is fully synchronous
        // (`execute_for_session` does not await), so the guard is dropped before
        // any `.await` below — no cross-thread thread-local hazard; the error is
        // captured and reported after the guard drops.
        let copy_fallback_err = {
            let _wv = crate::write_volume::stmt_scope(crate::write_volume::StmtClass::Copy);
            let mut err = None;
            for chunk in rows.chunks(BATCH) {
                if let Some(sql) = super::copy::build_insert_sql(&copy.table, &copy.columns, chunk) {
                    if let Err(e) = self.database.execute_for_session(self.session_id, &sql) {
                        err = Some(e);
                        break;
                    }
                }
            }
            err
        };
        if let Some(e) = copy_fallback_err {
            return self
                .send_error("ERROR", "XX000", &format!("COPY insert failed: {e}"), None, None)
                .await;
        }
        self.send_command_complete(&format!("COPY {total}")).await?;
        self.send_ready_for_query().await
    }

    /// COPY ... TO STDOUT (text format) — SELECT the rows and stream each as a
    /// CopyData frame. The server only sends here (never waits on the client
    /// mid-stream), so no intermediate flush is needed; the trailing
    /// ReadyForQuery flushes the whole sequence.
    async fn handle_copy_to_stdout(&mut self, copy: &super::copy::CopyStatement) -> Result<()> {
        let cols_sql = if copy.columns.is_empty() {
            "*".to_string()
        } else {
            copy.columns
                .iter()
                .map(|c| format!("\"{}\"", c.replace('"', "\"\"")))
                .collect::<Vec<_>>()
                .join(", ")
        };
        let sql = format!("SELECT {} FROM \"{}\"", cols_sql, copy.table.replace('"', "\"\""));
        let (rows, columns) = match self.database.query_with_columns_for_session(self.session_id, &sql) {
            Ok(r) => r,
            Err(e) => {
                return self
                    .send_error("ERROR", "XX000", &format!("COPY TO STDOUT failed: {e}"), None, None)
                    .await;
            }
        };
        let ncols = columns.len();
        self.send_message(BackendMessage::CopyOutResponse {
            overall_format: 0,
            column_formats: vec![0i16; ncols],
        })
        .await?;
        let total = rows.len();
        for row in &rows {
            let fields = tuple_to_pg_values(row);
            let line = if copy.format == super::copy::CopyFormat::Csv {
                super::copy::encode_csv_row(&fields)
            } else {
                super::copy::encode_text_row(&fields)
            };
            self.send_message(BackendMessage::CopyData(line)).await?;
        }
        self.send_message(BackendMessage::CopyDone).await?;
        self.send_command_complete(&format!("COPY {total}")).await?;
        self.send_ready_for_query().await
    }

    pub(super) async fn send_message(&mut self, msg: BackendMessage) -> Result<()> {
        self.write_buf.clear();
        msg.encode(&mut self.write_buf);
        self.stream
            .write_all(&self.write_buf)
            .await
            .map_err(|e| Error::network(format!("Failed to send message: {}", e)))?;
        Ok(())
    }

    /// Encode a DataRow directly from a Tuple, avoiding intermediate Vec allocations.
    /// Uses length-prefix backpatching: writes placeholder, encodes values, then patches the length.
    #[allow(clippy::indexing_slicing)] // length_pos and count_pos are set by us, always valid
    fn encode_data_row_direct(&mut self, tuple: &Tuple) {
        self.write_buf.put_u8(b'D');

        // Reserve space for message length (4 bytes) — will be backpatched
        let length_pos = self.write_buf.len();
        self.write_buf.put_i32(0);

        // Column count
        self.write_buf.put_i16(tuple.values.len() as i16);

        // Encode each value directly into the buffer
        let mut itoa_buf = itoa::Buffer::new();
        let mut ryu_buf = ryu::Buffer::new();
        for val in &tuple.values {
            match val {
                Value::Null => {
                    self.write_buf.put_i32(-1);
                }
                Value::Boolean(b) => {
                    self.write_buf.put_i32(1);
                    self.write_buf.put_u8(if *b { b't' } else { b'f' });
                }
                Value::Int2(i) => {
                    let s = itoa_buf.format(*i);
                    self.write_buf.put_i32(s.len() as i32);
                    self.write_buf.put_slice(s.as_bytes());
                }
                Value::Int4(i) => {
                    let s = itoa_buf.format(*i);
                    self.write_buf.put_i32(s.len() as i32);
                    self.write_buf.put_slice(s.as_bytes());
                }
                Value::Int8(i) => {
                    let s = itoa_buf.format(*i);
                    self.write_buf.put_i32(s.len() as i32);
                    self.write_buf.put_slice(s.as_bytes());
                }
                Value::Float4(f) => {
                    let s = ryu_buf.format(*f);
                    self.write_buf.put_i32(s.len() as i32);
                    self.write_buf.put_slice(s.as_bytes());
                }
                Value::Float8(f) => {
                    let s = ryu_buf.format(*f);
                    self.write_buf.put_i32(s.len() as i32);
                    self.write_buf.put_slice(s.as_bytes());
                }
                Value::String(s) => {
                    self.write_buf.put_i32(s.len() as i32);
                    self.write_buf.put_slice(s.as_bytes());
                }
                Value::Bytes(b) => {
                    // bytea text format is `\x<hex>` (PostgreSQL bytea_output=hex).
                    // Raw bytes here make libpq/psycopg2 un-escape the field and
                    // drop any 0x5C (backslash) byte — see tuple_to_pg_values.
                    let hex = hex::encode(b);
                    self.write_buf.put_i32((2 + hex.len()) as i32);
                    self.write_buf.put_slice(b"\\x");
                    self.write_buf.put_slice(hex.as_bytes());
                }
                Value::Json(j) => {
                    let s = j.to_string();
                    self.write_buf.put_i32(s.len() as i32);
                    self.write_buf.put_slice(s.as_bytes());
                }
                Value::Numeric(n) => {
                    self.write_buf.put_i32(n.len() as i32);
                    self.write_buf.put_slice(n.as_bytes());
                }
                Value::Uuid(u) => {
                    let s = u.to_string();
                    self.write_buf.put_i32(s.len() as i32);
                    self.write_buf.put_slice(s.as_bytes());
                }
                Value::Timestamp(ts) => {
                    // PG wire format: space separator, microsecond
                    // precision, no trailing zone. rfc3339 nanosecond
                    // output (9 fractional digits) crashes psycopg
                    // ("timestamp too large (after year 10K)") and
                    // makes drizzle-orm's timestamp parser return null.
                    let s = ts.naive_utc().format("%Y-%m-%d %H:%M:%S%.6f").to_string();
                    self.write_buf.put_i32(s.len() as i32);
                    self.write_buf.put_slice(s.as_bytes());
                }
                Value::Date(d) => {
                    let s = d.format("%Y-%m-%d").to_string();
                    self.write_buf.put_i32(s.len() as i32);
                    self.write_buf.put_slice(s.as_bytes());
                }
                Value::Time(t) => {
                    // Microsecond precision — same reason as Timestamp.
                    let s = t.format("%H:%M:%S%.6f").to_string();
                    self.write_buf.put_i32(s.len() as i32);
                    self.write_buf.put_slice(s.as_bytes());
                }
                Value::Interval(micros) => {
                    let total_secs = micros / 1_000_000;
                    let days = total_secs / 86400;
                    let hours = (total_secs % 86400) / 3600;
                    let mins = (total_secs % 3600) / 60;
                    let secs = total_secs % 60;
                    let s = if days > 0 {
                        format!("{} days {:02}:{:02}:{:02}", days, hours, mins, secs)
                    } else {
                        format!("{:02}:{:02}:{:02}", hours, mins, secs)
                    };
                    self.write_buf.put_i32(s.len() as i32);
                    self.write_buf.put_slice(s.as_bytes());
                }
                Value::Array(arr) => {
                    let val_length_pos = self.write_buf.len();
                    self.write_buf.put_i32(0);
                    self.write_buf.put_u8(b'{');
                    for (i, v) in arr.iter().enumerate() {
                        if i > 0 {
                            self.write_buf.put_u8(b',');
                        }
                        match v {
                            Value::String(s) => {
                                self.write_buf.put_u8(b'"');
                                self.write_buf.put_slice(s.as_bytes());
                                self.write_buf.put_u8(b'"');
                            }
                            Value::Null => self.write_buf.put_slice(b"NULL"),
                            other => {
                                let s = other.to_string();
                                self.write_buf.put_slice(s.as_bytes());
                            }
                        }
                    }
                    self.write_buf.put_u8(b'}');
                    let val_len = (self.write_buf.len() - val_length_pos - 4) as i32;
                    self.write_buf[val_length_pos..val_length_pos + 4].copy_from_slice(&val_len.to_be_bytes());
                }
                Value::Vector(v) => {
                    // Format as PostgreSQL array: {1.0,2.0,3.0}
                    // Reserve length slot, write content, backpatch
                    let val_length_pos = self.write_buf.len();
                    self.write_buf.put_i32(0);
                    self.write_buf.put_u8(b'{');
                    for (i, x) in v.iter().enumerate() {
                        if i > 0 {
                            self.write_buf.put_u8(b',');
                        }
                        let s = ryu_buf.format(*x);
                        self.write_buf.put_slice(s.as_bytes());
                    }
                    self.write_buf.put_u8(b'}');
                    let val_len = (self.write_buf.len() - val_length_pos - 4) as i32;
                    self.write_buf[val_length_pos..val_length_pos + 4].copy_from_slice(&val_len.to_be_bytes());
                }
                Value::DictRef { dict_id } => {
                    let s = itoa_buf.format(*dict_id);
                    self.write_buf.put_i32(s.len() as i32);
                    self.write_buf.put_slice(s.as_bytes());
                }
                Value::CasRef { hash } => {
                    let s = hex::encode(hash);
                    self.write_buf.put_i32(s.len() as i32);
                    self.write_buf.put_slice(s.as_bytes());
                }
                Value::ColumnarRef => {
                    self.write_buf.put_i32(10);
                    self.write_buf.put_slice(b"<columnar>");
                }
            }
        }

        // Backpatch the message length (excludes the type byte, includes itself)
        let msg_len = (self.write_buf.len() - length_pos) as i32;
        self.write_buf[length_pos..length_pos + 4].copy_from_slice(&msg_len.to_be_bytes());
    }

    /// Flush all buffered writes to the client.
    async fn flush(&mut self) -> Result<()> {
        self.stream
            .flush()
            .await
            .map_err(|e| Error::network(format!("Failed to flush stream: {}", e)))
    }

    /// Send authentication OK
    async fn send_auth_ok(&mut self) -> Result<()> {
        self.send_message(BackendMessage::Authentication(AuthenticationMessage::Ok))
            .await
    }

    /// Send parameter status
    async fn send_parameter_status(&mut self, name: &str, value: &str) -> Result<()> {
        self.send_message(BackendMessage::ParameterStatus {
            name: name.to_string(),
            value: value.to_string(),
        })
        .await
    }

    /// Send ready for query (flushes all buffered writes)
    /// Handle `DO $$ … END $$ ;` blocks by executing the inner
    /// plain-SQL body statement-by-statement. We do **not** implement
    /// PL/pgSQL control flow (IF / LOOP / RAISE / variables) — only
    /// sequences of plain SQL statements are supported. This covers
    /// the common Drizzle / Prisma migration backfill pattern, not
    /// procedural logic.
    async fn handle_do_block(&mut self, query: &str) -> Result<()> {
        // Extract the body between the first and last `$tag$` delimiters.
        let body = pg_extract_do_block_body(query).unwrap_or("");
        // Strip optional `BEGIN`/`END` wrapper tokens.
        let stripped = pg_strip_begin_end(body.trim());

        // KanttBan #14 (v3.29.0): idempotent EXCEPTION handler. Drizzle
        // wraps every ALTER in
        //   DO $$ BEGIN <stmt>; EXCEPTION WHEN duplicate_object THEN null; END $$;
        // Parse the body into (main, exception_codes); swallow only
        // errors whose message matches the named exception conditions.
        // This is intentionally narrow — full PL/pgSQL control flow
        // still errors via `pg_detect_plpgsql` below.
        let (main_body, exception_codes) = pg_split_exception(stripped);

        if let Some(kw) = pg_detect_plpgsql(main_body) {
            return Err(Error::query_execution(format!(
                "PL/pgSQL control flow (`{kw}`) inside DO blocks is not yet \
                 supported in HeliosDB Nano. Rewrite the block as plain SQL, \
                 or execute each statement separately. \
                 See: docs/compatibility/plpgsql.md"
            )));
        }

        let statements = pg_split_sql_respecting_quotes(main_body);

        if statements.is_empty() {
            self.send_command_complete("DO").await?;
            self.send_ready_for_query().await?;
            return Ok(());
        }
        let prev = self.suppress_ready_for_query;
        self.suppress_ready_for_query = true;
        for stmt in &statements {
            if let Err(e) = self.database.execute_for_session(self.session_id, stmt) {
                if pg_exception_matches(&exception_codes, &e.to_string()) {
                    tracing::debug!("DO block: caught {:?} via EXCEPTION clause; continuing", e.to_string());
                    continue;
                }
                self.suppress_ready_for_query = prev;
                return Err(e);
            }
        }
        self.suppress_ready_for_query = prev;
        self.send_command_complete("DO").await?;
        self.send_ready_for_query().await?;
        Ok(())
    }

    async fn send_ready_for_query(&mut self) -> Result<()> {
        // Multi-statement simple query mode: suppress intra-batch
        // ReadyForQuery so the client sees exactly one at the end.
        if self.suppress_ready_for_query {
            return Ok(());
        }
        self.send_message(BackendMessage::ReadyForQuery {
            status: self.transaction_status,
        })
        .await?;
        self.flush().await
    }

    /// Send command complete
    pub(super) async fn send_command_complete(&mut self, tag: &str) -> Result<()> {
        self.send_message(BackendMessage::CommandComplete { tag: tag.to_string() })
            .await
    }

    /// Send error response (ErrorResponse only, no trailing ReadyForQuery)
    async fn send_error_message(
        &mut self,
        severity: &str,
        code: &str,
        message: &str,
        detail: Option<String>,
        hint: Option<String>,
    ) -> Result<()> {
        self.send_message(BackendMessage::ErrorResponse {
            severity: severity.to_string(),
            code: code.to_string(),
            message: message.to_string(),
            detail,
            hint,
            position: None,
        })
        .await
    }

    /// Send error response followed by ReadyForQuery (simple-query path)
    async fn send_error(
        &mut self,
        severity: &str,
        code: &str,
        message: &str,
        detail: Option<String>,
        hint: Option<String>,
    ) -> Result<()> {
        self.mark_transaction_failed_after_error();
        self.send_error_message(severity, code, message, detail, hint).await?;
        self.send_ready_for_query().await
    }

    async fn send_error_for_query(&mut self, error: &Error, wait_for_sync: bool) -> Result<()> {
        self.mark_transaction_failed_after_error();
        self.suppress_ready_for_query = false;
        let code = sqlstate_for_error(error);
        let (detail, hint) = detail_hint_for_error(code, error);
        if wait_for_sync {
            // Extended-query protocol: emit ErrorResponse now and defer
            // ReadyForQuery until the client's Sync, discarding messages in
            // between. Sending ReadyForQuery early closes/wedges drivers.
            self.send_error_message("ERROR", code, &error.to_string(), detail, hint)
                .await?;
            self.flush().await
        } else {
            self.send_error("ERROR", code, &error.to_string(), detail, hint).await
        }
    }

    fn mark_transaction_failed_after_error(&mut self) {
        if self.transaction_status == TransactionStatus::InTransaction {
            self.transaction_status = TransactionStatus::Failed;
        }
    }

    fn rollback_failed_transaction_for_recovery(&mut self) -> Result<()> {
        if self.transaction_status == TransactionStatus::Failed {
            if self.database.session_in_transaction(self.session_id) {
                self.database.rollback_transaction_for_session(self.session_id)?;
            }
            self.transaction_status = TransactionStatus::Idle;
        }
        Ok(())
    }

    pub(super) fn transaction_failed(&self) -> bool {
        self.transaction_status == TransactionStatus::Failed
    }

    pub(super) async fn send_extended_failed_transaction_error(&mut self) -> Result<()> {
        self.suppress_ready_for_query = false;
        self.awaiting_sync_after_error = true;
        self.send_error_message(
            "ERROR",
            "25P02",
            "current transaction is aborted, commands ignored until end of transaction block",
            None,
            Some("Use ROLLBACK to clear the failed transaction state".to_string()),
        )
        .await?;
        self.flush().await
    }

    /// SQLite-shaped `PRAGMA table_info(t)` rows.
    ///
    /// One row per column with `(cid, name, type, notnull, dflt_value, pk)` —
    /// the shape sqlite3-driven Python apps (notably token-dashboard's schema
    /// migrators) consume to detect "does this column already exist?".
    fn pragma_table_info(&self, table: &str) -> Result<Vec<Tuple>> {
        let catalog = self.database.storage.catalog();
        let schema = catalog.get_table_schema(table)?;
        let mut rows = Vec::with_capacity(schema.columns.len());
        for (idx, col) in schema.columns.iter().enumerate() {
            rows.push(Tuple::new(vec![
                Value::Int4(idx as i32),
                Value::String(col.name.clone()),
                Value::String(format!("{:?}", col.data_type).to_uppercase()),
                Value::Int4(if col.nullable { 0 } else { 1 }),
                col.default_expr
                    .as_ref()
                    .map(|d| Value::String(d.clone()))
                    .unwrap_or(Value::Null),
                Value::Int4(if col.primary_key { 1 } else { 0 }),
            ]));
        }
        Ok(rows)
    }

    /// Derive schema for a DML statement with RETURNING clause
    fn derive_returning_schema(&self, sql: &str) -> Result<Schema> {
        let catalog = self.database.storage.catalog();
        // Resolve the RETURNING table against THIS session's `search_path` so the
        // column metadata matches the schema the rows were actually written to.
        let planner = crate::sql::planner::Planner::with_catalog(&catalog)
            .with_sql(sql.to_string())
            .with_current_schema(self.database.session_current_schema(self.session_id).unwrap_or(None))
            .with_search_path(self.database.session_search_path(self.session_id).unwrap_or_default());
        let (statement, _) = self.database.parse_cached(sql)?;
        let plan = planner.statement_to_plan(statement)?;

        // Extract table name and returning items from the plan
        let (table_name, returning_items) = match &plan {
            crate::sql::LogicalPlan::Insert {
                table_name, returning, ..
            }
            | crate::sql::LogicalPlan::InsertSelect {
                table_name, returning, ..
            } => (table_name.as_str(), returning.as_ref()),
            crate::sql::LogicalPlan::Update {
                table_name, returning, ..
            } => (table_name.as_str(), returning.as_ref()),
            crate::sql::LogicalPlan::Delete {
                table_name, returning, ..
            } => (table_name.as_str(), returning.as_ref()),
            _ => return Err(crate::Error::query_execution("Not a DML statement")),
        };

        if let Some(items) = returning_items {
            let table_schema = catalog.get_table_schema(table_name)?;
            Ok(crate::EmbeddedDatabase::returning_schema(&table_schema, items))
        } else {
            Ok(Schema::new(vec![]))
        }
    }

    /// Get command tag for a query
    pub(super) fn get_command_tag(&self, query: &str, affected: u64) -> String {
        let trimmed = query.trim();
        if starts_with_icase(trimmed, "INSERT") {
            format!("INSERT 0 {}", affected)
        } else if starts_with_icase(trimmed, "UPDATE") {
            format!("UPDATE {}", affected)
        } else if starts_with_icase(trimmed, "DELETE") {
            format!("DELETE {}", affected)
        } else if starts_with_icase(trimmed, "CREATE TABLE") {
            "CREATE TABLE".to_string()
        } else if starts_with_icase(trimmed, "CREATE SCHEMA") {
            // PostgreSQL replies "CREATE SCHEMA" (no row count) for a bare
            // CREATE SCHEMA and for the multi-element form alike.
            "CREATE SCHEMA".to_string()
        } else if starts_with_icase(trimmed, "DROP TABLE") {
            "DROP TABLE".to_string()
        } else if starts_with_icase(trimmed, "CREATE INDEX") {
            "CREATE INDEX".to_string()
        } else if starts_with_icase(trimmed, "ALTER TABLE") {
            // PostgreSQL replies "ALTER TABLE" (no row count) for every ALTER
            // TABLE form, including the Stage-0 ATTACH/DETACH PARTITION no-op.
            "ALTER TABLE".to_string()
        } else if starts_with_icase(trimmed, "ALTER INDEX") {
            "ALTER INDEX".to_string()
        } else {
            format!("OK {}", affected)
        }
    }

    /// Parse isolation level from transaction command
    ///
    /// Supports:
    /// - BEGIN [TRANSACTION] [ISOLATION LEVEL {READ UNCOMMITTED | READ COMMITTED | REPEATABLE READ | SERIALIZABLE}]
    /// - START TRANSACTION [ISOLATION LEVEL ...]
    /// - SET TRANSACTION ISOLATION LEVEL ...
    // SAFETY: pos is found by .find() so pos+15 is within the string
    // ("ISOLATION LEVEL" is exactly 15 chars).
    #[allow(clippy::indexing_slicing)]
    /// Resolve a SHOW parameter name to (column_name, value).
    /// Returns PostgreSQL-compatible values for common parameters.
    fn resolve_show_parameter(param: &str) -> (String, String) {
        let param_lower = param.to_lowercase();
        let col = param_lower.clone();
        let val = match param_lower.as_str() {
            "server_version" => format!("16.0 (HeliosDB Nano {})", env!("CARGO_PKG_VERSION")),
            "server_encoding" => "UTF8".to_string(),
            "client_encoding" => "UTF8".to_string(),
            "standard_conforming_strings" => "on".to_string(),
            "transaction_isolation" | "transaction isolation level" => "read committed".to_string(),
            "datestyle" => "ISO, MDY".to_string(),
            "timezone" | "time zone" => "UTC".to_string(),
            "integer_datetimes" => "on".to_string(),
            "max_connections" => "100".to_string(),
            "lc_collate" => "en_US.UTF-8".to_string(),
            "lc_ctype" => "en_US.UTF-8".to_string(),
            "search_path" => "\"$user\", public".to_string(),
            "default_transaction_isolation" => "read committed".to_string(),
            "is_superuser" => "on".to_string(),
            _ => String::new(),
        };
        (col, val)
    }

    /// Item 5: classify a `DISCARD …` statement, returning the canonical
    /// target (`"ALL" | "PLANS" | "SEQUENCES" | "TEMP"`) or `None` when this is
    /// not a recognized DISCARD form (so it falls through to normal parsing).
    fn parse_discard_target(trimmed: &str) -> Option<&'static str> {
        let rest = trimmed.trim_end_matches(';').trim();
        if !starts_with_icase(rest, "DISCARD ") {
            return None;
        }
        let arg = rest[8..].trim(); // "DISCARD ".len() == 8 (ASCII)
        if arg.eq_ignore_ascii_case("ALL") {
            Some("ALL")
        } else if arg.eq_ignore_ascii_case("PLANS") {
            Some("PLANS")
        } else if arg.eq_ignore_ascii_case("SEQUENCES") {
            Some("SEQUENCES")
        } else if arg.eq_ignore_ascii_case("TEMP") || arg.eq_ignore_ascii_case("TEMPORARY") {
            Some("TEMP")
        } else {
            None
        }
    }

    fn parse_isolation_level(query: &str) -> Option<String> {
        // Find "ISOLATION LEVEL" case-insensitively without allocating
        let query_bytes = query.as_bytes();
        let needle = b"ISOLATION LEVEL";
        let pos = query_bytes
            .windows(needle.len())
            .position(|w| w.eq_ignore_ascii_case(needle))?;
        let rest = query[pos + needle.len()..].trim();
        if starts_with_icase(rest, "READ UNCOMMITTED") {
            Some("READ UNCOMMITTED".to_string())
        } else if starts_with_icase(rest, "READ COMMITTED") {
            Some("READ COMMITTED".to_string())
        } else if starts_with_icase(rest, "REPEATABLE READ") {
            Some("REPEATABLE READ".to_string())
        } else if starts_with_icase(rest, "SERIALIZABLE") {
            Some("SERIALIZABLE".to_string())
        } else {
            None
        }
    }
}

/// Convert Schema to FieldDescriptions
pub(super) fn schema_to_field_descriptions(schema: &Schema) -> Vec<FieldDescription> {
    schema
        .columns
        .iter()
        .map(|col| {
            FieldDescription {
                name: col.name.clone(),
                table_oid: 0,
                column_attr_num: 0,
                data_type_oid: datatype_to_oid(&col.data_type),
                data_type_size: datatype_to_size(&col.data_type),
                type_modifier: -1,
                format_code: 0, // text format
            }
        })
        .collect()
}

/// Convert Schema to FieldDescriptions, honoring requested result formats
/// where this wire encoder has a matching binary representation.
pub(super) fn schema_to_field_descriptions_with_formats(
    schema: &Schema,
    result_formats: &[i16],
) -> Vec<FieldDescription> {
    schema
        .columns
        .iter()
        .enumerate()
        .map(|(index, col)| FieldDescription {
            name: col.name.clone(),
            table_oid: 0,
            column_attr_num: 0,
            data_type_oid: datatype_to_oid(&col.data_type),
            data_type_size: datatype_to_size(&col.data_type),
            type_modifier: -1,
            format_code: effective_result_format(&col.data_type, result_formats, index),
        })
        .collect()
}

/// True when the portal's result-format codes request text for every column
/// (empty list, all zeros, or the single-`0` shorthand) — the precondition
/// for routing extended-protocol rows through the direct encoder (R5.W1).
pub(super) fn formats_request_text_only(result_formats: &[i16]) -> bool {
    result_formats.iter().all(|f| *f == 0)
}

pub(super) fn requested_result_format(result_formats: &[i16], column_index: usize) -> i16 {
    if result_formats.is_empty() {
        0
    } else if result_formats.len() == 1 {
        result_formats[0]
    } else {
        result_formats.get(column_index).copied().unwrap_or(0)
    }
}

fn effective_result_format(data_type: &crate::DataType, result_formats: &[i16], column_index: usize) -> i16 {
    let requested = requested_result_format(result_formats, column_index);
    if requested == 1 && datatype_has_binary_result(data_type) {
        1
    } else {
        0
    }
}

fn datatype_has_binary_result(data_type: &crate::DataType) -> bool {
    matches!(
        data_type,
        crate::DataType::Boolean
            | crate::DataType::Int2
            | crate::DataType::Int4
            | crate::DataType::Int8
            | crate::DataType::Float4
            | crate::DataType::Float8
            | crate::DataType::Bytea
            | crate::DataType::Text
            | crate::DataType::Varchar(_)
            | crate::DataType::Uuid
    )
}

/// Convert DataType to PostgreSQL OID
pub(super) fn datatype_to_oid(dt: &crate::DataType) -> i32 {
    match dt {
        crate::DataType::Boolean => 16,
        crate::DataType::Int2 => 21,
        crate::DataType::Int4 => 23,
        crate::DataType::Int8 => 20,
        crate::DataType::Float4 => 700,
        crate::DataType::Float8 => 701,
        // Arbitrary-precision numeric. Must advertise the real `numeric` OID
        // (1700), not 705/unknown — otherwise clients (psycopg, JDBC, …)
        // receive numeric columns as untyped strings and skip decimal parsing,
        // breaking value fidelity for migration/validation tools.
        crate::DataType::Numeric => 1700,
        crate::DataType::Text => 25,
        crate::DataType::Varchar(_) => 1043,
        crate::DataType::Char(_) => 1042, // bpchar
        crate::DataType::Bytea => 17,
        crate::DataType::Json => 114,
        crate::DataType::Jsonb => 3802,
        crate::DataType::Timestamp => 1114,
        crate::DataType::Timestamptz => 1184,
        crate::DataType::Interval => 1186,
        crate::DataType::Date => 1082,
        crate::DataType::Time => 1083,
        crate::DataType::Uuid => 2950,
        crate::DataType::Vector(_) => 1000, // Custom type
        _ => 705,                           // Unknown
    }
}

/// Convert DataType to PostgreSQL size
pub(super) fn datatype_to_size(dt: &crate::DataType) -> i16 {
    match dt {
        crate::DataType::Boolean => 1,
        crate::DataType::Int2 => 2,
        crate::DataType::Int4 => 4,
        crate::DataType::Int8 => 8,
        crate::DataType::Float4 => 4,
        crate::DataType::Float8 => 8,
        crate::DataType::Text => -1, // variable
        crate::DataType::Varchar(_) => -1,
        crate::DataType::Uuid => 16,
        _ => -1,
    }
}

/// Convert Tuple to PostgreSQL wire format values.
/// Uses itoa/ryu for fast numeric formatting (avoids String allocation per value).
pub(super) fn tuple_to_pg_values(tuple: &Tuple) -> Vec<Option<Vec<u8>>> {
    tuple
        .values
        .iter()
        .map(|val| {
            match val {
                Value::Null => None,
                Value::Boolean(b) => Some(if *b { b"t" } else { b"f" }.to_vec()),
                Value::Int2(i) => Some(itoa::Buffer::new().format(*i).as_bytes().to_vec()),
                Value::Int4(i) => Some(itoa::Buffer::new().format(*i).as_bytes().to_vec()),
                Value::Int8(i) => Some(itoa::Buffer::new().format(*i).as_bytes().to_vec()),
                Value::Float4(f) => Some(ryu::Buffer::new().format(*f).as_bytes().to_vec()),
                Value::Float8(f) => Some(ryu::Buffer::new().format(*f).as_bytes().to_vec()),
                Value::String(s) => Some(s.as_bytes().to_vec()),
                // bytea text format is `\x<hex>` (PostgreSQL bytea_output=hex).
                // Emitting the raw bytes makes libpq/psycopg2 apply
                // escape-format un-escaping on the field, which silently drops
                // any 0x5C (backslash) byte — corrupting BLOB/RAW round-trips.
                Value::Bytes(b) => {
                    let mut out = Vec::with_capacity(2 + b.len() * 2);
                    out.extend_from_slice(b"\\x");
                    out.extend_from_slice(hex::encode(b).as_bytes());
                    Some(out)
                }
                Value::Json(j) => Some(j.to_string().into_bytes()),
                Value::Numeric(n) => Some(n.as_bytes().to_vec()),
                Value::Uuid(u) => Some(u.to_string().into_bytes()),
                // PostgreSQL timestamp wire format: microsecond precision,
                // space separator, no trailing timezone on `timestamp without
                // time zone` columns. psycopg's native parser rejects
                // `rfc3339` nanosecond output ("timestamp too large (after
                // year 10K)") — PG itself truncates to 6 fractional digits.
                Value::Timestamp(ts) => Some(ts.naive_utc().format("%Y-%m-%d %H:%M:%S%.6f").to_string().into_bytes()),
                Value::Date(d) => Some(d.format("%Y-%m-%d").to_string().into_bytes()),
                // Same story for TIME — truncate to microseconds.
                Value::Time(t) => Some(t.format("%H:%M:%S%.6f").to_string().into_bytes()),
                Value::Interval(micros) => {
                    let total_secs = micros / 1_000_000;
                    let days = total_secs / 86400;
                    let hours = (total_secs % 86400) / 3600;
                    let mins = (total_secs % 3600) / 60;
                    let secs = total_secs % 60;
                    let s = if days > 0 {
                        format!("{} days {:02}:{:02}:{:02}", days, hours, mins, secs)
                    } else {
                        format!("{:02}:{:02}:{:02}", hours, mins, secs)
                    };
                    Some(s.into_bytes())
                }
                Value::Array(arr) => {
                    let mut buf = String::with_capacity(arr.len() * 8 + 2);
                    buf.push('{');
                    for (i, v) in arr.iter().enumerate() {
                        if i > 0 {
                            buf.push(',');
                        }
                        match v {
                            Value::String(s) => {
                                buf.push('"');
                                buf.push_str(s);
                                buf.push('"');
                            }
                            Value::Null => buf.push_str("NULL"),
                            other => buf.push_str(&other.to_string()),
                        }
                    }
                    buf.push('}');
                    Some(buf.into_bytes())
                }
                Value::Vector(v) => {
                    // Format as PostgreSQL array: {1.0,2.0,3.0}
                    let mut buf = String::with_capacity(v.len() * 8 + 2);
                    buf.push('{');
                    let mut ryu_buf = ryu::Buffer::new();
                    for (i, x) in v.iter().enumerate() {
                        if i > 0 {
                            buf.push(',');
                        }
                        buf.push_str(ryu_buf.format(*x));
                    }
                    buf.push('}');
                    Some(buf.into_bytes())
                }
                Value::DictRef { dict_id } => Some(itoa::Buffer::new().format(*dict_id).as_bytes().to_vec()),
                Value::CasRef { hash } => Some(hex::encode(hash).into_bytes()),
                Value::ColumnarRef => Some(b"<columnar>".to_vec()),
            }
        })
        .collect()
}

/// Convert Tuple to PostgreSQL wire-format values using portal result formats.
pub(super) fn tuple_to_pg_values_with_formats(tuple: &Tuple, result_formats: &[i16]) -> Vec<Option<Vec<u8>>> {
    tuple
        .values
        .iter()
        .enumerate()
        .map(|(index, val)| match val {
            Value::Null => None,
            _ if requested_result_format(result_formats, index) == 1 => {
                value_to_pg_binary(val).or_else(|| single_value_to_pg_text(val))
            }
            _ => single_value_to_pg_text(val),
        })
        .collect()
}

fn single_value_to_pg_text(value: &Value) -> Option<Vec<u8>> {
    let tuple = Tuple::new(vec![value.clone()]);
    tuple_to_pg_values(&tuple).into_iter().next().flatten()
}

fn value_to_pg_binary(value: &Value) -> Option<Vec<u8>> {
    match value {
        Value::Boolean(value) => Some(vec![u8::from(*value)]),
        Value::Int2(value) => Some(value.to_be_bytes().to_vec()),
        Value::Int4(value) => Some(value.to_be_bytes().to_vec()),
        Value::Int8(value) => Some(value.to_be_bytes().to_vec()),
        Value::Float4(value) => Some(value.to_be_bytes().to_vec()),
        Value::Float8(value) => Some(value.to_be_bytes().to_vec()),
        Value::String(value) => Some(value.as_bytes().to_vec()),
        Value::Bytes(value) => Some(value.clone()),
        Value::Uuid(value) => Some(value.as_bytes().to_vec()),
        _ => None,
    }
}

/// Split a SQL string on `;` while respecting single-quoted strings
/// and dollar-quoted strings. Mirrors the MySQL handler's splitter
/// (`protocol::mysql::handler::split_sql_respecting_quotes`) with
/// added support for `$$…$$` / `$tag$…$tag$` blocks, which PG uses
/// for procedure bodies and dollar-quoted literals.
fn pg_split_sql_respecting_quotes(sql: &str) -> Vec<String> {
    let mut statements = Vec::new();
    let mut current = String::new();
    let mut in_single_quote = false;
    let mut in_dollar: Option<String> = None; // tag between `$` delimiters
    let bytes = sql.as_bytes();
    let mut i = 0usize;

    while i < bytes.len() {
        let b = bytes[i];
        // Inside a `$tag$ … $tag$` block, we scan for the closing tag.
        if let Some(tag) = &in_dollar {
            current.push(b as char);
            if b == b'$' {
                // Try to match `$tag$`
                let close = format!("${tag}$");
                if sql.get(i..i + close.len()) == Some(close.as_str()) {
                    for c in close.chars().skip(1) {
                        current.push(c);
                    }
                    i += close.len();
                    in_dollar = None;
                    continue;
                }
            }
            i += 1;
            continue;
        }
        // Inside a single-quoted string: handle escaped quotes and
        // backslash escapes identically to the MySQL splitter.
        if in_single_quote {
            current.push(b as char);
            if b == b'\'' {
                if bytes.get(i + 1) == Some(&b'\'') {
                    current.push('\'');
                    i += 2;
                    continue;
                }
                in_single_quote = false;
            } else if b == b'\\' {
                if let Some(&next) = bytes.get(i + 1) {
                    current.push(next as char);
                    i += 2;
                    continue;
                }
            }
            i += 1;
            continue;
        }
        // Start of a dollar-quoted string? `$tag$` where tag is empty or [A-Za-z0-9_]+.
        if b == b'$' {
            let rest = &sql[i + 1..];
            if let Some(end) = rest.find('$') {
                let tag = &rest[..end];
                if tag.chars().all(|c| c.is_ascii_alphanumeric() || c == '_') {
                    current.push('$');
                    for c in tag.chars() {
                        current.push(c);
                    }
                    current.push('$');
                    i += 1 + end + 1;
                    in_dollar = Some(tag.to_string());
                    continue;
                }
            }
        }
        match b {
            b'\'' => {
                in_single_quote = true;
                current.push('\'');
            }
            b';' => {
                let trimmed = current.trim().to_string();
                if !trimmed.is_empty() && !pg_stmt_is_only_comment(&trimmed) {
                    statements.push(trimmed);
                }
                current.clear();
            }
            _ => current.push(b as char),
        }
        i += 1;
    }
    let trimmed = current.trim().to_string();
    if !trimmed.is_empty() && !pg_stmt_is_only_comment(&trimmed) {
        statements.push(trimmed);
    }
    statements
}

/// KanttBan #23 phase 2.7: return true if `stmt` (already trimmed)
/// contains nothing but SQL line comments (`-- …`) and whitespace.
/// drizzle-kit's getColumnsInfoQuery ends with
/// `ORDER BY a.attnum;  -- Order by column number` — splitting on
/// `;` left the trailing `-- …` as a "statement" which sqlparser
/// rejected with "No SQL statement found". Skipping comment-only
/// segments at the splitter level mirrors PG's tolerance for
/// trailing comments after a terminating semicolon.
fn pg_stmt_is_only_comment(stmt: &str) -> bool {
    for line in stmt.lines() {
        let trimmed = line.trim();
        if trimmed.is_empty() {
            continue;
        }
        if !trimmed.starts_with("--") {
            return false;
        }
    }
    true
}

/// Detect `DO $$ … $$` / `DO [LANGUAGE plpgsql] $tag$ … $tag$;` blocks
/// at statement level so we can strip the wrapper and execute the
/// plain-SQL body statement-by-statement.
fn pg_looks_like_do_block(trimmed: &str) -> bool {
    let upper = trimmed.trim_start().to_ascii_uppercase();
    upper.starts_with("DO $") || upper.starts_with("DO LANGUAGE ")
}

/// Split a DO-block body into its main BEGIN body and the list of
/// exception names declared in the trailing `EXCEPTION` clause.
///
/// drizzle-kit emits this exact shape and nothing else for the
/// EXCEPTION case — we don't try to parse the THEN action since
/// it's always `null` (a no-op).
/// KanttBan #23 (v3.31.1 phase 2.2): rewrite PG's `SELECT FROM …`
/// empty-projection shorthand to `SELECT 1 FROM …` so sqlparser-rs
/// can parse it. drizzle-kit's getColumnsInfoQuery uses the empty
/// form inside `EXISTS (SELECT FROM pg_attrdef ad WHERE …)` — valid
/// in PG, rejected by our parser.
///
/// Scope: only matches `SELECT` followed by whitespace then `FROM`.
/// `SELECT *` / `SELECT col` / `SELECT 1` are untouched. Comments and
/// string literals containing `SELECT FROM` would be falsely rewritten
/// — that's a known sharp edge but no real driver query has that
/// shape inside a string. The substitution is idempotent and case-
/// preserving on the matched tokens.
pub(crate) fn pg_rewrite_empty_projection(query: &str) -> String {
    let needle_lower = "select from ";
    let mut out = String::with_capacity(query.len() + 16);
    let mut remaining = query;
    loop {
        let lower = remaining.to_ascii_lowercase();
        match lower.find(needle_lower) {
            None => {
                out.push_str(remaining);
                break;
            }
            Some(idx) => {
                let after = idx + needle_lower.len();
                // Preserve the original case of "SELECT" / "select" / "FROM"
                // by slicing remaining (the actual text) rather than `lower`.
                out.push_str(&remaining[..idx]);
                out.push_str(&remaining[idx..idx + 6]); // "SELECT" / "select"
                out.push_str(" 1 ");
                out.push_str(&remaining[idx + 7..after]); // "FROM " / "from "
                remaining = &remaining[after..];
            }
        }
    }
    out
}

fn pg_split_exception(body: &str) -> (&str, Vec<String>) {
    let upper = body.to_ascii_uppercase();
    // KanttBan #14 (v3.30.1 smoke): the previous needle `" EXCEPTION "`
    // only matched space-bounded EXCEPTION. drizzle-kit emits a
    // multi-line shape with a newline before `EXCEPTION`, which
    // slipped past the split — `pg_detect_plpgsql` then ran on the
    // un-stripped body and (after we taught it to ignore IF NOT EXISTS)
    // the unstripped EXCEPTION clause leaked through to the SQL
    // splitter, which fed `EXCEPTION WHEN duplicate_object …` to
    // sqlparser as a top-level statement and parse-errored.
    //
    // Find the standalone `EXCEPTION` keyword by checking for any
    // ASCII whitespace immediately before and after it.
    let offset = upper
        .match_indices("EXCEPTION")
        .find(|(idx, _)| {
            let before_ok = *idx == 0
                || upper
                    .as_bytes()
                    .get(*idx - 1)
                    .copied()
                    .is_some_and(|b| b.is_ascii_whitespace());
            let after_pos = *idx + "EXCEPTION".len();
            let after_ok = after_pos == upper.len()
                || upper
                    .as_bytes()
                    .get(after_pos)
                    .copied()
                    .is_some_and(|b| b.is_ascii_whitespace());
            before_ok && after_ok
        })
        .map(|(idx, _)| idx);
    let Some(offset) = offset else {
        return (body, Vec::new());
    };
    let main = &body[..offset];
    let exception_block = &body[offset + "EXCEPTION".len()..];

    // Collect every identifier following a `WHEN` keyword. Multiple
    // exceptions can be OR'd: `WHEN a OR b THEN …`. We don't try to
    // parse `THEN <stmt>` — the action is implied no-op for our use.
    let mut codes = Vec::new();
    let upper_eb = exception_block.to_ascii_uppercase();
    let mut search_from = 0;
    while let Some(rel) = upper_eb[search_from..].find("WHEN") {
        let start = search_from + rel + "WHEN".len();
        // Read identifiers until THEN.
        let after = &upper_eb[start..];
        let then_pos = after.find("THEN").unwrap_or(after.len());
        let conditions = &after[..then_pos];
        for name in conditions.split(|c: char| c == ',' || c == '|' || c == 'O' && false) {
            // Split conservatively on commas, tabs, OR (matched as an identifier).
            for token in name.split_whitespace() {
                let cleaned: String = token
                    .chars()
                    .filter(|c| c.is_ascii_alphanumeric() || *c == '_')
                    .collect();
                if cleaned.is_empty() || cleaned.eq_ignore_ascii_case("OR") {
                    continue;
                }
                codes.push(cleaned.to_lowercase());
            }
        }
        search_from = start + then_pos.min(after.len());
        if search_from >= upper_eb.len() {
            break;
        }
    }
    (main, codes)
}

/// Return true if `error_message` matches any of the named PG exception
/// conditions in `codes`. Only the codes drizzle-kit actually emits
/// are mapped — others fall through (safer to surface unknown errors
/// than to silently swallow them).
fn pg_exception_matches(codes: &[String], error_message: &str) -> bool {
    if codes.is_empty() {
        return false;
    }
    let lower = error_message.to_ascii_lowercase();
    for code in codes {
        let matches = match code.as_str() {
            // "already exists" family (drizzle's idempotent ADD)
            "duplicate_object" | "duplicate_table" | "duplicate_column" | "duplicate_database" | "duplicate_schema"
            | "duplicate_function" | "duplicate_alias" => lower.contains("already exists"),
            "unique_violation" => lower.contains("unique") || lower.contains("duplicate key"),
            "undefined_table" | "undefined_object" | "undefined_column" | "undefined_function" => {
                lower.contains("does not exist") || lower.contains("not found")
            }
            // OTHERS catches everything — drizzle uses this rarely.
            "others" => true,
            _ => false,
        };
        if matches {
            return true;
        }
    }
    false
}

/// Scan a DO-block body for PL/pgSQL control-flow tokens we can't
/// interpret. Returns `Some(keyword)` when one is found, so the
/// caller can put the offending token into the error message.
///
/// Kept simple on purpose — whole-word, case-insensitive substring
/// check. Will miss the occasional corner case (`IF` inside a string
/// literal), but those are false positives that lead to a clear
/// error rather than silent data issues.
fn pg_detect_plpgsql(body: &str) -> Option<&'static str> {
    let upper = body.to_ascii_uppercase();
    // KanttBan #14 (v3.30.1): strip the SQL DDL idioms `IF NOT EXISTS`
    // / `IF EXISTS` before scanning. drizzle-kit emits
    //   DO $$ BEGIN CREATE TABLE IF NOT EXISTS … END $$;
    // and the literal `IF` inside that DDL would otherwise trip the
    // PL/pgSQL `IF` detector below — even though the body is plain SQL.
    let scrubbed = upper.replace(" IF NOT EXISTS ", " ").replace(" IF EXISTS ", " ");
    // Whole-word matches — bracket each keyword with a non-alnum
    // lookalike by padding the haystack.
    let padded = format!(" {scrubbed} ");
    // Note: `EXCEPTION` intentionally absent — handled via
    // `pg_split_exception` upstream. drizzle-kit emits idempotent
    // ALTERs as `DO $$ BEGIN <stmt>; EXCEPTION WHEN duplicate_object
    // THEN null; END $$;` which we now run.
    const KEYWORDS: &[&str] = &[
        " DECLARE ",
        " IF ",
        " LOOP ",
        " FOR ",
        " WHILE ",
        " RAISE ",
        " RETURN ",
        " PERFORM ",
        " EXIT ",
        " CONTINUE ",
    ];
    for kw in KEYWORDS {
        if padded.contains(kw) {
            // Strip the leading/trailing spaces for the error message.
            let trimmed: &str = kw.trim();
            return Some(match trimmed {
                "DECLARE" => "DECLARE",
                "IF" => "IF",
                "LOOP" => "LOOP",
                "FOR" => "FOR",
                "WHILE" => "WHILE",
                "RAISE" => "RAISE",
                "RETURN" => "RETURN",
                "PERFORM" => "PERFORM",
                "EXIT" => "EXIT",
                "CONTINUE" => "CONTINUE",
                _ => "plpgsql",
            });
        }
    }
    // Also catch the `:=` assignment operator.
    if body.contains(":=") {
        return Some(":=");
    }
    None
}

/// Extract the text between the opening and closing `$tag$` markers
/// of a `DO` block. Returns `None` if the delimiters can't be matched.
fn pg_extract_do_block_body(sql: &str) -> Option<&str> {
    // Skip past `DO` and optional `LANGUAGE plpgsql` preamble.
    let trimmed = sql.trim();
    let after_do = trimmed.get(2..)?.trim_start();
    let after_lang = if after_do.to_ascii_uppercase().starts_with("LANGUAGE") {
        let after = after_do.get("LANGUAGE".len()..)?.trim_start();
        // Eat the language identifier
        let ident_end = after.find(|c: char| !(c.is_ascii_alphanumeric() || c == '_'))?;
        after.get(ident_end..)?.trim_start()
    } else {
        after_do
    };

    // Expect `$tag$` opener — tag may be empty.
    if !after_lang.starts_with('$') {
        return None;
    }
    let rest = after_lang.get(1..)?;
    let tag_end = rest.find('$')?;
    let tag = rest.get(..tag_end)?;
    let closer = format!("${tag}$");
    let body_start_abs = sql.len() - rest.len() + tag_end + 1;
    let body_search = sql.get(body_start_abs..)?;
    let close_rel = body_search.find(&closer)?;
    sql.get(body_start_abs..body_start_abs + close_rel)
}

/// Strip optional `BEGIN` / `END` tokens that wrap a PL/pgSQL-style
/// DO body. Keeps the inner statements intact so the splitter can
/// run each one independently.
fn pg_strip_begin_end(body: &str) -> &str {
    let mut s = body.trim();
    if s.to_ascii_uppercase().starts_with("BEGIN") {
        s = s.get(5..).map(str::trim_start).unwrap_or(s);
    }
    // Strip a trailing `END;` or `END`.
    let u = s.to_ascii_uppercase();
    for suffix in ["END;", "END"] {
        if u.ends_with(suffix) {
            s = s.get(..s.len() - suffix.len()).map(str::trim_end).unwrap_or(s);
            break;
        }
    }
    s
}

#[cfg(test)]
mod plpgsql_detection_tests {
    use super::pg_detect_plpgsql;

    #[test]
    fn create_table_if_not_exists_is_plain_sql() {
        // KanttBan #14 (v3.30.1): drizzle-kit wraps DDL in
        //   DO $$ BEGIN CREATE TABLE IF NOT EXISTS … END $$;
        // The IF in IF NOT EXISTS must NOT be flagged as PL/pgSQL.
        assert_eq!(pg_detect_plpgsql("CREATE TABLE IF NOT EXISTS foo (id integer);"), None,);
        assert_eq!(pg_detect_plpgsql("DROP TABLE IF EXISTS foo;"), None,);
        assert_eq!(pg_detect_plpgsql("create index if not exists ix_foo on foo(id);"), None,);
    }

    #[test]
    fn real_plpgsql_if_still_detected() {
        // A genuine PL/pgSQL IF block must still be flagged.
        assert_eq!(pg_detect_plpgsql("IF x > 0 THEN PERFORM 1; END IF;"), Some("IF"),);
    }

    #[test]
    fn other_plpgsql_keywords_still_detected() {
        assert_eq!(pg_detect_plpgsql("LOOP exit; END LOOP;"), Some("LOOP"));
        assert_eq!(pg_detect_plpgsql("RAISE NOTICE 'hi';"), Some("RAISE"));
        assert_eq!(pg_detect_plpgsql("DECLARE v integer;"), Some("DECLARE"));
    }
}

#[cfg(test)]
mod datatype_oid_tests {
    use super::datatype_to_oid;
    use crate::DataType;

    /// Numeric/decimal columns MUST advertise the real `numeric` OID (1700),
    /// not 705/unknown. Regression for the Any2HeliosDB Oracle→Nano data-fidelity
    /// gap: with OID 705, psycopg returns numeric columns as untyped strings, so
    /// `NUMBER(10,2)` values like 98000.0 fail checksum comparison against the
    /// source (which normalizes the decimal). See a2h test-data EMPLOYEES.
    #[test]
    fn numeric_advertises_numeric_oid_not_unknown() {
        assert_eq!(datatype_to_oid(&DataType::Numeric), 1700);
        assert_ne!(datatype_to_oid(&DataType::Numeric), 705);
    }

    /// Other scalar types that previously fell through to 705/unknown.
    #[test]
    fn scalar_types_map_to_canonical_oids() {
        assert_eq!(datatype_to_oid(&DataType::Char(10)), 1042); // bpchar
        assert_eq!(datatype_to_oid(&DataType::Timestamptz), 1184);
        assert_eq!(datatype_to_oid(&DataType::Interval), 1186);
        // Spot-check the already-correct ones didn't regress.
        assert_eq!(datatype_to_oid(&DataType::Int4), 23);
        assert_eq!(datatype_to_oid(&DataType::Int8), 20);
        assert_eq!(datatype_to_oid(&DataType::Float8), 701);
        assert_eq!(datatype_to_oid(&DataType::Timestamp), 1114);
    }
}

// ============================================================================
// SQLSTATE mapping (D4 phase 1)
// ============================================================================

/// Run a synchronous, per-statement database call under `catch_unwind`.
///
/// A panic in the planner/evaluator — e.g. an integer-overflow panic under
/// `overflow-checks = true`, or an allocation-size panic — would otherwise
/// unwind the connection's Tokio task and drop the client (observed as
/// CONN_LOST in the corpus). This guard converts such a panic into a
/// recoverable `XX000` error that flows through the normal `?` /
/// `send_error_for_query` path, so the connection survives and the
/// transaction is marked failed exactly as for any other statement error.
///
/// Cost: `catch_unwind` installs a landing pad but fires **once per
/// statement**, never per row, on a path already dominated by planning and
/// I/O; in the non-panicking case it is a no-op guard, so throughput is
/// unaffected. `parking_lot` locks (used throughout the engine) do not
/// poison, so a caught panic releases its guards cleanly and cannot wedge or
/// cascade into other connections.
pub(crate) fn run_guarded<T>(f: impl FnOnce() -> Result<T>) -> Result<T> {
    match std::panic::catch_unwind(std::panic::AssertUnwindSafe(f)) {
        Ok(result) => result,
        Err(_) => Err(Error::query_execution("internal error while executing statement")),
    }
}

/// W3.3: run one autocommit wire statement, retrying a same-row write conflict
/// (`Error::WriteConflict` → SQLSTATE 40001) against a fresh snapshot with a
/// scheduler-yielding backoff.
///
/// `retriable` is the caller's autocommit gate: it must be `false` whenever the
/// session has an open explicit transaction, so a 40001 there surfaces
/// untouched and the client owns the retry (the PostgreSQL contract, design
/// §5.2). Each attempt re-invokes `op`, which rebuilds a fresh implicit
/// transaction with a new snapshot (`next_timestamp`); a rolled-back failed
/// attempt leaves no partial effect, so a retried INSERT may skip durable
/// sequence values but never double-applies rows (design §5.1/§5.5).
///
/// The wait between attempts is `tokio::time::sleep(..).await`, NEVER
/// `std::thread::sleep`: a synchronous sleep on a tokio worker re-pins it and
/// reproduces the worker-starvation livelock the retry exists to break (design
/// §5.4 sub-case 2a). Deadlocks (`Error::deadlock` → 40P01) and every other
/// error are NOT retried — `StatementRetryPolicy::retry_after` keys only on
/// `WriteConflict` — so a true deadlock cannot be spun into a livelock. A free
/// function (not a `&self` method) so the returned future borrows no `&self`
/// across the await and stays `Send` for the spawned connection task; each
/// attempt is panic-guarded exactly as the un-retried call sites were.
pub(crate) async fn run_with_retry<T>(
    policy: crate::storage::StatementRetryPolicy,
    retriable: bool,
    mut op: impl FnMut() -> Result<T>,
) -> Result<T> {
    // Fast path: retry disabled (the default) or inside an explicit txn — one
    // guarded attempt, identical to the pre-W3.3 call sites.
    if !retriable || !policy.is_enabled() {
        return run_guarded(|| op());
    }
    let mut retries_done: u32 = 0;
    loop {
        let outcome = run_guarded(|| op());
        // Extract the backoff (a Copy Duration) and drop `outcome` BEFORE the
        // await so nothing non-trivial is held across the yield point.
        let backoff = match &outcome {
            Err(e) => policy.retry_after(retries_done, e),
            Ok(_) => None,
        };
        match backoff {
            Some(delay) => {
                retries_done += 1;
                drop(outcome);
                tokio::time::sleep(delay).await;
            }
            None => return outcome,
        }
    }
}

/// Map an [`Error`] to the SQLSTATE the wire reports (D4 phase 1).
///
/// Pattern-matches the engine's existing message shapes (same approach as
/// the constraint sniffing that predates it); codes come from the shared
/// constants in [`crate::network::protocol::sqlstate`]. Phase 2 will carry
/// structured codes from the raise sites instead of sniffing text.
pub(crate) fn sqlstate_for_error(error: &Error) -> &'static str {
    use crate::network::protocol::sqlstate;

    match error {
        Error::ConstraintViolation(message) => {
            let lower = message.to_ascii_lowercase();
            if lower.contains("duplicate") || lower.contains("unique") {
                sqlstate::UNIQUE_VIOLATION // 23505
            } else if lower.contains("foreign key") {
                sqlstate::FOREIGN_KEY_VIOLATION // 23503
            } else if lower.contains("check") {
                sqlstate::CHECK_VIOLATION // 23514
            } else {
                sqlstate::INTEGRITY_CONSTRAINT_VIOLATION // 23000
            }
        }
        Error::SqlParse(_) => sqlstate::SYNTAX_ERROR,            // 42601
        Error::TypeConversion(_) => sqlstate::DATATYPE_MISMATCH, // 42804
        // Typed write-write conflict (pessimistic row-lock timeout,
        // storage/lock_manager.rs): a retriable serialization failure, like the
        // string-sniffed first-committer-wins path below.
        Error::WriteConflict { .. } => sqlstate::SERIALIZATION_FAILURE, // 40001
        Error::Transaction(message) => {
            let lower = message.to_ascii_lowercase();
            if lower.contains("serialization failure") {
                // First-committer-wins write-write conflict (R0.2):
                // drivers retry on serialization_failure.
                sqlstate::SERIALIZATION_FAILURE // 40001
            } else if lower.contains("deadlock") {
                // LockManager aborts the victim with "Deadlock detected for
                // transaction N" (storage/lock_manager.rs).
                sqlstate::DEADLOCK_DETECTED // 40P01
            } else {
                sqlstate::INVALID_TRANSACTION_STATE // 25000
            }
        }
        Error::Protocol(_) => sqlstate::PROTOCOL_VIOLATION, // 08P01
        Error::QueryTimeout(_) | Error::QueryCancelled(_) => sqlstate::QUERY_CANCELED, // 57014
        // Catalog/executor errors surface as QueryExecution with stable
        // message shapes ("Table 'x' does not exist", "Column 'x' not
        // found", "Table 'x' already exists", "Unknown scalar function").
        Error::QueryExecution(message) => sqlstate_for_query_execution_message(message),
        _ => sqlstate::INTERNAL_ERROR, // XX000
    }
}

/// Classify a `QueryExecution` message into a SQLSTATE.
///
/// Order matters: function and column shapes are checked before table
/// shapes because messages like `Column 'c' not found in table 't'`
/// mention both.
fn sqlstate_for_query_execution_message(message: &str) -> &'static str {
    use crate::network::protocol::sqlstate;

    let lower = message.to_ascii_lowercase();
    let not_found = lower.contains("not found") || lower.contains("does not exist") || lower.contains("doesn't exist");

    if lower.contains("function") && (not_found || lower.contains("unknown")) {
        sqlstate::UNDEFINED_FUNCTION // 42883
    } else if lower.contains("column") && (not_found || lower.contains("unknown")) {
        sqlstate::UNDEFINED_COLUMN // 42703
    } else if (lower.contains("table") || lower.contains("relation")) && lower.contains("already exists") {
        sqlstate::DUPLICATE_TABLE // 42P07
    } else if (lower.contains("table") || lower.contains("relation")) && not_found {
        sqlstate::UNDEFINED_TABLE // 42P01
    } else {
        sqlstate::INTERNAL_ERROR // XX000
    }
}

/// Detail/hint fields for the ErrorResponse, keyed on the mapped SQLSTATE.
///
/// Populated where they help a client act: retry guidance for
/// serialization failures/deadlocks, and the offending name for undefined
/// table/column (extracted from the engine's quoted message).
pub(crate) fn detail_hint_for_error(code: &str, error: &Error) -> (Option<String>, Option<String>) {
    use crate::network::protocol::sqlstate;

    let message = error.to_string();
    match code {
        sqlstate::SERIALIZATION_FAILURE => (
            Some("Another transaction committed a conflicting write first (first-committer-wins).".to_string()),
            Some("Retry the transaction.".to_string()),
        ),
        sqlstate::DEADLOCK_DETECTED => (
            Some("This transaction was chosen as the deadlock victim and rolled back.".to_string()),
            Some("Retry the transaction.".to_string()),
        ),
        sqlstate::UNDEFINED_TABLE => (
            first_single_quoted(&message).map(|name| format!("Table '{name}' does not exist in the catalog.")),
            Some("Check the table name, or create the table first.".to_string()),
        ),
        sqlstate::UNDEFINED_COLUMN => (
            first_single_quoted(&message).map(|name| format!("Column '{name}' does not exist.")),
            Some("Check the column name against the table definition.".to_string()),
        ),
        _ => (None, None),
    }
}

/// First single-quoted token in an engine error message
/// (`Table 'users' does not exist` → `users`).
fn first_single_quoted(message: &str) -> Option<&str> {
    let start = message.find('\'')? + 1;
    let rest = message.get(start..)?;
    let end = rest.find('\'')?;
    rest.get(..end)
}

#[cfg(test)]
mod do_block_split_tests {
    use super::pg_split_exception;

    #[test]
    fn split_handles_newline_before_exception() {
        // KanttBan #14 (v3.30.1 smoke): drizzle-kit emits the
        // EXCEPTION clause on its own line — `\n` before EXCEPTION,
        // which the previous space-bounded needle missed.
        let body = "CREATE TABLE IF NOT EXISTS hdb_test_do (id integer);\n\
                    EXCEPTION WHEN duplicate_object THEN null;";
        let (main, codes) = pg_split_exception(body);
        assert!(main.starts_with("CREATE TABLE"));
        assert!(!main.to_ascii_uppercase().contains("EXCEPTION"));
        assert_eq!(codes, vec!["duplicate_object".to_string()]);
    }

    #[test]
    fn split_still_handles_inline_exception() {
        let body = "ALTER TABLE x ADD COLUMN y INT; EXCEPTION WHEN duplicate_column THEN null;";
        let (main, codes) = pg_split_exception(body);
        assert!(main.starts_with("ALTER TABLE"));
        assert!(!main.to_ascii_uppercase().contains("EXCEPTION"));
        assert_eq!(codes, vec!["duplicate_column".to_string()]);
    }

    #[test]
    fn split_handles_no_exception() {
        let body = "ALTER TABLE x ADD COLUMN y INT;";
        let (main, codes) = pg_split_exception(body);
        assert_eq!(main, body);
        assert!(codes.is_empty());
    }

    #[test]
    fn split_does_not_match_exception_inside_identifier() {
        // `MY_EXCEPTION_TABLE` should not be confused with the EXCEPTION
        // keyword. Standalone EXCEPTION later in the body still wins.
        let body = "SELECT * FROM my_exception_table;\nEXCEPTION WHEN others THEN null;";
        let (main, codes) = pg_split_exception(body);
        assert!(main.starts_with("SELECT"));
        assert!(main.to_ascii_uppercase().contains("MY_EXCEPTION_TABLE"));
        assert!(!main.to_ascii_uppercase().ends_with("EXCEPTION"));
        assert_eq!(codes, vec!["others".to_string()]);
    }
}

#[cfg(test)]
mod failed_transaction_state_tests {
    use super::*;
    use std::sync::Arc;
    use tokio::io::DuplexStream;

    fn test_handler(db: Arc<EmbeddedDatabase>) -> (PgConnectionHandler<DuplexStream>, DuplexStream) {
        let (stream, client) = tokio::io::duplex(4096);
        (
            PgConnectionHandler {
                stream,
                session_id: db
                    .create_wire_session("pg_wire_test")
                    .expect("wire session creation is infallible"),
                database: db.clone(),
                auth_manager: Arc::new(AuthManager::new(AuthMethod::Trust)),
                catalog: PgCatalog::with_database(db),
                prepared_statements: PreparedStatementManager::new(),
                authenticated: true,
                transaction_status: TransactionStatus::Idle,
                buffer: BytesMut::with_capacity(8192),
                username: None,
                scram_state: None,
                write_buf: BytesMut::with_capacity(4096),
                suppress_ready_for_query: false,
                awaiting_sync_after_error: false,
            },
            client,
        )
    }

    #[tokio::test]
    async fn query_error_marks_open_transaction_failed_and_reenables_ready() {
        let db = Arc::new(EmbeddedDatabase::new_in_memory().expect("db"));
        db.begin().expect("begin");
        let (mut handler, _client) = test_handler(Arc::clone(&db));
        handler.transaction_status = TransactionStatus::InTransaction;
        handler.suppress_ready_for_query = true;

        handler
            .send_error_for_query(&Error::constraint_violation("duplicate key"), false)
            .await
            .expect("send error");

        assert_eq!(handler.transaction_status, TransactionStatus::Failed);
        assert!(!handler.suppress_ready_for_query);
        assert!(db.in_transaction());
        handler
            .handle_single_query("BEGIN")
            .await
            .expect("BEGIN recovers failed transaction");
        assert_eq!(handler.transaction_status, TransactionStatus::InTransaction);
        db.rollback().expect("rollback cleanup");
    }

    #[tokio::test]
    async fn direct_error_response_marks_open_transaction_failed() {
        let db = Arc::new(EmbeddedDatabase::new_in_memory().expect("db"));
        db.begin().expect("begin");
        let (mut handler, _client) = test_handler(Arc::clone(&db));
        handler.transaction_status = TransactionStatus::InTransaction;

        handler
            .send_error("ERROR", "22023", "bad setting", None, None)
            .await
            .expect("send error");

        assert_eq!(handler.transaction_status, TransactionStatus::Failed);
        assert!(db.in_transaction());
        db.rollback().expect("rollback cleanup");
    }

    #[tokio::test]
    async fn rollback_clears_failed_transaction_state() {
        let db = Arc::new(EmbeddedDatabase::new_in_memory().expect("db"));
        db.execute("BEGIN").expect("begin");
        let (mut handler, _client) = test_handler(db);
        handler.transaction_status = TransactionStatus::Failed;

        handler
            .handle_single_query("ROLLBACK")
            .await
            .expect("rollback after failed transaction");

        assert_eq!(handler.transaction_status, TransactionStatus::Idle);
    }
}

#[cfg(test)]
mod show_branches_wire_tests {
    use super::*;
    use std::sync::Arc;
    use std::time::Duration;
    use tokio::io::AsyncReadExt;
    use tokio::io::DuplexStream;

    fn test_handler(db: Arc<EmbeddedDatabase>) -> (PgConnectionHandler<DuplexStream>, DuplexStream) {
        let (stream, client) = tokio::io::duplex(4096);
        (
            PgConnectionHandler {
                stream,
                session_id: db
                    .create_wire_session("pg_wire_test")
                    .expect("wire session creation is infallible"),
                database: db.clone(),
                auth_manager: Arc::new(AuthManager::new(AuthMethod::Trust)),
                catalog: PgCatalog::with_database(db),
                prepared_statements: PreparedStatementManager::new(),
                authenticated: true,
                transaction_status: TransactionStatus::Idle,
                buffer: BytesMut::with_capacity(8192),
                username: None,
                scram_state: None,
                write_buf: BytesMut::with_capacity(4096),
                suppress_ready_for_query: false,
                awaiting_sync_after_error: false,
            },
            client,
        )
    }

    fn has_complete_ready_for_query(buf: &[u8]) -> bool {
        let mut pos = 0;
        while pos + 5 <= buf.len() {
            let tag = buf[pos];
            let len = i32::from_be_bytes([buf[pos + 1], buf[pos + 2], buf[pos + 3], buf[pos + 4]]) as usize;
            let end = pos + 1 + len;
            if end > buf.len() {
                return false;
            }
            if tag == b'Z' {
                return true;
            }
            pos = end;
        }
        false
    }

    async fn read_until_ready(mut client: DuplexStream) -> Vec<u8> {
        let mut out = Vec::new();
        let mut chunk = [0_u8; 2048];
        loop {
            let read = tokio::time::timeout(Duration::from_secs(1), client.read(&mut chunk))
                .await
                .expect("timed out waiting for PostgreSQL response")
                .expect("read PostgreSQL response");
            assert!(read > 0, "connection closed before ReadyForQuery; bytes={out:?}");
            out.extend_from_slice(&chunk[..read]);
            if has_complete_ready_for_query(&out) {
                return out;
            }
        }
    }

    fn first_column_text_values(buf: &[u8]) -> Vec<Option<String>> {
        let mut pos = 0;
        let mut values = Vec::new();
        while pos + 5 <= buf.len() {
            let tag = buf[pos];
            let len = i32::from_be_bytes([buf[pos + 1], buf[pos + 2], buf[pos + 3], buf[pos + 4]]) as usize;
            let end = pos + 1 + len;
            if end > buf.len() {
                break;
            }

            if tag == b'D' {
                let mut cur = pos + 5;
                let columns = i16::from_be_bytes([buf[cur], buf[cur + 1]]) as usize;
                cur += 2;
                for idx in 0..columns {
                    let value_len = i32::from_be_bytes([buf[cur], buf[cur + 1], buf[cur + 2], buf[cur + 3]]);
                    cur += 4;
                    if value_len < 0 {
                        if idx == 0 {
                            values.push(None);
                        }
                        continue;
                    }
                    let value_end = cur + value_len as usize;
                    if idx == 0 {
                        values.push(Some(
                            std::str::from_utf8(&buf[cur..value_end])
                                .expect("first column should be UTF-8 text")
                                .to_string(),
                        ));
                    }
                    cur = value_end;
                }
            }

            pos = end;
        }
        values
    }

    #[tokio::test]
    async fn show_branches_simple_query_returns_branch_registry_rows() {
        let db = Arc::new(EmbeddedDatabase::new_in_memory().expect("db"));
        db.execute("CREATE TABLE t(x INT)").expect("create table");
        db.execute("INSERT INTO t VALUES(1),(2),(3)").expect("insert rows");
        db.execute("CREATE BRANCH 'alpha' AS OF NOW").expect("create alpha");
        db.execute("CREATE BRANCH 'beta' AS OF NOW").expect("create beta");

        let (mut handler, client) = test_handler(db);
        handler
            .handle_single_query("SHOW BRANCHES")
            .await
            .expect("SHOW BRANCHES over PostgreSQL wire");

        let response = read_until_ready(client).await;
        let names = first_column_text_values(&response);
        let rendered: Vec<String> = names
            .iter()
            .map(|name| name.clone().unwrap_or_else(|| "<NULL>".to_string()))
            .collect();

        assert!(
            rendered.iter().any(|name| name == "main"),
            "missing main; names={rendered:?}"
        );
        assert!(
            rendered.iter().any(|name| name == "alpha"),
            "missing alpha; names={rendered:?}"
        );
        assert!(
            rendered.iter().any(|name| name == "beta"),
            "missing beta; names={rendered:?}"
        );
        assert!(
            rendered.iter().all(|name| !name.is_empty()),
            "SHOW BRANCHES must not return a blank branch name; names={rendered:?}"
        );
    }
}

#[cfg(test)]
mod sqlstate_mapping_unit_tests {
    //! D4 phase 1: the SQLSTATE mapping, exercised with error values
    //! produced by real SQL against an EmbeddedDatabase wherever the
    //! embedded API can produce the shape (undefined table/column,
    //! duplicate table, unknown function, unique violation,
    //! serialization failure). Deadlock uses the constructor the
    //! LockManager itself uses (a second OS-level session race is not
    //! reproducible deterministically in a unit test).

    use super::{detail_hint_for_error, first_single_quoted, run_guarded, sqlstate_for_error};
    use crate::session::IsolationLevel;
    use crate::{EmbeddedDatabase, Error, Result};

    fn sql_error(db: &EmbeddedDatabase, sql: &str) -> Error {
        db.execute(sql).expect_err("statement must fail")
    }

    /// SELECTs must go through the query path: `execute` does not
    /// evaluate result expressions, which is what surfaces undefined
    /// column errors.
    fn query_error(db: &EmbeddedDatabase, sql: &str) -> Error {
        db.query(sql, &[]).expect_err("query must fail")
    }

    #[test]
    fn undefined_table_maps_to_42p01_with_detail() {
        let db = EmbeddedDatabase::new_in_memory().unwrap();
        let err = query_error(&db, "SELECT * FROM no_such_table");
        let code = sqlstate_for_error(&err);
        assert_eq!(code, "42P01", "got error: {err}");
        let (detail, hint) = detail_hint_for_error(code, &err);
        assert!(
            detail.as_deref().unwrap_or_default().contains("no_such_table"),
            "detail must carry the table name; got {detail:?} for {err}"
        );
        assert!(hint.is_some());
    }

    #[test]
    fn undefined_column_maps_to_42703_with_detail() {
        let db = EmbeddedDatabase::new_in_memory().unwrap();
        db.execute("CREATE TABLE t42703 (id INTEGER PRIMARY KEY)").unwrap();
        // Need a row: projection expressions are evaluated per-row, so an
        // empty table would return Ok([]) instead of the column error.
        db.execute("INSERT INTO t42703 VALUES (1)").unwrap();
        let err = query_error(&db, "SELECT no_such_col FROM t42703");
        let code = sqlstate_for_error(&err);
        assert_eq!(code, "42703", "got error: {err}");
        let (detail, hint) = detail_hint_for_error(code, &err);
        assert!(
            detail.as_deref().unwrap_or_default().contains("no_such_col"),
            "detail must carry the column name; got {detail:?} for {err}"
        );
        assert!(hint.is_some());
    }

    #[test]
    fn duplicate_table_maps_to_42p07() {
        let db = EmbeddedDatabase::new_in_memory().unwrap();
        db.execute("CREATE TABLE t42p07 (id INTEGER PRIMARY KEY)").unwrap();
        let err = sql_error(&db, "CREATE TABLE t42p07 (id INTEGER PRIMARY KEY)");
        assert_eq!(sqlstate_for_error(&err), "42P07", "got error: {err}");
    }

    #[test]
    fn undefined_function_maps_to_42883() {
        let db = EmbeddedDatabase::new_in_memory().unwrap();
        db.execute("CREATE TABLE t42883 (id INTEGER PRIMARY KEY)").unwrap();
        db.execute("INSERT INTO t42883 VALUES (1)").unwrap();
        let err = query_error(&db, "SELECT definitely_not_a_function(id) FROM t42883");
        assert_eq!(sqlstate_for_error(&err), "42883", "got error: {err}");
    }

    #[test]
    fn unique_violation_still_maps_to_23505() {
        // Regression guard: the pre-D4 constraint sniffing must not change.
        let db = EmbeddedDatabase::new_in_memory().unwrap();
        db.execute("CREATE TABLE t23505 (id INTEGER PRIMARY KEY)").unwrap();
        db.execute("INSERT INTO t23505 VALUES (1)").unwrap();
        let err = sql_error(&db, "INSERT INTO t23505 VALUES (1)");
        assert_eq!(sqlstate_for_error(&err), "23505", "got error: {err}");
    }

    #[test]
    fn serialization_failure_maps_to_40001_with_retry_hint() {
        // Real first-committer-wins conflict via two REPEATABLE READ
        // sessions (R0.2).
        let db = EmbeddedDatabase::new_in_memory().unwrap();
        db.execute("CREATE TABLE t40001 (id INTEGER PRIMARY KEY, v INTEGER)")
            .unwrap();
        db.execute("INSERT INTO t40001 VALUES (1, 100)").unwrap();

        let a = db.create_session("a", IsolationLevel::RepeatableRead).unwrap();
        let b = db.create_session("b", IsolationLevel::RepeatableRead).unwrap();
        db.begin_transaction_for_session(a).unwrap();
        db.begin_transaction_for_session(b).unwrap();
        db.execute_in_session(a, "UPDATE t40001 SET v = 101 WHERE id = 1")
            .unwrap();
        db.commit_transaction_for_session(a).unwrap();
        db.execute_in_session(b, "UPDATE t40001 SET v = 150 WHERE id = 1")
            .unwrap();
        let err = db
            .commit_transaction_for_session(b)
            .expect_err("conflicting commit must fail");

        let code = sqlstate_for_error(&err);
        assert_eq!(code, "40001", "got error: {err}");
        let (detail, hint) = detail_hint_for_error(code, &err);
        assert!(detail.is_some());
        assert!(
            hint.as_deref()
                .unwrap_or_default()
                .to_ascii_lowercase()
                .contains("retry"),
            "hint must suggest retrying; got {hint:?}"
        );

        db.destroy_session(a).unwrap();
        db.destroy_session(b).unwrap();
    }

    #[test]
    fn deadlock_maps_to_40p01_with_retry_hint() {
        // Same constructor the LockManager victim path uses
        // (storage/lock_manager.rs: Error::deadlock("Deadlock detected
        // for transaction N")).
        let err = Error::deadlock("Deadlock detected for transaction 7");
        let code = sqlstate_for_error(&err);
        assert_eq!(code, "40P01");
        let (_, hint) = detail_hint_for_error(code, &err);
        assert!(hint
            .as_deref()
            .unwrap_or_default()
            .to_ascii_lowercase()
            .contains("retry"));
    }

    #[test]
    fn write_conflict_maps_to_40001_with_retry_hint() {
        // The typed lock-timeout conflict (storage/lock_manager.rs) is a
        // retriable serialization failure, exactly like first-committer-wins —
        // both surface SQLSTATE 40001 so drivers retry.
        let err = Error::write_conflict("accounts", "42", 7, 9, 1000);
        let code = sqlstate_for_error(&err);
        assert_eq!(code, "40001", "got error: {err}");
        let (detail, hint) = detail_hint_for_error(code, &err);
        assert!(detail.is_some());
        assert!(
            hint.as_deref()
                .unwrap_or_default()
                .to_ascii_lowercase()
                .contains("retry"),
            "hint must suggest retrying; got {hint:?}"
        );
    }

    #[test]
    fn non_serialization_transaction_error_keeps_25000() {
        let err = Error::transaction("no transaction in progress");
        assert_eq!(sqlstate_for_error(&err), "25000");
    }

    #[test]
    fn unknown_query_execution_error_stays_internal() {
        let err = Error::query_execution("something exotic went wrong");
        assert_eq!(sqlstate_for_error(&err), "XX000");
    }

    #[test]
    fn quoted_name_extraction() {
        assert_eq!(first_single_quoted("Table 'users' does not exist"), Some("users"));
        assert_eq!(first_single_quoted("no quotes here"), None);
        assert_eq!(first_single_quoted("dangling 'quote"), None);
    }

    /// The per-statement panic guard (used on every simple-query and
    /// extended/prepared execution entry) must convert a panic in the
    /// planner/evaluator into a recoverable `XX000` error instead of letting
    /// it unwind the connection task and drop the client (the CONN_LOST
    /// class). This is the mechanism both protocol paths rely on for
    /// isolation.
    #[test]
    fn run_guarded_isolates_panic_into_recoverable_internal_error() {
        let result: Result<i32> = run_guarded(|| panic!("simulated planner/evaluator panic"));
        let err = result.expect_err("a panic must be caught and returned as Err, not unwound");
        assert!(
            err.to_string().contains("internal error while executing statement"),
            "guard must map a caught panic to the canonical statement-failure message; got {err}"
        );
        assert_eq!(
            sqlstate_for_error(&err),
            "XX000",
            "the converted panic must report SQLSTATE XX000 (internal_error); got {err}"
        );
    }

    /// The guard must be transparent for non-panicking calls in both the Ok
    /// and Err directions — no value change, no error-mapping change.
    #[test]
    fn run_guarded_passes_ok_and_err_through_unchanged() {
        let ok: Result<i32> = run_guarded(|| Ok(42));
        assert_eq!(ok.expect("Ok must pass through"), 42);

        let passed: Result<i32> = run_guarded(|| Err(Error::query_execution("no such table 'z' does not exist")));
        let err = passed.expect_err("inner Err must pass through");
        assert_eq!(
            sqlstate_for_error(&err),
            "42P01",
            "a passed-through error must keep its own SQLSTATE mapping; got {err}"
        );
    }
}