Source file catalog.ml
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
module S = Granary_store.Store
module Row = Granary_encoding.Row
module Varint = Granary_encoding.Varint
module Schema_fingerprint = Granary_encoding.Schema_fingerprint
module Rowid = Granary_encoding.Rowid
type fk_action =
| FA_no_action
| FA_restrict
| FA_cascade
| FA_set_null
| FA_set_default
let sys_tables_tid : S.tree_id = 0
let sys_columns_tid : S.tree_id = 1
let sys_indexes_tid : S.tree_id = 2
let sys_meta_tid : S.tree_id = 3
let sys_fts_tid : S.tree_id = 4
let sys_views_tid : S.tree_id = 5
let sys_triggers_tid : S.tree_id = 6
let sys_reactive_views_tid : S.tree_id = 8
let sys_mirror_tid : S.tree_id = 7
let sys_fts_rowid_suffix = Bytes.of_string "\x00rowid"
let next_user_tid_key = Bytes.of_string "next_user_tid"
let next_user_tid_init = 16
let next_index_id_key = Bytes.of_string "next_index_id"
let user_version_key = Bytes.of_string "\x00user_version"
(** Read user_version from an already-open RW or RO transaction.
Returns 0 if never set. *)
let read_user_version_tx tx : int64 Lwt.t =
let%lwt v = S.get tx sys_meta_tid user_version_key in
Lwt.return
(match v with
| None -> 0L
| Some b -> Bytes.get_int64_be b 0)
;;
(** Write user_version inside an already-open RW transaction.
Caller is responsible for commit. *)
let write_user_version_tx tx (v : int64) : unit Lwt.t =
let b = Bytes.create 8 in
Bytes.set_int64_be b 0 v;
S.put tx sys_meta_tid user_version_key b
;;
type fk_constraint =
{ fk_local_cols : string list
; fk_parent_table : string
; fk_parent_cols : string list
; fk_on_delete : fk_action
; fk_on_update : fk_action
; fk_deferrable : bool (** false = IMMEDIATE (default), true = INITIALLY DEFERRED *)
}
type pending_fk_kind =
[ `Insert
| `Update
| `Delete
]
type pending_fk_recheck = { recheck : 'm. 'm S.txn -> bool Lwt.t }
type pending_fk_check =
{ pfk_kind : pending_fk_kind
; pfk_table : string
; pfk_rowid : int64
; pfk_message : string
; pfk_recheck : pending_fk_recheck
}
type storage =
| Row of
{ tree_id : S.tree_id
; next_rowid : int64
; without_rowid : bool
; autoincrement : bool
}
| Columnar of Granary_columnar.Col_store.t * S.tree_id
type table_meta =
{ name : string
; storage : storage
; columns : Row.column list
; fk_constraints : fk_constraint list
}
(** #250: sentinel [next_rowid] for an alias table with no rowid seeded yet. A
fresh/empty INTEGER PRIMARY KEY table starts here so the first row — an
explicit id (even <= 0) OR an auto NULL — seeds the counter from the real
value (explicit: id+1; NULL: 1), matching SQLite ([max(existing)+1], empty
-> 1) and [recover_next_rowid]. The live counter is always
[max(rowid)+1 >= Int64.min_int + 1], so it can never collide with this
sentinel (allocation guards the [max_int] overflow that would wrap to it). *)
let empty_next_rowid = Int64.min_int
let row_storage (m : table_meta) =
match m.storage with
| Row { tree_id; next_rowid; without_rowid; autoincrement } ->
tree_id, next_rowid, without_rowid, autoincrement
| Columnar _ -> failwith (Printf.sprintf "table '%s' is a columnar table" m.name)
;;
let is_columnar m =
match m.storage with
| Columnar _ -> true
| Row _ -> false
;;
let tid_of_storage = function
| Row { tree_id; _ } -> tree_id
| Columnar (_, tid) -> tid
;;
type idx_origin =
[ `Implicit_pk
| `Implicit_unique
| `User
]
type index_info =
{ idx_name : string
; idx_table : string
; idx_columns : string list
; idx_unique : bool
; idx_tree_id : S.tree_id
; idx_expr_flags : bool list
; idx_where_sql : string option
; idx_origin : idx_origin
}
type fts_table_meta =
{ fts_name : string
; fts_content_tree : S.tree_id
; fts_index_tree : S.tree_id
; fts_columns : string list
}
module Schema_cache : sig
type t
(** [stamp] re-stamps the #174 tree-tag for a [table_meta]; wired to
[register_tag store]. Every [table_meta] entering the cache is stamped so the
page-stamp stays consistent automatically, and an undo re-stamps the prior. *)
val create : stamp:(table_meta -> unit) -> t
val find_table : t -> string -> table_meta option
val mem_table : t -> string -> bool
val find_index : t -> string -> index_info option
val mem_index : t -> string -> bool
val find_fts : t -> string -> fts_table_meta option
val fold_tables : (string -> table_meta -> 'a -> 'a) -> t -> 'a -> 'a
val fold_fts : (string -> fts_table_meta -> 'a -> 'a) -> t -> 'a -> 'a
val indexes_for_table : t -> table:string -> index_info list
val count_tables : t -> int
val count_indexes : t -> int
val count_fts : t -> int
val put_table : t -> name:string -> table_meta -> unit
val remove_table : t -> name:string -> unit
val put_index : t -> name:string -> index_info -> unit
val remove_index : t -> name:string -> unit
val put_fts : t -> name:string -> fts_table_meta -> unit
val put_table_durable : t -> name:string -> table_meta -> unit
val remove_table_durable : t -> name:string -> unit
val put_index_durable : t -> name:string -> index_info -> unit
val put_fts_durable : t -> name:string -> fts_table_meta -> unit
val bump_rowid : t -> name:string -> table_meta -> unit
val set_rowid_durable : t -> name:string -> table_meta -> unit
val take_rowid_bumped : t -> string list
(** Append an arbitrary reversal to the undo log. The ONLY way an external
owner (the db layer's view/trigger caches, #269) can enroll a rollback in
this ledger so it replays in order with the catalog's own DDL undos at
ROLLBACK / ROLLBACK TO SAVEPOINT. Note this appends to the undo LOG only —
it cannot reach the sealed cache hashtables, so the structural guarantee is
preserved. The closure MUST be idempotent (re-run as a no-op): #280's
[savepoint_rollback] can leave an already-run closure queued for the outer
ROLLBACK. *)
val register_undo : t -> (unit -> unit) -> unit
val commit : t -> unit
val rollback : t -> unit
val savepoint_begin : t -> string -> unit
val savepoint_rollback : t -> string -> unit
val savepoint_release : t -> string -> unit
val mark_poisoned : t -> unit
val is_poisoned : t -> bool
end = struct
type savepoint =
{ sp_name : string
; sp_undo : (unit -> unit) list
; sp_poison : bool
; sp_rowids : (string * int64) list
; sp_columnar : (string * bytes * bool) list
}
type t =
{ tables : (string, table_meta) Hashtbl.t
; indexes : (string, index_info) Hashtbl.t
; indexes_by_table : (string, index_info list) Hashtbl.t
; fts : (string, fts_table_meta) Hashtbl.t
; stamp : table_meta -> unit
; mutable undo : (unit -> unit) list
; mutable savepoints : savepoint list
; mutable poisoned : bool
; rowid_bumped : (string, unit) Hashtbl.t
}
let create ~stamp =
{ tables = Hashtbl.create 16
; indexes = Hashtbl.create 16
; indexes_by_table = Hashtbl.create 16
; fts = Hashtbl.create 8
; stamp
; undo = []
; savepoints = []
; poisoned = false
; rowid_bumped = Hashtbl.create 8
}
;;
let push_undo t f = t.undo <- f :: t.undo
let register_undo = push_undo
let find_table t name = Hashtbl.find_opt t.tables name
let mem_table t name = Hashtbl.mem t.tables name
let find_index t name = Hashtbl.find_opt t.indexes name
let mem_index t name = Hashtbl.mem t.indexes name
let find_fts t name = Hashtbl.find_opt t.fts name
let fold_tables f t acc = Hashtbl.fold f t.tables acc
let fold_fts f t acc = Hashtbl.fold f t.fts acc
let indexes_for_table t ~table =
Option.value (Hashtbl.find_opt t.indexes_by_table table) ~default:[]
;;
let count_tables t = Hashtbl.length t.tables
let count_indexes t = Hashtbl.length t.indexes
let count_fts t = Hashtbl.length t.fts
let put_table t ~name meta =
let prior = Hashtbl.find_opt t.tables name in
Hashtbl.replace t.tables name meta;
t.stamp meta;
push_undo t (fun () ->
match prior with
| Some m ->
Hashtbl.replace t.tables name m;
t.stamp m
| None -> Hashtbl.remove t.tables name)
;;
let remove_table t ~name =
let prior = Hashtbl.find_opt t.tables name in
Hashtbl.remove t.tables name;
push_undo t (fun () ->
match prior with
| Some m ->
Hashtbl.replace t.tables name m;
t.stamp m
| None -> ())
;;
let by_table_add t idx_table info =
let lst = Option.value (Hashtbl.find_opt t.indexes_by_table idx_table) ~default:[] in
Hashtbl.replace t.indexes_by_table idx_table (info :: lst)
;;
let by_table_remove t idx_table idx_name =
match Hashtbl.find_opt t.indexes_by_table idx_table with
| None -> ()
| Some lst ->
(match List.filter (fun i -> not (String.equal i.idx_name idx_name)) lst with
| [] -> Hashtbl.remove t.indexes_by_table idx_table
| lst' -> Hashtbl.replace t.indexes_by_table idx_table lst')
;;
let put_index t ~name info =
let prior = Hashtbl.find_opt t.indexes name in
(match prior with
| Some p -> by_table_remove t p.idx_table name
| None -> ());
Hashtbl.replace t.indexes name info;
by_table_add t info.idx_table info;
push_undo t (fun () ->
by_table_remove t info.idx_table name;
match prior with
| Some i ->
Hashtbl.replace t.indexes name i;
by_table_add t i.idx_table i
| None -> Hashtbl.remove t.indexes name)
;;
let remove_index t ~name =
let prior = Hashtbl.find_opt t.indexes name in
Hashtbl.remove t.indexes name;
(match prior with
| Some p -> by_table_remove t p.idx_table name
| None -> ());
push_undo t (fun () ->
match prior with
| Some i ->
Hashtbl.replace t.indexes name i;
by_table_add t i.idx_table i
| None -> ())
;;
let put_fts t ~name meta =
let prior = Hashtbl.find_opt t.fts name in
Hashtbl.replace t.fts name meta;
push_undo t (fun () ->
match prior with
| Some m -> Hashtbl.replace t.fts name m
| None -> Hashtbl.remove t.fts name)
;;
let put_table_durable t ~name meta =
Hashtbl.replace t.tables name meta;
t.stamp meta
;;
let remove_table_durable t ~name = Hashtbl.remove t.tables name
let put_index_durable t ~name info =
(match Hashtbl.find_opt t.indexes name with
| Some p -> by_table_remove t p.idx_table name
| None -> ());
Hashtbl.replace t.indexes name info;
by_table_add t info.idx_table info
;;
let put_fts_durable t ~name meta = Hashtbl.replace t.fts name meta
let bump_rowid t ~name meta =
Hashtbl.replace t.tables name meta;
Hashtbl.replace t.rowid_bumped name ()
;;
let set_rowid_durable t ~name meta = Hashtbl.replace t.tables name meta
let take_rowid_bumped t =
let names = Hashtbl.fold (fun k _ acc -> k :: acc) t.rowid_bumped [] in
Hashtbl.reset t.rowid_bumped;
names
;;
let commit t =
t.undo <- [];
t.savepoints <- [];
t.poisoned <- false;
Hashtbl.reset t.rowid_bumped
;;
let rollback t =
List.iter (fun f -> f ()) t.undo;
t.undo <- [];
t.savepoints <- [];
t.poisoned <- false
;;
let snapshot_rowids t =
Hashtbl.fold
(fun name (m : table_meta) acc ->
match m.storage with
| Row { next_rowid; _ } -> (name, next_rowid) :: acc
| Columnar _ -> acc)
t.tables
[]
;;
let snapshot_columnar t =
Hashtbl.fold
(fun name (m : table_meta) acc ->
match m.storage with
| Columnar (cs, _) ->
let encoded = Granary_columnar.Col_store.encode cs in
let was_dirty = Granary_columnar.Col_store.dirty cs in
(name, encoded, was_dirty) :: acc
| _ -> acc)
t.tables
[]
;;
let savepoint_begin t name =
t.savepoints
<- { sp_name = name
; sp_undo = t.undo
; sp_poison = t.poisoned
; sp_rowids = snapshot_rowids t
; sp_columnar = snapshot_columnar t
}
:: t.savepoints
;;
let restore_rowids t rowids =
List.iter
(fun (name, next_rowid) ->
match Hashtbl.find_opt t.tables name with
| Some ({ storage = Row r; _ } as m) ->
Hashtbl.replace t.tables name { m with storage = Row { r with next_rowid } }
| _ -> ())
rowids
;;
let restore_columnar t snapshots =
List.iter
(fun (name, encoded, was_dirty) ->
match Hashtbl.find_opt t.tables name with
| Some ({ storage = Columnar (_, tid); columns; _ } as m) ->
let cs = Granary_columnar.Col_store.decode columns encoded in
if was_dirty then Granary_columnar.Col_store.mark_dirty cs;
Hashtbl.replace t.tables name { m with storage = Columnar (cs, tid) }
| _ -> ())
snapshots
;;
let savepoint_rollback t name =
let rec find = function
| [] -> None
| ({ sp_name; _ } as sp) :: older when String.equal sp_name name -> Some (sp, older)
| _ :: rest -> find rest
in
match find t.savepoints with
| None -> ()
| Some (sp, older) ->
let rec run lst =
if lst == sp.sp_undo
then ()
else (
match lst with
| [] -> ()
| f :: tl ->
f ();
run tl)
in
run t.undo;
t.undo <- sp.sp_undo;
t.poisoned <- sp.sp_poison;
restore_rowids t sp.sp_rowids;
restore_columnar t sp.sp_columnar;
t.savepoints <- sp :: older
;;
let savepoint_release t name =
let rec drop = function
| [] -> []
| { sp_name; _ } :: older when String.equal sp_name name -> older
| _ :: rest -> drop rest
in
t.savepoints <- drop t.savepoints
;;
let mark_poisoned t = t.poisoned <- true
let is_poisoned t = t.poisoned
end
type t =
{ store : S.t
; sc : Schema_cache.t
(** #283: the sealed in-memory schema cache (tables/indexes/fts) and its
rollback ledger. The only path to a cache mutation, so a write that does
not record its reversal is unrepresentable. *)
; mutable fk_enforcement : bool
; mutable recursive_triggers : bool
; mutable defer_fks_pragma : bool
(** PRAGMA defer_foreign_keys — when ON, every FK enforcement site treats
the violation as deferred regardless of constraint definition.
Reset to false at every txn boundary by the db layer. *)
; mutable pending_fk_checks : pending_fk_check list
(** Queued deferred FK violations; drained at commit. The list is in
reverse insertion order; drain reverses again before returning. *)
; mutable last_inserted_rowid : int64
(** #243 (T1): rowid of the most recently INSERTed row, set by the executor.
Read by the db layer for [last_insert_rowid()]. Required because with
INTEGER PRIMARY KEY rowid aliases an explicit id need not equal
[next_rowid - 1] (e.g. inserting id=5 after id=100). *)
}
let pp fmt t =
Format.fprintf
fmt
"@[<hv>Catalog.t { tables = %d;@ indexes = %d;@ fts = %d;@ fk_enforcement = %b }@]"
(Schema_cache.count_tables t.sc)
(Schema_cache.count_indexes t.sc)
(Schema_cache.count_fts t.sc)
t.fk_enforcement
;;
let compute_rowid_alias_col (columns : Row.column list) ~without_rowid : int option =
if without_rowid
then None
else (
let indexed = List.mapi (fun i (c : Row.column) -> i, c) columns in
let pks = List.filter (fun (_, (c : Row.column)) -> c.primary_key) indexed in
match pks with
| [ (i, (c : Row.column)) ] when c.ty = Row.Integer && not c.pk_desc -> Some i
| _ -> None)
;;
let rowid_alias_col (m : table_meta) : int option =
match m.storage with
| Columnar _ -> None
| Row { without_rowid; _ } -> compute_rowid_alias_col m.columns ~without_rowid
;;
let encode_table_value m =
let buf = Buffer.create 16 in
(match m.storage with
| Row { tree_id; next_rowid; without_rowid; autoincrement } ->
Varint.encode_uint64 buf (Int64.of_int tree_id);
Varint.encode_int64 buf next_rowid;
Varint.encode_uint64 buf (if without_rowid then 1L else 0L);
Varint.encode_uint64 buf (if autoincrement then 1L else 0L);
Varint.encode_uint64 buf 0L
| Columnar (_, tree_id) ->
Varint.encode_uint64 buf (Int64.of_int tree_id);
Varint.encode_int64 buf empty_next_rowid;
Varint.encode_uint64 buf 0L;
Varint.encode_uint64 buf 0L;
Varint.encode_uint64 buf 1L );
Buffer.to_bytes buf
;;
let decode_table_storage bytes columns =
let tid, off = Varint.decode_uint64 bytes 0 in
let next, off' = Varint.decode_int64 bytes off in
let without_rowid, off'' =
if off' >= Bytes.length bytes
then false, off'
else (
let v, o = Varint.decode_uint64 bytes off' in
Int64.to_int v <> 0, o)
in
let autoincrement, off''' =
if off'' >= Bytes.length bytes
then false, off''
else (
let v, o = Varint.decode_uint64 bytes off'' in
Int64.to_int v <> 0, o)
in
let storage_kind =
if off''' >= Bytes.length bytes
then 0
else (
let v, _ = Varint.decode_uint64 bytes off''' in
Int64.to_int v)
in
match storage_kind with
| 1 ->
let tid = Int64.to_int tid in
let tid = if tid = 0 then -1 else tid in
Columnar (Granary_columnar.Col_store.create columns, tid)
| _ ->
Row { tree_id = Int64.to_int tid; next_rowid = next; without_rowid; autoincrement }
;;
let column_key table_name ordinal =
let tn = Bytes.of_string table_name in
let ord = Bytes.create 8 in
for i = 0 to 7 do
Bytes.set_uint8 ord i ((ordinal lsr ((7 - i) * 8)) land 0xFF)
done;
Bytes.cat (Bytes.cat tn (Bytes.of_string "\x00")) ord
;;
let column_prefix table_name =
Bytes.cat (Bytes.of_string table_name) (Bytes.of_string "\x00")
;;
let type_tag = function
| Row.Integer -> 1
| Row.Text -> 2
| Row.Real -> 3
| Row.Blob -> 4
;;
let type_of_tag = function
| 1 -> Row.Integer
| 2 -> Row.Text
| 3 -> Row.Real
| 4 -> Row.Blob
| n -> failwith (Printf.sprintf "unknown column type tag %d" n)
;;
let default_value_tag : Row.default_value -> int = function
| Row.DV_null -> 0
| Row.DV_int _ -> 1
| Row.DV_real _ -> 2
| Row.DV_text _ -> 3
| Row.DV_blob _ -> 4
| Row.DV_current_timestamp -> 5
| Row.DV_current_date -> 6
| Row.DV_current_time -> 7
;;
let encode_default_value buf (dv : Row.default_value) =
Varint.encode_uint64 buf (Int64.of_int (default_value_tag dv));
match dv with
| Row.DV_null -> ()
| Row.DV_int n ->
let tmp = Bytes.create 8 in
for k = 0 to 7 do
Bytes.set_uint8
tmp
k
(Int64.to_int (Int64.logand (Int64.shift_right_logical n (k * 8)) 0xFFL))
done;
Buffer.add_bytes buf tmp
| Row.DV_real f ->
let bits = Int64.bits_of_float f in
let tmp = Bytes.create 8 in
for k = 0 to 7 do
Bytes.set_uint8
tmp
k
(Int64.to_int (Int64.logand (Int64.shift_right_logical bits (k * 8)) 0xFFL))
done;
Buffer.add_bytes buf tmp
| Row.DV_text s ->
Varint.encode_uint64 buf (Int64.of_int (String.length s));
Buffer.add_string buf s
| Row.DV_blob b ->
Varint.encode_uint64 buf (Int64.of_int (Bytes.length b));
Buffer.add_bytes buf b
| Row.DV_current_timestamp | Row.DV_current_date | Row.DV_current_time ->
()
;;
let decode_default_value bytes off =
let tag, off = Varint.decode_uint64 bytes off in
match Int64.to_int tag with
| 0 -> Row.DV_null, off
| 1 ->
let n = ref Int64.zero in
for k = 0 to 7 do
let byte = Int64.of_int (Bytes.get_uint8 bytes (off + k)) in
n := Int64.logor !n (Int64.shift_left byte (k * 8))
done;
Row.DV_int !n, off + 8
| 2 ->
let bits = ref Int64.zero in
for k = 0 to 7 do
let byte = Int64.of_int (Bytes.get_uint8 bytes (off + k)) in
bits := Int64.logor !bits (Int64.shift_left byte (k * 8))
done;
Row.DV_real (Int64.float_of_bits !bits), off + 8
| 3 ->
let len, off = Varint.decode_uint64 bytes off in
let len = Int64.to_int len in
let s = Bytes.sub_string bytes off len in
Row.DV_text s, off + len
| 4 ->
let len, off = Varint.decode_uint64 bytes off in
let len = Int64.to_int len in
let b = Bytes.sub bytes off len in
Row.DV_blob b, off + len
| 5 -> Row.DV_current_timestamp, off
| 6 -> Row.DV_current_date, off
| 7 -> Row.DV_current_time, off
| n -> failwith (Printf.sprintf "unknown default value tag %d" n)
;;
let encode_column (col : Row.column) =
let buf = Buffer.create 16 in
Varint.encode_uint64 buf (Int64.of_int (type_tag col.ty));
Varint.encode_uint64 buf (Int64.of_int (String.length col.name));
Buffer.add_string buf col.name;
Varint.encode_uint64 buf (if col.not_null then 1L else 0L);
Varint.encode_uint64 buf (if col.primary_key then 1L else 0L);
(match col.default with
| None -> Varint.encode_uint64 buf 0L
| Some dv ->
Varint.encode_uint64 buf 1L;
encode_default_value buf dv);
(match col.check_sql with
| None -> Varint.encode_uint64 buf 0L
| Some sql ->
Varint.encode_uint64 buf 1L;
Varint.encode_uint64 buf (Int64.of_int (String.length sql));
Buffer.add_string buf sql);
(match col.generated_as with
| None -> Varint.encode_uint64 buf 0L
| Some (sql, is_stored) ->
Varint.encode_uint64 buf 1L;
Varint.encode_uint64 buf (if is_stored then 1L else 0L);
Varint.encode_uint64 buf (Int64.of_int (String.length sql));
Buffer.add_string buf sql);
Varint.encode_uint64 buf (if col.pk_desc then 1L else 0L);
Buffer.to_bytes buf
;;
let decode_check_sql bytes off =
if Bytes.length bytes - off <= 0
then None, off
else (
let has_check, off2 = Varint.decode_uint64 bytes off in
if Int64.to_int has_check = 0
then None, off2
else (
let sql_len, off3 = Varint.decode_uint64 bytes off2 in
let sql = Bytes.sub_string bytes off3 (Int64.to_int sql_len) in
Some sql, off3 + Int64.to_int sql_len))
;;
let decode_generated_as bytes off =
if Bytes.length bytes - off <= 0
then None, off
else (
let has_gen, off2 = Varint.decode_uint64 bytes off in
if Int64.to_int has_gen = 0
then None, off2
else (
let is_stored, off3 = Varint.decode_uint64 bytes off2 in
let sql_len, off4 = Varint.decode_uint64 bytes off3 in
let sql = Bytes.sub_string bytes off4 (Int64.to_int sql_len) in
Some (sql, Int64.to_int is_stored = 1), off4 + Int64.to_int sql_len))
;;
let decode_pk_desc bytes off =
if off >= Bytes.length bytes
then false
else (
let flag, _ = Varint.decode_uint64 bytes off in
Int64.to_int flag <> 0)
;;
let decode_column bytes =
let tag, off = Varint.decode_uint64 bytes 0 in
let len, off = Varint.decode_uint64 bytes off in
let name = Bytes.sub_string bytes off (Int64.to_int len) in
let off = off + Int64.to_int len in
let bytes_left = Bytes.length bytes - off in
if bytes_left = 0
then
Row.
{ name
; ty = type_of_tag (Int64.to_int tag)
; not_null = false
; primary_key = false
; pk_desc = false
; default = None
; check_sql = None
; generated_as = None
}
else (
let nn, off = Varint.decode_uint64 bytes off in
let pk, off = Varint.decode_uint64 bytes off in
let has_def, off = Varint.decode_uint64 bytes off in
let default, off =
if Int64.to_int has_def = 0
then None, off
else (
let dv, off' = decode_default_value bytes off in
Some dv, off')
in
let check_sql, final_off = decode_check_sql bytes off in
let generated_as, off = decode_generated_as bytes final_off in
let pk_desc = decode_pk_desc bytes off in
Row.
{ name
; ty = type_of_tag (Int64.to_int tag)
; not_null = Int64.to_int nn <> 0
; primary_key = Int64.to_int pk <> 0
; pk_desc
; default
; check_sql
; generated_as
})
;;
let byte_of_idx_origin : idx_origin -> char = function
| `Implicit_pk -> '\x00'
| `Implicit_unique -> '\x01'
| `User -> '\x02'
;;
let idx_origin_of_byte = function
| 0 -> `Implicit_pk
| 1 -> `Implicit_unique
| _ -> `User
;;
let encode_index_value (idx : index_info) =
let buf = Buffer.create 32 in
Varint.encode_uint64 buf (Int64.of_int (String.length idx.idx_name));
Buffer.add_string buf idx.idx_name;
Varint.encode_uint64 buf (Int64.of_int (String.length idx.idx_table));
Buffer.add_string buf idx.idx_table;
Varint.encode_uint64 buf (Int64.of_int (List.length idx.idx_columns));
List.iter
(fun col ->
Varint.encode_uint64 buf (Int64.of_int (String.length col));
Buffer.add_string buf col)
idx.idx_columns;
Buffer.add_char buf (if idx.idx_unique then '\x01' else '\x00');
Varint.encode_uint64 buf (Int64.of_int idx.idx_tree_id);
Varint.encode_uint64 buf 3L;
Buffer.add_char buf (byte_of_idx_origin idx.idx_origin);
List.iter
(fun is_expr -> Varint.encode_uint64 buf (if is_expr then 1L else 0L))
idx.idx_expr_flags;
(match idx.idx_where_sql with
| None -> Varint.encode_uint64 buf 0L
| Some sql ->
Varint.encode_uint64 buf 1L;
Varint.encode_uint64 buf (Int64.of_int (String.length sql));
Buffer.add_string buf sql);
Buffer.to_bytes buf
;;
let decode_index_ext_fields bytes off2 cols =
let decode_flags_and_where off_start =
let off_ref = ref off_start in
let expr_flags =
List.map
(fun _ ->
let flag, next = Varint.decode_uint64 bytes !off_ref in
off_ref := next;
Int64.to_int flag = 1)
cols
in
let has_where, off4 = Varint.decode_uint64 bytes !off_ref in
let where_sql =
if Int64.to_int has_where = 0
then None
else (
let sql_len, off5 = Varint.decode_uint64 bytes off4 in
Some (Bytes.sub_string bytes off5 (Int64.to_int sql_len)))
in
expr_flags, where_sql
in
if off2 >= Bytes.length bytes
then List.map (fun _ -> false) cols, None, `User
else (
let version, off3 = Varint.decode_uint64 bytes off2 in
match Int64.to_int version with
| 1 ->
let has_where, off4 = Varint.decode_uint64 bytes off3 in
let where_sql =
if Int64.to_int has_where = 0
then None
else (
let sql_len, off5 = Varint.decode_uint64 bytes off4 in
Some (Bytes.sub_string bytes off5 (Int64.to_int sql_len)))
in
List.map (fun _ -> false) cols, where_sql, `User
| 2 ->
let expr_flags, where_sql = decode_flags_and_where off3 in
expr_flags, where_sql, `User
| 3 ->
let origin = idx_origin_of_byte (Bytes.get_uint8 bytes off3) in
let expr_flags, where_sql = decode_flags_and_where (off3 + 1) in
expr_flags, where_sql, origin
| _ -> List.map (fun _ -> false) cols, None, `User)
;;
let decode_index_value bytes =
let name_len, off = Varint.decode_uint64 bytes 0 in
let name_len = Int64.to_int name_len in
let name = Bytes.sub_string bytes off name_len in
let off = off + name_len in
let tbl_len, off = Varint.decode_uint64 bytes off in
let tbl_len = Int64.to_int tbl_len in
let tbl = Bytes.sub_string bytes off tbl_len in
let off = off + tbl_len in
let n_cols, off = Varint.decode_uint64 bytes off in
let n_cols = Int64.to_int n_cols in
let off = ref off in
let cols =
List.init n_cols (fun _ ->
let col_len, next_off = Varint.decode_uint64 bytes !off in
let col = Bytes.sub_string bytes next_off (Int64.to_int col_len) in
off := next_off + Int64.to_int col_len;
col)
in
let unique_byte = Bytes.get_uint8 bytes !off in
let tree_id, off2 = Varint.decode_uint64 bytes (!off + 1) in
let idx_expr_flags, idx_where_sql, idx_origin =
decode_index_ext_fields bytes off2 cols
in
{ idx_name = name
; idx_table = tbl
; idx_columns = cols
; idx_unique = unique_byte <> 0
; idx_tree_id = Int64.to_int tree_id
; idx_expr_flags
; idx_where_sql
; idx_origin
}
;;
let encode_fts_value (m : fts_table_meta) =
let buf = Buffer.create 32 in
Varint.encode_uint64 buf (Int64.of_int m.fts_content_tree);
Varint.encode_uint64 buf (Int64.of_int m.fts_index_tree);
Varint.encode_uint64 buf (Int64.of_int (List.length m.fts_columns));
List.iter
(fun col ->
let b = Bytes.of_string col in
Varint.encode_uint64 buf (Int64.of_int (Bytes.length b));
Buffer.add_bytes buf b)
m.fts_columns;
Buffer.to_bytes buf
;;
let decode_fts_value fts_name bytes =
let ct, off0 = Varint.decode_uint64 bytes 0 in
let it, off1 = Varint.decode_uint64 bytes off0 in
let nc, off2 = Varint.decode_uint64 bytes off1 in
let n = Int64.to_int nc in
let cols = ref [] in
let pos = ref off2 in
for _ = 1 to n do
let len, off = Varint.decode_uint64 bytes !pos in
let col = Bytes.sub_string bytes off (Int64.to_int len) in
cols := col :: !cols;
pos := off + Int64.to_int len
done;
{ fts_name
; fts_content_tree = Int64.to_int ct
; fts_index_tree = Int64.to_int it
; fts_columns = List.rev !cols
}
;;
let read_uint64_key_tx tx key default =
let%lwt v = S.get tx sys_meta_tid key in
match v with
| Some b ->
let n, _ = Varint.decode_uint64 b 0 in
Lwt.return (Int64.to_int n)
| None -> Lwt.return default
;;
let write_uint64_key_tx tx key n =
let buf = Buffer.create 8 in
Varint.encode_uint64 buf (Int64.of_int n);
S.put tx sys_meta_tid key (Buffer.to_bytes buf)
;;
let read_uint64_key store key default =
S.with_ro store @@ fun tx -> read_uint64_key_tx tx key default
;;
let write_uint64_key store key n =
let%lwt tx = S.rw_begin store in
let%lwt () = write_uint64_key_tx tx key n in
S.commit tx
;;
let read_next_user_tid store = read_uint64_key store next_user_tid_key next_user_tid_init
let write_next_user_tid store tid = write_uint64_key store next_user_tid_key tid
let read_next_index_id store = read_uint64_key store next_index_id_key 0
let write_next_index_id store id = write_uint64_key store next_index_id_key id
let read_next_user_tid_tx tx = read_uint64_key_tx tx next_user_tid_key next_user_tid_init
let write_next_user_tid_tx tx tid = write_uint64_key_tx tx next_user_tid_key tid
let read_next_index_id_tx tx = read_uint64_key_tx tx next_index_id_key 0
let write_next_index_id_tx tx id = write_uint64_key_tx tx next_index_id_key id
let next_user_tid_tx tx =
let%lwt tid = read_next_user_tid_tx tx in
let%lwt () = write_next_user_tid_tx tx (tid + 1) in
Lwt.return tid
;;
let index_key id =
let buf = Buffer.create 8 in
Varint.encode_uint64 buf (Int64.of_int id);
Buffer.to_bytes buf
;;
let load_columns tx table_name =
let prefix = column_prefix table_name in
let%lwt cur = S.cursor_open tx sys_columns_tid in
let _sr = S.cursor_seek cur prefix in
let cols = ref [] in
let rec walk () =
match S.cursor_next cur with
| None -> ()
| Some (ck, cv) ->
let plen = Bytes.length prefix in
if Bytes.length ck >= plen && Bytes.equal (Bytes.sub ck 0 plen) prefix
then (
cols := decode_column cv :: !cols;
walk ())
in
walk ();
S.cursor_close cur;
Lwt.return (List.rev !cols)
;;
let load_all_tables store =
let tbl = Hashtbl.create 16 in
S.with_ro store
@@ fun tx ->
let%lwt cur = S.cursor_open tx sys_tables_tid in
let _sr = S.cursor_first cur in
let rec walk_tables () =
match S.cursor_next cur with
| None -> Lwt.return_unit
| Some (k, v) ->
let%lwt () =
Lwt.catch
(fun () ->
let name = Bytes.to_string k in
let%lwt cols = load_columns tx name in
let storage = decode_table_storage v cols in
Hashtbl.replace
tbl
name
{ name; storage; columns = cols; fk_constraints = [] };
Lwt.return_unit)
(fun _exn ->
Lwt.return_unit)
in
walk_tables ()
in
let%lwt () = walk_tables () in
S.cursor_close cur;
Lwt.return tbl
;;
let load_all_indexes store =
let tbl = Hashtbl.create 8 in
S.with_ro store
@@ fun tx ->
let%lwt cur = S.cursor_open tx sys_indexes_tid in
let _sr = S.cursor_first cur in
let rec walk () =
match S.cursor_next cur with
| None -> Lwt.return_unit
| Some (_k, v) ->
let info = decode_index_value v in
Hashtbl.replace tbl info.idx_name info;
walk ()
in
let%lwt () = walk () in
S.cursor_close cur;
Lwt.return tbl
;;
let is_fts_rowid_key k =
let slen = Bytes.length sys_fts_rowid_suffix in
Bytes.length k >= slen
&& Bytes.equal (Bytes.sub k (Bytes.length k - slen) slen) sys_fts_rowid_suffix
;;
let load_all_fts store =
let tbl = Hashtbl.create 4 in
S.with_ro store
@@ fun tx ->
let%lwt cur = S.cursor_open tx sys_fts_tid in
let _sr = S.cursor_first cur in
let rec walk () =
match S.cursor_next cur with
| None -> Lwt.return_unit
| Some (k, v) ->
if is_fts_rowid_key k
then walk ()
else (
(try
let name = Bytes.to_string k in
let meta = decode_fts_value name v in
Hashtbl.replace tbl name meta
with
| Invalid_argument msg ->
Printf.eprintf "warning: skipping corrupt FTS catalog entry (%s)\n%!" msg);
walk ())
in
let%lwt () = walk () in
S.cursor_close cur;
Lwt.return tbl
;;
let load_all_pairs_in_tx tx tid =
let%lwt cur = S.cursor_open tx tid in
let _sr = S.cursor_first cur in
let pairs = ref [] in
let rec walk () =
match S.cursor_next cur with
| None -> ()
| Some (k, v) ->
pairs := (Bytes.to_string k, Bytes.to_string v) :: !pairs;
walk ()
in
walk ();
S.cursor_close cur;
Lwt.return (List.rev !pairs)
;;
let load_all_views_in_tx (tx : _ S.txn) = load_all_pairs_in_tx tx sys_views_tid
let load_all_views store = S.with_ro store load_all_views_in_tx
let borrow_or_autocommit ?txn store f =
match txn with
| Some tx -> f tx
| None ->
let%lwt tx = S.rw_begin store in
let%lwt () = f tx in
S.commit tx
;;
let persist_view ?txn store ~name ~sql =
borrow_or_autocommit ?txn store (fun tx ->
S.put tx sys_views_tid (Bytes.of_string name) (Bytes.of_string sql))
;;
let remove_view ?txn store ~name =
borrow_or_autocommit ?txn store (fun tx ->
S.del tx sys_views_tid (Bytes.of_string name))
;;
let load_all_reactive_views_in_tx (tx : _ S.txn) =
load_all_pairs_in_tx tx sys_reactive_views_tid
;;
let load_all_reactive_views store = S.with_ro store load_all_reactive_views_in_tx
let persist_reactive_view ?txn store ~name ~sql =
borrow_or_autocommit ?txn store (fun tx ->
S.put tx sys_reactive_views_tid (Bytes.of_string name) (Bytes.of_string sql))
;;
let remove_reactive_view ?txn store ~name =
borrow_or_autocommit ?txn store (fun tx ->
S.del tx sys_reactive_views_tid (Bytes.of_string name))
;;
let load_all_triggers_in_tx (tx : _ S.txn) = load_all_pairs_in_tx tx sys_triggers_tid
let load_all_triggers store = S.with_ro store load_all_triggers_in_tx
let persist_trigger ?txn store ~name ~sql =
borrow_or_autocommit ?txn store (fun tx ->
S.put tx sys_triggers_tid (Bytes.of_string name) (Bytes.of_string sql))
;;
let remove_trigger ?txn store ~name =
borrow_or_autocommit ?txn store (fun tx ->
S.del tx sys_triggers_tid (Bytes.of_string name))
;;
let fk_meta_key table_name = Bytes.of_string ("fk:" ^ table_name)
let fk_action_to_string = function
| FA_no_action -> "no_action"
| FA_restrict -> "restrict"
| FA_cascade -> "cascade"
| FA_set_null -> "set_null"
| FA_set_default -> "set_default"
;;
let fk_action_of_string = function
| "no_action" -> FA_no_action
| "restrict" -> FA_restrict
| "cascade" -> FA_cascade
| "set_null" -> FA_set_null
| "set_default" -> FA_set_default
| s -> failwith ("catalog: unknown fk_action: " ^ s)
;;
let encode_fks fks =
let lines =
List.map
(fun fk ->
String.concat
"\t"
[ String.concat "," fk.fk_local_cols
; fk.fk_parent_table
; String.concat "," fk.fk_parent_cols
; fk_action_to_string fk.fk_on_delete
; fk_action_to_string fk.fk_on_update
; (if fk.fk_deferrable then "1" else "0")
])
fks
in
Bytes.of_string (String.concat "\n" lines)
;;
let decode_fks bytes =
let s = Bytes.to_string bytes in
if s = ""
then []
else
List.filter_map
(fun line ->
match String.split_on_char '\t' line with
| [ lc; pt; pc ] ->
Some
{ fk_local_cols = String.split_on_char ',' lc
; fk_parent_table = pt
; fk_parent_cols = String.split_on_char ',' pc
; fk_on_delete = FA_restrict
; fk_on_update = FA_restrict
; fk_deferrable = false
}
| [ lc; pt; pc; od; ou ] ->
Some
{ fk_local_cols = String.split_on_char ',' lc
; fk_parent_table = pt
; fk_parent_cols = String.split_on_char ',' pc
; fk_on_delete = fk_action_of_string od
; fk_on_update = fk_action_of_string ou
; fk_deferrable = false
}
| [ lc; pt; pc; od; ou; def ] ->
Some
{ fk_local_cols = String.split_on_char ',' lc
; fk_parent_table = pt
; fk_parent_cols = String.split_on_char ',' pc
; fk_on_delete = fk_action_of_string od
; fk_on_update = fk_action_of_string ou
; fk_deferrable = def = "1"
}
| _ -> None)
(String.split_on_char '\n' s)
;;
let fingerprint_of_meta (m : table_meta) =
let without_rowid =
match m.storage with
| Row r -> r.without_rowid
| Columnar _ -> false
in
Schema_fingerprint.compute ~columns:m.columns ~without_rowid
;;
let register_tag store (m : table_meta) =
match m.storage with
| Columnar (_, tid) when tid >= 0 ->
S.set_tree_tag store tid (Schema_fingerprint.low32 (fingerprint_of_meta m))
| Row { tree_id; _ } when tree_id >= 0 ->
S.set_tree_tag store tree_id (Schema_fingerprint.low32 (fingerprint_of_meta m))
| _ -> ()
;;
let mirror_version = 3
let mirror_key (tid : S.tree_id) =
let b = Bytes.create 8 in
Bytes.set_int64_be b 0 (Int64.of_int tid);
b
;;
let encode_mirror_entry (m : table_meta) =
let tree_id, without_rowid, autoincrement, next_rowid =
match m.storage with
| Row { tree_id; without_rowid; autoincrement; next_rowid } ->
tree_id, without_rowid, autoincrement, next_rowid
| Columnar _ -> -1, false, false, empty_next_rowid
in
let buf = Buffer.create 128 in
Varint.encode_uint64 buf (Int64.of_int mirror_version);
Varint.encode_uint64 buf (Int64.of_int (String.length m.name));
Buffer.add_string buf m.name;
Varint.encode_uint64 buf (Int64.of_int tree_id);
Buffer.add_uint8 buf (if without_rowid then 1 else 0);
let fpb = Bytes.create 8 in
Bytes.set_int64_be fpb 0 (fingerprint_of_meta m);
Buffer.add_bytes buf fpb;
Varint.encode_uint64 buf (Int64.of_int (List.length m.columns));
List.iter
(fun col ->
let cb = encode_column col in
Varint.encode_uint64 buf (Int64.of_int (Bytes.length cb));
Buffer.add_bytes buf cb)
m.columns;
let fkb = encode_fks m.fk_constraints in
Varint.encode_uint64 buf (Int64.of_int (Bytes.length fkb));
Buffer.add_bytes buf fkb;
Buffer.add_uint8 buf (if autoincrement then 1 else 0);
if autoincrement
then (
Buffer.add_uint8 buf 1;
Varint.encode_int64 buf next_rowid)
else Buffer.add_uint8 buf 0;
Buffer.to_bytes buf
;;
let decode_mirror_entry bytes : table_meta * int64 =
let ver, off = Varint.decode_uint64 bytes 0 in
let ver = Int64.to_int ver in
let nlen, off = Varint.decode_uint64 bytes off in
let nlen = Int64.to_int nlen in
let name = Bytes.sub_string bytes off nlen in
let off = off + nlen in
let tid, off = Varint.decode_uint64 bytes off in
let without_rowid = Bytes.get_uint8 bytes off <> 0 in
let off = off + 1 in
let fp = Bytes.get_int64_be bytes off in
let off = ref (off + 8) in
let ncols, o = Varint.decode_uint64 bytes !off in
off := o;
let columns =
List.init (Int64.to_int ncols) (fun _ ->
let clen, o = Varint.decode_uint64 bytes !off in
let clen = Int64.to_int clen in
let col = decode_column (Bytes.sub bytes o clen) in
off := o + clen;
col)
in
let fklen, o = Varint.decode_uint64 bytes !off in
let fkb = Bytes.sub bytes o (Int64.to_int fklen) in
let fk_constraints = decode_fks fkb in
off := o + Int64.to_int fklen;
let ai_present = ver >= 2 && !off < Bytes.length bytes in
let autoincrement = ai_present && Bytes.get_uint8 bytes !off <> 0 in
if ai_present then incr off;
let next_rowid =
if ver >= 3 && !off < Bytes.length bytes && Bytes.get_uint8 bytes !off <> 0
then (
incr off;
let v, o = Varint.decode_int64 bytes !off in
off := o;
v)
else empty_next_rowid
in
( { name
; storage =
Row { tree_id = Int64.to_int tid; next_rowid; without_rowid; autoincrement }
; columns
; fk_constraints
}
, fp )
;;
let put_mirror_tx tx (m : table_meta) =
match m.storage with
| Columnar _ -> Lwt.return_unit
| Row { tree_id; _ } ->
S.put tx sys_mirror_tid (mirror_key tree_id) (encode_mirror_entry m)
;;
let put_table_counter_tx tx (m : table_meta) =
let%lwt () = S.put tx sys_tables_tid (Bytes.of_string m.name) (encode_table_value m) in
match m.storage with
| Row { autoincrement = true; _ } -> put_mirror_tx tx m
| _ -> Lwt.return_unit
;;
let del_mirror_tx tx (m : table_meta) =
match m.storage with
| Columnar _ -> Lwt.return_unit
| Row { tree_id; _ } -> S.del tx sys_mirror_tid (mirror_key tree_id)
;;
let load_mirror_entries store =
S.with_ro store
@@ fun tx ->
let%lwt cur = S.cursor_open tx sys_mirror_tid in
let _sr = S.cursor_first cur in
let acc = ref [] in
let rec walk () =
match S.cursor_next cur with
| None -> ()
| Some (_k, v) ->
(try
let m, _fp = decode_mirror_entry v in
acc := m :: !acc
with
| Invalid_argument _ | Failure _ -> ());
walk ()
in
walk ();
S.cursor_close cur;
Lwt.return (List.rev !acc)
;;
let recover_next_rowid store (m : table_meta) : table_meta Lwt.t =
let without_rowid, autoincrement, next_rowid, tree_id =
match m.storage with
| Row { without_rowid; autoincrement; next_rowid; tree_id } ->
without_rowid, autoincrement, next_rowid, tree_id
| Columnar _ -> false, false, empty_next_rowid, -1
in
if without_rowid
then Lwt.return m
else if autoincrement && not (Int64.equal next_rowid empty_next_rowid)
then
Lwt.return m
else
S.with_ro store
@@ fun tx ->
let%lwt cur = S.cursor_open tx tree_id in
let _sr = S.cursor_first cur in
let max_key = ref None in
let rec walk () =
match S.cursor_next cur with
| None -> ()
| Some (k, _) ->
max_key := Some k;
walk ()
in
walk ();
S.cursor_close cur;
let recovered =
match !max_key with
| None -> empty_next_rowid
| Some k -> Int64.add (Rowid.decode k) 1L
in
Lwt.return
{ m with
storage = Row { tree_id; next_rowid = recovered; without_rowid; autoincrement }
}
;;
let read_committed_next_rowid store ~name : int64 Lwt.t =
S.with_ro store
@@ fun tx ->
let%lwt v = S.get tx sys_tables_tid (Bytes.of_string name) in
match v with
| None -> Lwt.return empty_next_rowid
| Some bytes ->
let storage = decode_table_storage bytes [] in
let next =
match storage with
| Row { next_rowid; _ } -> next_rowid
| Columnar _ -> empty_next_rowid
in
Lwt.return next
;;
let load_fk_constraints_raw store table_name =
let key = fk_meta_key table_name in
S.with_ro store
@@ fun tx ->
let%lwt v = S.get tx sys_meta_tid key in
Lwt.return
(match v with
| None -> []
| Some b -> decode_fks b)
;;
let save_fk_constraints ?txn t ~table_name ~fks =
let key = fk_meta_key table_name in
borrow_or_autocommit ?txn t.store (fun tx ->
let%lwt () =
if fks = []
then S.del tx sys_meta_tid key
else S.put tx sys_meta_tid key (encode_fks fks)
in
match Schema_cache.find_table t.sc table_name with
| Some m -> put_mirror_tx tx { m with fk_constraints = fks }
| None -> Lwt.return_unit)
;;
let set_fk_constraints t ~table_name ~fks =
match Schema_cache.find_table t.sc table_name with
| None -> ()
| Some meta ->
Schema_cache.put_table_durable
t.sc
~name:table_name
{ meta with fk_constraints = fks }
;;
let open_ store =
let%lwt cache = load_all_tables store in
let%lwt indexes = load_all_indexes store in
let%lwt fts = load_all_fts store in
let names = Hashtbl.fold (fun k _ acc -> k :: acc) cache [] in
let%lwt () =
Lwt_list.iter_s
(fun name ->
let%lwt fks = load_fk_constraints_raw store name in
(match Hashtbl.find_opt cache name with
| Some meta -> Hashtbl.replace cache name { meta with fk_constraints = fks }
| None -> ());
Lwt.return_unit)
names
in
let%lwt mirror = load_mirror_entries store in
let present_tids =
Hashtbl.fold (fun _ (m : table_meta) acc -> tid_of_storage m.storage :: acc) cache []
in
let reconstructed =
List.filter
(fun (m : table_meta) ->
let tid = tid_of_storage m.storage in
not (List.mem tid present_tids))
mirror
in
List.iter (fun (m : table_meta) -> Hashtbl.replace cache m.name m) reconstructed;
let%lwt () =
Lwt_list.iter_s
(fun (m : table_meta) ->
let%lwt recovered = recover_next_rowid store m in
Hashtbl.replace cache recovered.name recovered;
Lwt.return_unit)
reconstructed
in
List.iter
(fun (m : table_meta) ->
match Hashtbl.find_opt cache m.name with
| Some primary
when (let tid_p = tid_of_storage primary.storage in
let tid_m = tid_of_storage m.storage in
tid_p = tid_m)
&& not (Int64.equal (fingerprint_of_meta primary) (fingerprint_of_meta m))
->
Printf.eprintf
"warning: schema fingerprint mismatch for table %s — primary and redundant \
catalog disagree (possible corruption, #174)\n\
%!"
m.name
| _ -> ())
mirror;
let sc = Schema_cache.create ~stamp:(fun m -> register_tag store m) in
Hashtbl.iter (fun name m -> Schema_cache.put_table_durable sc ~name m) cache;
Hashtbl.iter (fun name i -> Schema_cache.put_index_durable sc ~name i) indexes;
Hashtbl.iter (fun name m -> Schema_cache.put_fts_durable sc ~name m) fts;
Lwt.return
{ store
; sc
; fk_enforcement = false
; recursive_triggers = true
; defer_fks_pragma = false
; pending_fk_checks = []
; last_inserted_rowid = 0L
}
;;
let set_last_inserted_rowid t rowid = t.last_inserted_rowid <- rowid
let last_inserted_rowid t = t.last_inserted_rowid
(** Allocate and return the next available user tree ID, atomically incrementing the counter. *)
let next_user_tid t =
let%lwt tid = read_next_user_tid t.store in
let%lwt () = write_next_user_tid t.store (tid + 1) in
Lwt.return tid
;;
let register_schema_undo t f = Schema_cache.register_undo t.sc f
let mark_schema_txn_poisoned t = Schema_cache.mark_poisoned t.sc
let schema_txn_poisoned t = Schema_cache.is_poisoned t.sc
let commit_schema_changes t = Schema_cache.commit t.sc
let rollback_schema_changes t = Schema_cache.rollback t.sc
let recompute_rowid_counters_after_rollback t =
let names = Schema_cache.take_rowid_bumped t.sc in
Lwt_list.iter_s
(fun name ->
match Schema_cache.find_table t.sc name with
| None -> Lwt.return_unit
| Some m when is_columnar m -> Lwt.return_unit
| Some m ->
let tree_id, _next_rowid, without_rowid, autoincrement = row_storage m in
if without_rowid
then Lwt.return_unit
else if autoincrement
then (
let%lwt committed = read_committed_next_rowid t.store ~name in
Schema_cache.set_rowid_durable
t.sc
~name
{ m with
storage =
Row { tree_id; next_rowid = committed; without_rowid; autoincrement }
};
Lwt.return_unit)
else (
let%lwt recovered = recover_next_rowid t.store m in
Schema_cache.set_rowid_durable t.sc ~name recovered;
Lwt.return_unit))
names
;;
let savepoint_begin_schema t name = Schema_cache.savepoint_begin t.sc name
let savepoint_rollback_schema t name = Schema_cache.savepoint_rollback t.sc name
let savepoint_release_schema t name = Schema_cache.savepoint_release t.sc name
let put_table_rows tx ~name ~columns ~without_rowid ~autoincrement ~tid =
let m =
{ name
; storage =
Row { tree_id = tid; next_rowid = empty_next_rowid; without_rowid; autoincrement }
; columns
; fk_constraints = []
}
in
let%lwt () = S.put tx sys_tables_tid (Bytes.of_string name) (encode_table_value m) in
let%lwt () =
Lwt_list.iteri_s
(fun i col -> S.put tx sys_columns_tid (column_key name i) (encode_column col))
columns
in
let%lwt () = put_mirror_tx tx m in
Lwt.return m
;;
let create_table ?txn t ~name ~columns ~without_rowid ~autoincrement =
if Schema_cache.mem_table t.sc name
then failwith (Printf.sprintf "table '%s' already exists" name);
match txn with
| Some tx ->
let%lwt tid = next_user_tid_tx tx in
let%lwt m = put_table_rows tx ~name ~columns ~without_rowid ~autoincrement ~tid in
Schema_cache.put_table t.sc ~name m;
Lwt.return tid
| None ->
let%lwt tid = next_user_tid t in
let%lwt tx = S.rw_begin t.store in
let%lwt m = put_table_rows tx ~name ~columns ~without_rowid ~autoincrement ~tid in
let%lwt () = S.commit tx in
Schema_cache.put_table_durable t.sc ~name m;
Lwt.return tid
;;
let create_columnstore_table ?txn t ~name ~columns =
if Schema_cache.mem_table t.sc name
then failwith (Printf.sprintf "table '%s' already exists" name);
let write_rows col_store tid tx =
let m = { name; storage = Columnar (col_store, tid); columns; fk_constraints = [] } in
let%lwt () = S.put tx sys_tables_tid (Bytes.of_string name) (encode_table_value m) in
let%lwt () =
Lwt_list.iteri_s
(fun i col -> S.put tx sys_columns_tid (column_key name i) (encode_column col))
columns
in
Lwt.return m
in
match txn with
| Some tx ->
let%lwt tid = next_user_tid_tx tx in
let col_store = Granary_columnar.Col_store.create columns in
let%lwt m = write_rows col_store tid tx in
Schema_cache.put_table t.sc ~name m;
Lwt.return ()
| None ->
let%lwt tx = S.rw_begin t.store in
let%lwt tid = next_user_tid_tx tx in
let col_store = Granary_columnar.Col_store.create columns in
let%lwt m = write_rows col_store tid tx in
let%lwt () = S.commit tx in
Schema_cache.put_table_durable t.sc ~name m;
Lwt.return ()
;;
let find_table t ~name = Lwt.return (Schema_cache.find_table t.sc name)
let find_table_cached t ~name = Schema_cache.find_table t.sc name
let table_fingerprint t ~name =
Option.map fingerprint_of_meta (Schema_cache.find_table t.sc name)
;;
let fingerprints_by_tree_id t =
Schema_cache.fold_tables
(fun _ (m : table_meta) acc ->
match m.storage with
| Columnar _ -> acc
| Row { tree_id; _ } when tree_id >= 0 -> (tree_id, fingerprint_of_meta m) :: acc
| Row _ -> acc)
t.sc
[]
;;
let mirror_fingerprints t =
S.with_ro t.store
@@ fun tx ->
let%lwt cur = S.cursor_open tx sys_mirror_tid in
let _sr = S.cursor_first cur in
let acc = ref [] in
let rec walk () =
match S.cursor_next cur with
| None -> ()
| Some (_k, v) ->
(try
let m, fp = decode_mirror_entry v in
let tid = tid_of_storage m.storage in
acc := (tid, fp) :: !acc
with
| Invalid_argument _ | Failure _ -> ());
walk ()
in
walk ();
S.cursor_close cur;
Lwt.return !acc
;;
type schema_discrepancy =
| Fingerprint_mismatch of
{ tree_id : S.tree_id
; primary : int64
; mirror : int64
}
| Missing_in_mirror of S.tree_id
| Missing_in_primary of S.tree_id
let verify_against_mirror t =
let%lwt mirror = mirror_fingerprints t in
let primary = fingerprints_by_tree_id t in
let findings = ref [] in
List.iter
(fun (tid, pfp) ->
match List.assoc_opt tid mirror with
| None -> findings := Missing_in_mirror tid :: !findings
| Some mfp ->
if not (Int64.equal pfp mfp)
then
findings
:= Fingerprint_mismatch { tree_id = tid; primary = pfp; mirror = mfp }
:: !findings)
primary;
List.iter
(fun (tid, _) ->
if not (List.mem_assoc tid primary)
then findings := Missing_in_primary tid :: !findings)
mirror;
Lwt.return (List.rev !findings)
;;
let register_ephemeral t (meta : table_meta) =
Schema_cache.put_table_durable t.sc ~name:meta.name meta
;;
let unregister_ephemeral t ~name = Schema_cache.remove_table_durable t.sc ~name
let all_tables t = Schema_cache.fold_tables (fun _ v acc -> v :: acc) t.sc []
let list_tables t = Lwt.return (all_tables t)
let persist_dirty_columnar_stores t (tx : S.rw S.txn) =
let tables = all_tables t in
let%lwt saved =
Lwt_list.filter_map_s
(fun (m : table_meta) ->
match m.storage with
| Columnar (cs, tid) when Granary_columnar.Col_store.dirty cs ->
let%lwt () = Granary_columnar.Persist.save tx tid cs in
Lwt.return_some cs
| _ -> Lwt.return_none)
tables
in
Lwt.return saved
;;
let load_columnar_stores_with_txn t (tx : _ S.txn) =
let tables = all_tables t in
Lwt_list.iter_s
(fun (m : table_meta) ->
match m.storage with
| Columnar (_, tid) ->
let%lwt loaded = Granary_columnar.Persist.load tx tid m.columns in
let cs =
match loaded with
| Some cs -> cs
| None -> Granary_columnar.Col_store.create m.columns
in
let m' = { m with storage = Columnar (cs, tid) } in
Schema_cache.put_table_durable t.sc ~name:m.name m';
Lwt.return_unit
| _ -> Lwt.return_unit)
tables
;;
let load_columnar_stores t store = S.with_ro store (load_columnar_stores_with_txn t)
let alloc_rowid (next_rowid : int64) : int64 * int64 =
let id = if Int64.equal next_rowid empty_next_rowid then 1L else next_rowid in
let next = if Int64.equal id Int64.max_int then Int64.max_int else Int64.add id 1L in
id, next
;;
let next_rowid t ~name =
match Schema_cache.find_table t.sc name with
| None -> failwith (Printf.sprintf "no table '%s'" name)
| Some m ->
let tree_id, nrid, without_rowid, autoincrement = row_storage m in
let id, next = alloc_rowid nrid in
let m' =
{ m with
storage = Row { tree_id; next_rowid = next; without_rowid; autoincrement }
}
in
Schema_cache.set_rowid_durable t.sc ~name m';
let%lwt tx = S.rw_begin t.store in
let%lwt () = put_table_counter_tx tx m' in
let%lwt () = S.commit tx in
Lwt.return id
;;
(** Like [next_rowid] but uses an already-acquired RW transaction.
The txn is NOT committed; the caller is responsible for the commit.
Use this when an explicit transaction is already held to avoid
deadlocking on the store's RW mutex. *)
let next_rowid_in_txn ?(defer_counter = false) t ~name (tx : S.rw S.txn) =
match Schema_cache.find_table t.sc name with
| None -> failwith (Printf.sprintf "no table '%s'" name)
| Some m ->
let tree_id, next_rowid, without_rowid, autoincrement = row_storage m in
if autoincrement && Int64.equal next_rowid Int64.max_int
then Lwt.fail_with "database or disk is full"
else (
let id, next = alloc_rowid next_rowid in
let m' =
{ m with
storage = Row { tree_id; next_rowid = next; without_rowid; autoincrement }
}
in
Schema_cache.bump_rowid t.sc ~name m';
if defer_counter
then Lwt.return id
else (
let%lwt () = put_table_counter_tx tx m' in
Lwt.return id))
;;
(** #243 (T1): after an INSERT supplies an explicit INTEGER PRIMARY KEY value,
advance the autoincrement counter so a later NULL/omitted insert receives a
fresh, non-colliding id (SQLite parity: rowid becomes max(existing)+1).
[at_least] is the smallest value the next allocation must be (= id + 1).
#250: an UNSEEDED table ([empty_next_rowid]) seeds directly from [at_least],
even when that is <= 1 — the explicit id IS the table's max, so a below-1 id
(e.g. -5) correctly makes the next NULL insert -4 instead of 1. A seeded
counter only ever rises and never lowers. [at_least] is always [id+1] with
[id < max_int] (the caller guards the ceiling), so it can never be the empty
sentinel. *)
let bump_next_rowid_in_txn ?(defer_counter = false) t ~name ~at_least (tx : S.rw S.txn) =
match Schema_cache.find_table t.sc name with
| None -> failwith (Printf.sprintf "no table '%s'" name)
| Some m ->
let tree_id, next_rowid, without_rowid, autoincrement = row_storage m in
let unseeded = Int64.equal next_rowid empty_next_rowid in
if (not unseeded) && Int64.compare at_least next_rowid <= 0
then Lwt.return_unit
else (
let m' =
{ m with
storage = Row { tree_id; next_rowid = at_least; without_rowid; autoincrement }
}
in
Schema_cache.bump_rowid t.sc ~name m';
if defer_counter then Lwt.return_unit else put_table_counter_tx tx m')
;;
let max_rowid_in_txn t ~name (tx : 'a S.txn) : int64 option Lwt.t =
match Schema_cache.find_table t.sc name with
| None -> failwith (Printf.sprintf "no table '%s'" name)
| Some m ->
let tree_id =
match m.storage with
| Row { tree_id; _ } -> tree_id
| Columnar _ -> failwith "max_rowid_in_txn on columnar table"
in
let%lwt cur = S.cursor_open tx tree_id in
let _sr = S.cursor_first cur in
let max_key = ref None in
let rec walk () =
match S.cursor_next cur with
| None -> ()
| Some (k, _) ->
max_key := Some k;
walk ()
in
walk ();
S.cursor_close cur;
Lwt.return
(match !max_key with
| None -> None
| Some k -> Some (Rowid.decode k))
;;
let note_rowid_deleted t ~name ~rowid (tx : S.rw S.txn) =
match Schema_cache.find_table t.sc name with
| None -> Lwt.return_unit
| Some m ->
(match m.storage with
| Row { tree_id; next_rowid; without_rowid = false; autoincrement = false }
when (not (Int64.equal next_rowid empty_next_rowid))
&& Int64.equal rowid (Int64.sub next_rowid 1L) ->
let%lwt mx = max_rowid_in_txn t ~name tx in
let recovered =
match mx with
| None -> empty_next_rowid
| Some k -> Int64.add k 1L
in
if Int64.equal recovered next_rowid
then Lwt.return_unit
else (
let m' =
{ m with
storage =
Row
{ tree_id
; next_rowid = recovered
; without_rowid = false
; autoincrement = false
}
}
in
Schema_cache.bump_rowid t.sc ~name m';
put_table_counter_tx tx m')
| _ -> Lwt.return_unit)
;;
let set_next_rowid_in_txn t ~name ~requested (tx : S.rw S.txn) =
match Schema_cache.find_table t.sc name with
| None -> failwith (Printf.sprintf "sqlite_sequence: no such table '%s'" name)
| Some m ->
let tree_id, next_rowid, without_rowid, autoincrement = row_storage m in
if not autoincrement
then
failwith (Printf.sprintf "sqlite_sequence: '%s' is not an AUTOINCREMENT table" name)
else (
let want_next =
if Int64.equal requested Int64.max_int
then Int64.max_int
else Int64.add requested 1L
in
let%lwt clamped =
if
(not (Int64.equal next_rowid empty_next_rowid))
&& Int64.compare want_next next_rowid >= 0
then Lwt.return want_next
else (
let%lwt mx = max_rowid_in_txn t ~name tx in
let floor =
match mx with
| Some k -> Int64.add k 1L
| None -> 1L
in
Lwt.return (if Int64.compare want_next floor > 0 then want_next else floor))
in
let m' =
{ m with
storage = Row { tree_id; next_rowid = clamped; without_rowid; autoincrement }
}
in
Schema_cache.bump_rowid t.sc ~name m';
put_table_counter_tx tx m')
;;
let reset_next_rowid_in_txn t ~name (tx : S.rw S.txn) =
match Schema_cache.find_table t.sc name with
| None -> failwith (Printf.sprintf "sqlite_sequence: no such table '%s'" name)
| Some m ->
let tree_id, _nrid, without_rowid, autoincrement = row_storage m in
if not autoincrement
then
failwith (Printf.sprintf "sqlite_sequence: '%s' is not an AUTOINCREMENT table" name)
else (
let m' =
{ m with
storage =
Row { tree_id; next_rowid = empty_next_rowid; without_rowid; autoincrement }
}
in
Schema_cache.bump_rowid t.sc ~name m';
put_table_counter_tx tx m')
;;
let reset_all_next_rowid_in_txn t (tx : S.rw S.txn) =
let%lwt tables = list_tables t in
Lwt_list.iter_s
(fun (m : table_meta) ->
match m.storage with
| Columnar _ -> Lwt.return_unit
| Row { tree_id; next_rowid = nrid; without_rowid; autoincrement }
when autoincrement && not (Int64.equal nrid empty_next_rowid) ->
let m' =
{ m with
storage =
Row
{ tree_id; next_rowid = empty_next_rowid; without_rowid; autoincrement }
}
in
Schema_cache.bump_rowid t.sc ~name:m.name m';
put_table_counter_tx tx m'
| _ -> Lwt.return_unit)
tables
;;
let flush_dirty_counters_tx t (tx : S.rw S.txn) =
let names = Schema_cache.take_rowid_bumped t.sc in
Lwt_list.iter_s
(fun name ->
match Schema_cache.find_table t.sc name with
| None -> Lwt.return_unit
| Some m -> put_table_counter_tx tx m)
names
;;
let create_index ?txn t ~name ~table ~columns ~unique ~expr_flags ~where_sql ~origin =
if Schema_cache.mem_index t.sc name
then Lwt.return (Error (Printf.sprintf "index '%s' already exists" name))
else (
match Schema_cache.find_table t.sc table with
| None -> Lwt.return (Error (Printf.sprintf "no table '%s'" table))
| Some tm ->
let col_with_flags = List.combine columns expr_flags in
let missing =
List.find_opt
(fun (col, is_expr) ->
(not is_expr)
&& not (List.exists (fun (c : Row.column) -> c.name = col) tm.columns))
col_with_flags
in
(match missing with
| Some (col, _) ->
Lwt.return (Error (Printf.sprintf "no column '%s' on table '%s'" col table))
| None ->
let mk_info tid =
{ idx_name = name
; idx_table = table
; idx_columns = columns
; idx_unique = unique
; idx_tree_id = tid
; idx_expr_flags = expr_flags
; idx_where_sql = where_sql
; idx_origin = origin
}
in
(match txn with
| Some tx ->
let%lwt tid = next_user_tid_tx tx in
let%lwt id = read_next_index_id_tx tx in
let%lwt () = write_next_index_id_tx tx (id + 1) in
let info = mk_info tid in
let%lwt () =
S.put tx sys_indexes_tid (index_key id) (encode_index_value info)
in
Schema_cache.put_index t.sc ~name info;
Lwt.return (Ok info)
| None ->
let%lwt tid = next_user_tid t in
let%lwt id = read_next_index_id t.store in
let%lwt () = write_next_index_id t.store (id + 1) in
let info = mk_info tid in
let%lwt tx = S.rw_begin t.store in
let%lwt () =
S.put tx sys_indexes_tid (index_key id) (encode_index_value info)
in
let%lwt () = S.commit tx in
Schema_cache.put_index_durable t.sc ~name info;
Lwt.return (Ok info))))
;;
let add_column ?txn t ~table_name ~(column : Row.column) =
match Schema_cache.find_table t.sc table_name with
| None -> Lwt.return (Error (Printf.sprintf "table not found: %s" table_name))
| Some meta ->
let exists =
List.exists (fun c -> String.equal c.Row.name column.Row.name) meta.columns
in
if exists
then Lwt.return (Error (Printf.sprintf "column already exists: %s" column.Row.name))
else (
let new_cols = meta.columns @ [ column ] in
let new_meta = { meta with columns = new_cols } in
let ordinal = List.length meta.columns in
let col_k = column_key table_name ordinal in
let col_v = encode_column column in
let%lwt () =
borrow_or_autocommit ?txn t.store (fun tx ->
let%lwt () = S.put tx sys_columns_tid col_k col_v in
put_mirror_tx tx new_meta)
in
(match txn with
| Some _ -> Schema_cache.put_table t.sc ~name:table_name new_meta
| None -> Schema_cache.put_table_durable t.sc ~name:table_name new_meta);
Lwt.return (Ok ()))
;;
let indexes_for_table t ~table = Schema_cache.indexes_for_table t.sc ~table
let find_index t ~name = Schema_cache.find_index t.sc name
let find_index_covering_cols t ~table_name ~col_idxs =
match Schema_cache.find_table t.sc table_name with
| None -> None
| Some meta ->
let n_target = List.length col_idxs in
if n_target = 0
then None
else (
let cols_arr = Array.of_list meta.columns in
let n_cols = Array.length cols_arr in
let target_names_opt =
try
Some
(List.map
(fun i ->
if i < 0 || i >= n_cols then raise Exit else cols_arr.(i).Row.name)
col_idxs)
with
| Exit -> None
in
match target_names_opt with
| None -> None
| Some target_names ->
let candidates = indexes_for_table t ~table:table_name in
List.find_opt
(fun (i : index_info) ->
if i.idx_where_sql <> None
then false
else (
let n_idx = List.length i.idx_columns in
if n_idx < n_target
then false
else (
let prefix_names =
List.filteri (fun k _ -> k < n_target) i.idx_columns
in
let prefix_flags =
let len_flags = List.length i.idx_expr_flags in
if len_flags = 0
then List.init n_target (fun _ -> false)
else List.filteri (fun k _ -> k < n_target) i.idx_expr_flags
in
let no_expr_in_prefix = not (List.exists Fun.id prefix_flags) in
no_expr_in_prefix
&&
try List.for_all2 String.equal prefix_names target_names with
| Invalid_argument _ -> false)))
candidates)
;;
let table_exists t ~name = Schema_cache.mem_table t.sc name
let index_exists t ~name = Schema_cache.mem_index t.sc name
(** Scan _sys_indexes (using the given txn) to find the key for [name].
Returns [None] if not found.
[cursor_first] positions at the first entry (id=0 when it exists).
We inspect that entry immediately via [cursor_next] — which on a
pre-positioned cursor returns the current entry without advancing —
so no entry is ever skipped, including the very first one. *)
let find_index_key_in_txn tx name =
let%lwt cur = S.cursor_open tx sys_indexes_tid in
let _sr = S.cursor_first cur in
let result = ref None in
let rec walk () =
match S.cursor_next cur with
| None -> ()
| Some (k, v) ->
let info = decode_index_value v in
if info.idx_name = name then result := Some k else walk ()
in
walk ();
S.cursor_close cur;
Lwt.return !result
;;
let drop_index t tx ~name =
let%lwt key_opt = find_index_key_in_txn tx name in
let%lwt () =
match key_opt with
| None -> Lwt.return_unit
| Some key -> S.del tx sys_indexes_tid key
in
Schema_cache.remove_index t.sc ~name;
Lwt.return_unit
;;
let drop_table t tx ~name =
let%lwt () =
match Schema_cache.find_table t.sc name with
| Some m -> del_mirror_tx tx m
| None -> Lwt.return_unit
in
let%lwt () = S.del tx sys_tables_tid (Bytes.of_string name) in
let n_cols =
match Schema_cache.find_table t.sc name with
| None -> 0
| Some m -> List.length m.columns
in
let%lwt () =
Lwt_list.iter_s
(fun i -> S.del tx sys_columns_tid (column_key name i))
(List.init n_cols (fun i -> i))
in
let idx_list = indexes_for_table t ~table:name in
let%lwt () =
Lwt_list.iter_s
(fun (idx : index_info) -> drop_index t tx ~name:idx.idx_name)
idx_list
in
Schema_cache.remove_table t.sc ~name;
Lwt.return_unit
;;
let rekey_table_columns tx ~old_name ~new_name ~n_cols =
let rec loop i =
if i >= n_cols
then Lwt.return (Ok ())
else (
let old_k = column_key old_name i in
let new_k = column_key new_name i in
let%lwt bytes_opt = S.get tx sys_columns_tid old_k in
match bytes_opt with
| None ->
Lwt.return
(Error
(Printf.sprintf "catalog corrupt: column %d missing for table %s" i old_name))
| Some bytes ->
let%lwt () = S.del tx sys_columns_tid old_k in
let%lwt () = S.put tx sys_columns_tid new_k bytes in
loop (i + 1))
in
loop 0
;;
let finish_rename t tx ~txn ~old_name ~new_name ~meta =
let%lwt cur = S.cursor_open tx sys_indexes_tid in
let _sr = S.cursor_first cur in
let idx_updates = ref [] in
let rec scan_idxs () =
match S.cursor_next cur with
| None -> ()
| Some (k, v) ->
let info = decode_index_value v in
if String.equal info.idx_table old_name
then idx_updates := (k, info) :: !idx_updates;
scan_idxs ()
in
scan_idxs ();
S.cursor_close cur;
let%lwt () =
Lwt_list.iter_s
(fun (k, (info : index_info)) ->
let new_info = { info with idx_table = new_name } in
S.put tx sys_indexes_tid k (encode_index_value new_info))
!idx_updates
in
let%lwt () = put_mirror_tx tx { meta with name = new_name } in
let%lwt () =
match txn with
| Some _ -> Lwt.return_unit
| None -> S.commit tx
in
let to_update =
List.map
(fun (v : index_info) -> v.idx_name, v)
(Schema_cache.indexes_for_table t.sc ~table:old_name)
in
(match txn with
| Some _ ->
Schema_cache.remove_table t.sc ~name:old_name;
Schema_cache.put_table t.sc ~name:new_name { meta with name = new_name };
List.iter
(fun (k, v) -> Schema_cache.put_index t.sc ~name:k { v with idx_table = new_name })
to_update
| None ->
Schema_cache.remove_table_durable t.sc ~name:old_name;
Schema_cache.put_table_durable t.sc ~name:new_name { meta with name = new_name };
List.iter
(fun (k, v) ->
Schema_cache.put_index_durable t.sc ~name:k { v with idx_table = new_name })
to_update);
Lwt.return (Ok ())
;;
let rename_table ?txn t ~old_name ~new_name =
match Schema_cache.find_table t.sc old_name with
| None -> Lwt.return (Error (Printf.sprintf "table not found: %s" old_name))
| Some meta ->
if Schema_cache.mem_table t.sc new_name
then Lwt.return (Error (Printf.sprintf "table already exists: %s" new_name))
else (
let body tx =
let%lwt () = S.del tx sys_tables_tid (Bytes.of_string old_name) in
let%lwt () =
S.put tx sys_tables_tid (Bytes.of_string new_name) (encode_table_value meta)
in
let%lwt col_result =
rekey_table_columns tx ~old_name ~new_name ~n_cols:(List.length meta.columns)
in
match col_result with
| Error msg -> Lwt.return (Error msg)
| Ok () -> finish_rename t tx ~txn ~old_name ~new_name ~meta
in
match txn with
| Some tx -> body tx
| None ->
let%lwt tx = S.rw_begin t.store in
let%lwt r = body tx in
(match r with
| Ok () -> Lwt.return (Ok ())
| Error msg ->
let%lwt () = S.rollback tx in
Lwt.return (Error msg)))
;;
let rename_column ?txn t ~table_name ~old_col ~new_col =
match Schema_cache.find_table t.sc table_name with
| None -> Lwt.return (Error (Printf.sprintf "table not found: %s" table_name))
| Some meta ->
(match List.find_index (fun c -> String.equal c.Row.name old_col) meta.columns with
| None -> Lwt.return (Error (Printf.sprintf "column not found: %s" old_col))
| Some i ->
let col_k = column_key table_name i in
let body tx =
let%lwt bytes_opt = S.get tx sys_columns_tid col_k in
match bytes_opt with
| None -> Lwt.return (Error "column entry missing from catalog")
| Some old_bytes ->
let old_col_rec = decode_column old_bytes in
let new_col_rec = { old_col_rec with Row.name = new_col } in
let%lwt () = S.put tx sys_columns_tid col_k (encode_column new_col_rec) in
let new_columns =
List.mapi
(fun j c -> if j = i then { c with Row.name = new_col } else c)
meta.columns
in
let new_meta = { meta with columns = new_columns } in
let%lwt () = put_mirror_tx tx new_meta in
Lwt.return (Ok new_meta)
in
let finalize new_meta =
match txn with
| Some _ -> Schema_cache.put_table t.sc ~name:table_name new_meta
| None -> Schema_cache.put_table_durable t.sc ~name:table_name new_meta
in
(match txn with
| Some tx ->
(match%lwt body tx with
| Error msg -> Lwt.return (Error msg)
| Ok new_meta ->
finalize new_meta;
Lwt.return (Ok ()))
| None ->
let%lwt tx = S.rw_begin t.store in
(match%lwt body tx with
| Error msg ->
let%lwt () = S.rollback tx in
Lwt.return (Error msg)
| Ok new_meta ->
let%lwt () = S.commit tx in
finalize new_meta;
Lwt.return (Ok ()))))
;;
let drop_column ?txn t ~table_name ~col_name =
match Schema_cache.find_table t.sc table_name with
| None -> Lwt.return (Error (Printf.sprintf "table not found: %s" table_name))
| Some meta ->
let rec find_idx i = function
| [] -> None
| (c : Row.column) :: _ when String.equal c.name col_name -> Some i
| _ :: rest -> find_idx (i + 1) rest
in
(match find_idx 0 meta.columns with
| None -> Lwt.return (Error (Printf.sprintf "column not found: %s" col_name))
| Some drop_idx ->
let n_cols = List.length meta.columns in
let new_columns = List.filteri (fun i _ -> i <> drop_idx) meta.columns in
let new_meta = { meta with columns = new_columns } in
let%lwt () =
borrow_or_autocommit ?txn t.store (fun tx ->
let%lwt () = S.del tx sys_columns_tid (column_key table_name drop_idx) in
let%lwt () =
let rec shift i =
if i >= n_cols
then Lwt.return_unit
else (
let old_k = column_key table_name i in
let new_k = column_key table_name (i - 1) in
let%lwt bytes_opt = S.get tx sys_columns_tid old_k in
match bytes_opt with
| None -> shift (i + 1)
| Some bytes ->
let%lwt () = S.del tx sys_columns_tid old_k in
let%lwt () = S.put tx sys_columns_tid new_k bytes in
shift (i + 1))
in
shift (drop_idx + 1)
in
put_mirror_tx tx new_meta)
in
(match txn with
| Some _ -> Schema_cache.put_table t.sc ~name:table_name new_meta
| None -> Schema_cache.put_table_durable t.sc ~name:table_name new_meta);
Lwt.return (Ok ()))
;;
let find_fts (t : t) name = Schema_cache.find_fts t.sc name
let list_fts_tables (t : t) =
Schema_cache.fold_fts (fun _name meta acc -> meta :: acc) t.sc []
;;
let create_fts_table ?txn (t : t) ~name ~columns : fts_table_meta Lwt.t =
match txn with
| Some tx ->
let%lwt content_tree = next_user_tid_tx tx in
let%lwt index_tree = next_user_tid_tx tx in
let meta =
{ fts_name = name
; fts_content_tree = content_tree
; fts_index_tree = index_tree
; fts_columns = columns
}
in
let%lwt () = S.put tx sys_fts_tid (Bytes.of_string name) (encode_fts_value meta) in
Schema_cache.put_fts t.sc ~name meta;
Lwt.return meta
| None ->
let%lwt content_tree = next_user_tid t in
let%lwt index_tree = next_user_tid t in
let meta =
{ fts_name = name
; fts_content_tree = content_tree
; fts_index_tree = index_tree
; fts_columns = columns
}
in
let%lwt tx = S.rw_begin t.store in
let key = Bytes.of_string name in
let value = encode_fts_value meta in
let%lwt () = S.put tx sys_fts_tid key value in
let%lwt () = S.commit tx in
Schema_cache.put_fts_durable t.sc ~name meta;
Lwt.return meta
;;
(** Rowid counter for FTS tables stored as a separate key in sys_fts_tid.
Key format: name ++ "\x00rowid" (the \x00 prefix sorts before printable ASCII). *)
let fts_rowid_counter_key name = Bytes.cat (Bytes.of_string name) sys_fts_rowid_suffix
let read_fts_rowid_counter tx rowid_key =
let%lwt cur_opt = S.get tx sys_fts_tid rowid_key in
match cur_opt with
| None -> Lwt.return 1L
| Some b ->
let n, _ = Varint.decode_int64 b 0 in
Lwt.return n
;;
let write_fts_rowid_counter tx rowid_key v =
let nbuf = Buffer.create 8 in
Varint.encode_int64 nbuf v;
S.put tx sys_fts_tid rowid_key (Buffer.to_bytes nbuf)
;;
let next_fts_rowid_in_txn (_t : t) ~name (tx : S.rw S.txn) : int64 Lwt.t =
let rowid_key = fts_rowid_counter_key name in
let%lwt cur = read_fts_rowid_counter tx rowid_key in
let%lwt () = write_fts_rowid_counter tx rowid_key (Int64.add cur 1L) in
Lwt.return cur
;;
let ensure_fts_rowid_above_in_txn (_t : t) ~name (tx : S.rw S.txn) (rowid : int64)
: unit Lwt.t
=
let rowid_key = fts_rowid_counter_key name in
let%lwt cur = read_fts_rowid_counter tx rowid_key in
let want = Int64.add rowid 1L in
if Int64.compare want cur > 0
then write_fts_rowid_counter tx rowid_key want
else Lwt.return_unit
;;
let get_fk_enforcement t = t.fk_enforcement
let set_fk_enforcement t v = t.fk_enforcement <- v
let get_recursive_triggers t = t.recursive_triggers
let set_recursive_triggers t v = t.recursive_triggers <- v
let get_defer_fks_pragma t = t.defer_fks_pragma
let set_defer_fks_pragma t v = t.defer_fks_pragma <- v
let queue_pending_fk_check t check = t.pending_fk_checks <- check :: t.pending_fk_checks
let drain_pending_fk_checks t =
let pending = List.rev t.pending_fk_checks in
t.pending_fk_checks <- [];
pending
;;
let clear_pending_fk_checks t = t.pending_fk_checks <- []
let pending_fk_check_count t = List.length t.pending_fk_checks
let store t = t.store
[@@@ai_disclosure "ai-generated"]
[@@@ai_model "claude-opus-4-7"]
[@@@ai_provider "Anthropic"]