@crvouga/sqlite-mem 0.1.0 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/AGENTS.md +156 -0
- package/COMPATIBILITY-AUDIT.md +7 -9
- package/COMPATIBILITY.md +4 -3
- package/README.md +152 -14
- package/compat/coverage.json +797 -512
- package/compat/requirements.json +1 -1
- package/dist/api/database.d.ts +90 -12
- package/dist/api/statement.d.ts +74 -17
- package/dist/ast/nodes.d.ts +11 -2
- package/dist/constraints/check.d.ts +5 -6
- package/dist/errors/index.d.ts +25 -1
- package/dist/executor/attach.d.ts +3 -4
- package/dist/executor/ddl.d.ts +3 -4
- package/dist/executor/dml.d.ts +4 -4
- package/dist/executor/env.d.ts +9 -11
- package/dist/executor/execute.d.ts +3 -4
- package/dist/executor/pragma.d.ts +3 -4
- package/dist/executor/result.d.ts +9 -5
- package/dist/executor/select.d.ts +4 -5
- package/dist/executor/simple-select.d.ts +3 -4
- package/dist/executor/triggers.d.ts +6 -7
- package/dist/executor/vtable.d.ts +5 -6
- package/dist/expressions/context.d.ts +5 -5
- package/dist/expressions/equals.d.ts +3 -0
- package/dist/expressions/eval.d.ts +9 -4
- package/dist/expressions/index.d.ts +3 -4
- package/dist/expressions/like.d.ts +13 -3
- package/dist/functions/aggregate.d.ts +1 -2
- package/dist/functions/datetime.d.ts +1 -2
- package/dist/functions/extensions.d.ts +1 -2
- package/dist/functions/index.d.ts +8 -9
- package/dist/functions/json.d.ts +3 -4
- package/dist/functions/math.d.ts +1 -2
- package/dist/functions/registry.d.ts +5 -6
- package/dist/functions/scalar.d.ts +2 -3
- package/dist/functions/table-valued.d.ts +3 -4
- package/dist/functions/window.d.ts +1 -2
- package/dist/index.d.ts +33 -12
- package/dist/index.js +900 -120
- package/dist/index.js.map +4 -4
- package/dist/indexes/index.d.ts +17 -4
- package/dist/json/index.d.ts +7 -8
- package/dist/json/jsonb.d.ts +1 -2
- package/dist/json/ops.d.ts +8 -3
- package/dist/json/parse.d.ts +2 -3
- package/dist/json/path.d.ts +1 -2
- package/dist/json/stringify.d.ts +1 -2
- package/dist/json/tvf.d.ts +1 -2
- package/dist/json/types.d.ts +0 -1
- package/dist/lexer/tokenize.d.ts +7 -1
- package/dist/parser/index.d.ts +11 -5
- package/dist/parser/parser.d.ts +3 -3
- package/dist/planner/access.d.ts +13 -6
- package/dist/planner/index.d.ts +1 -2
- package/dist/runtime/clock.d.ts +8 -2
- package/dist/runtime/index.d.ts +3 -4
- package/dist/runtime/options.d.ts +5 -4
- package/dist/runtime/prng.d.ts +12 -1
- package/dist/schema/catalog.d.ts +2 -3
- package/dist/serialization/codec.d.ts +17 -2
- package/dist/serialization/index.d.ts +1 -2
- package/dist/storage/database-state.d.ts +16 -8
- package/dist/storage/index.d.ts +6 -7
- package/dist/storage/row.d.ts +1 -2
- package/dist/storage/table.d.ts +8 -4
- package/dist/transactions/manager.d.ts +2 -3
- package/dist/types/collation.d.ts +1 -2
- package/dist/types/strict.d.ts +6 -0
- package/dist/types/value.d.ts +30 -2
- package/dist/vtable/fts/options.d.ts +0 -1
- package/dist/vtable/fts/porter.d.ts +0 -1
- package/dist/vtable/fts/query.d.ts +0 -1
- package/dist/vtable/fts/table.d.ts +5 -6
- package/dist/vtable/fts/tokenize.d.ts +1 -2
- package/dist/vtable/fts5.d.ts +1 -2
- package/dist/vtable/index.d.ts +2 -3
- package/dist/vtable/modules.d.ts +2 -3
- package/package.json +14 -7
- package/compat/gate-report.json +0 -424
- package/dist/api/database.d.ts.map +0 -1
- package/dist/api/statement.d.ts.map +0 -1
- package/dist/ast/nodes.d.ts.map +0 -1
- package/dist/constraints/check.d.ts.map +0 -1
- package/dist/errors/index.d.ts.map +0 -1
- package/dist/executor/attach.d.ts.map +0 -1
- package/dist/executor/ddl.d.ts.map +0 -1
- package/dist/executor/dml.d.ts.map +0 -1
- package/dist/executor/env.d.ts.map +0 -1
- package/dist/executor/execute.d.ts.map +0 -1
- package/dist/executor/pragma.d.ts.map +0 -1
- package/dist/executor/result.d.ts.map +0 -1
- package/dist/executor/select.d.ts.map +0 -1
- package/dist/executor/simple-select.d.ts.map +0 -1
- package/dist/executor/triggers.d.ts.map +0 -1
- package/dist/executor/vtable.d.ts.map +0 -1
- package/dist/expressions/context.d.ts.map +0 -1
- package/dist/expressions/eval.d.ts.map +0 -1
- package/dist/expressions/index.d.ts.map +0 -1
- package/dist/expressions/like.d.ts.map +0 -1
- package/dist/functions/aggregate.d.ts.map +0 -1
- package/dist/functions/datetime.d.ts.map +0 -1
- package/dist/functions/extensions.d.ts.map +0 -1
- package/dist/functions/index.d.ts.map +0 -1
- package/dist/functions/json.d.ts.map +0 -1
- package/dist/functions/math.d.ts.map +0 -1
- package/dist/functions/registry.d.ts.map +0 -1
- package/dist/functions/scalar.d.ts.map +0 -1
- package/dist/functions/table-valued.d.ts.map +0 -1
- package/dist/functions/window.d.ts.map +0 -1
- package/dist/index.d.ts.map +0 -1
- package/dist/indexes/index.d.ts.map +0 -1
- package/dist/json/index.d.ts.map +0 -1
- package/dist/json/jsonb.d.ts.map +0 -1
- package/dist/json/ops.d.ts.map +0 -1
- package/dist/json/parse.d.ts.map +0 -1
- package/dist/json/path.d.ts.map +0 -1
- package/dist/json/stringify.d.ts.map +0 -1
- package/dist/json/tvf.d.ts.map +0 -1
- package/dist/json/types.d.ts.map +0 -1
- package/dist/lexer/tokenize.d.ts.map +0 -1
- package/dist/parser/index.d.ts.map +0 -1
- package/dist/parser/parser.d.ts.map +0 -1
- package/dist/planner/access.d.ts.map +0 -1
- package/dist/planner/index.d.ts.map +0 -1
- package/dist/runtime/clock.d.ts.map +0 -1
- package/dist/runtime/index.d.ts.map +0 -1
- package/dist/runtime/options.d.ts.map +0 -1
- package/dist/runtime/prng.d.ts.map +0 -1
- package/dist/schema/catalog.d.ts.map +0 -1
- package/dist/serialization/codec.d.ts.map +0 -1
- package/dist/serialization/index.d.ts.map +0 -1
- package/dist/storage/database-state.d.ts.map +0 -1
- package/dist/storage/index.d.ts.map +0 -1
- package/dist/storage/row.d.ts.map +0 -1
- package/dist/storage/table.d.ts.map +0 -1
- package/dist/transactions/manager.d.ts.map +0 -1
- package/dist/types/collation.d.ts.map +0 -1
- package/dist/types/value.d.ts.map +0 -1
- package/dist/vtable/fts/options.d.ts.map +0 -1
- package/dist/vtable/fts/porter.d.ts.map +0 -1
- package/dist/vtable/fts/query.d.ts.map +0 -1
- package/dist/vtable/fts/table.d.ts.map +0 -1
- package/dist/vtable/fts/tokenize.d.ts.map +0 -1
- package/dist/vtable/fts5.d.ts.map +0 -1
- package/dist/vtable/index.d.ts.map +0 -1
- package/dist/vtable/modules.d.ts.map +0 -1
package/compat/coverage.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
|
-
"generatedAt": "2026-08-
|
|
2
|
+
"generatedAt": "2026-08-18T15:54:12.233Z",
|
|
3
3
|
"referenceSqliteVersion": "3.51.0",
|
|
4
4
|
"counts": {
|
|
5
5
|
"total": 3487,
|
|
6
6
|
"notApplicable": 1586,
|
|
7
7
|
"sqlBehavior": 1901,
|
|
8
|
-
"verified":
|
|
9
|
-
"partiallyVerified":
|
|
8
|
+
"verified": 1372,
|
|
9
|
+
"partiallyVerified": 351,
|
|
10
10
|
"unsupported": 178,
|
|
11
11
|
"unknown": 0
|
|
12
12
|
},
|
|
@@ -134,19 +134,22 @@
|
|
|
134
134
|
"notes": ""
|
|
135
135
|
},
|
|
136
136
|
"R-00279-52283-49814-15354-28909-18424-55374-18430": {
|
|
137
|
-
"status": "
|
|
137
|
+
"status": "VERIFIED",
|
|
138
138
|
"evidence": [
|
|
139
139
|
"tests/contract/foreign-keys/",
|
|
140
|
-
"tests/
|
|
140
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
141
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
142
|
+
"tests/fuzz/constraints.test.ts"
|
|
141
143
|
],
|
|
142
|
-
"notes": "
|
|
144
|
+
"notes": ""
|
|
143
145
|
},
|
|
144
146
|
"R-00293-38883-59042-48634-16424-01088-43070-55397": {
|
|
145
|
-
"status": "
|
|
147
|
+
"status": "VERIFIED",
|
|
146
148
|
"evidence": [
|
|
147
|
-
"tests/contract/schema/"
|
|
149
|
+
"tests/contract/schema/strict.test.ts",
|
|
150
|
+
"tests/fuzz/constraints.test.ts"
|
|
148
151
|
],
|
|
149
|
-
"notes": "
|
|
152
|
+
"notes": ""
|
|
150
153
|
},
|
|
151
154
|
"R-00293-64994-39339-33419-11494-64597-05681-15697": {
|
|
152
155
|
"status": "VERIFIED",
|
|
@@ -191,12 +194,14 @@
|
|
|
191
194
|
"notes": "Schema/FK pragmas verified; storage pragmas N/A or no-op"
|
|
192
195
|
},
|
|
193
196
|
"R-00376-39212-00900-22873-65373-47922-05493-41094": {
|
|
194
|
-
"status": "
|
|
197
|
+
"status": "VERIFIED",
|
|
195
198
|
"evidence": [
|
|
196
199
|
"tests/contract/foreign-keys/",
|
|
197
|
-
"tests/
|
|
200
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
201
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
202
|
+
"tests/fuzz/constraints.test.ts"
|
|
198
203
|
],
|
|
199
|
-
"notes": "
|
|
204
|
+
"notes": ""
|
|
200
205
|
},
|
|
201
206
|
"R-00378-15189-28386-10298-40269-01090-46979-64293": {
|
|
202
207
|
"status": "NOT_APPLICABLE",
|
|
@@ -366,11 +371,12 @@
|
|
|
366
371
|
"notes": "FTS3/4 surface expanding toward oracle parity (matchinfo/offsets/snippet/query syntax)"
|
|
367
372
|
},
|
|
368
373
|
"R-00932-23802-62098-12819-52011-48588-05338-32758": {
|
|
369
|
-
"status": "
|
|
374
|
+
"status": "VERIFIED",
|
|
370
375
|
"evidence": [
|
|
371
|
-
"tests/contract/schema/"
|
|
376
|
+
"tests/contract/schema/strict.test.ts",
|
|
377
|
+
"tests/fuzz/constraints.test.ts"
|
|
372
378
|
],
|
|
373
|
-
"notes": "
|
|
379
|
+
"notes": ""
|
|
374
380
|
},
|
|
375
381
|
"R-00971-36933-64386-25480-59601-44057-12316-57384": {
|
|
376
382
|
"status": "NOT_APPLICABLE",
|
|
@@ -378,12 +384,14 @@
|
|
|
378
384
|
"notes": "C API / storage / non-SQL surface (c3ref/complete.html)"
|
|
379
385
|
},
|
|
380
386
|
"R-01060-48788-51013-07543-20121-01838-30879-37400": {
|
|
381
|
-
"status": "
|
|
387
|
+
"status": "VERIFIED",
|
|
382
388
|
"evidence": [
|
|
383
389
|
"tests/contract/foreign-keys/",
|
|
384
|
-
"tests/
|
|
390
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
391
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
392
|
+
"tests/fuzz/constraints.test.ts"
|
|
385
393
|
],
|
|
386
|
-
"notes": "
|
|
394
|
+
"notes": ""
|
|
387
395
|
},
|
|
388
396
|
"R-01080-23340-38639-20728-26521-10375-12428-21631": {
|
|
389
397
|
"status": "NOT_APPLICABLE",
|
|
@@ -681,11 +689,12 @@
|
|
|
681
689
|
"notes": "C API / storage / non-SQL surface (c3ref/aggregate_context.html)"
|
|
682
690
|
},
|
|
683
691
|
"R-01879-24612-45296-09386-15855-45568-07479-46348": {
|
|
684
|
-
"status": "
|
|
692
|
+
"status": "VERIFIED",
|
|
685
693
|
"evidence": [
|
|
686
|
-
"tests/contract/schema/"
|
|
694
|
+
"tests/contract/schema/strict.test.ts",
|
|
695
|
+
"tests/fuzz/constraints.test.ts"
|
|
687
696
|
],
|
|
688
|
-
"notes": "
|
|
697
|
+
"notes": ""
|
|
689
698
|
},
|
|
690
699
|
"R-01921-64245-04718-64212-38644-45300-05525-61121": {
|
|
691
700
|
"status": "VERIFIED",
|
|
@@ -696,11 +705,12 @@
|
|
|
696
705
|
"notes": "Operators covered; row-value/precedence edges expanding"
|
|
697
706
|
},
|
|
698
707
|
"R-01977-40534-32839-34523-14867-40621-38368-53470": {
|
|
699
|
-
"status": "
|
|
708
|
+
"status": "VERIFIED",
|
|
700
709
|
"evidence": [
|
|
701
|
-
"tests/contract/schema/"
|
|
710
|
+
"tests/contract/schema/strict.test.ts",
|
|
711
|
+
"tests/fuzz/constraints.test.ts"
|
|
702
712
|
],
|
|
703
|
-
"notes": "
|
|
713
|
+
"notes": ""
|
|
704
714
|
},
|
|
705
715
|
"R-01992-00519-59560-42589-34051-44285-27634-29157": {
|
|
706
716
|
"status": "VERIFIED",
|
|
@@ -711,11 +721,12 @@
|
|
|
711
721
|
"notes": "Oracle builtin inventory closing"
|
|
712
722
|
},
|
|
713
723
|
"R-01996-58977-34276-47341-41302-00217-64799-50366": {
|
|
714
|
-
"status": "
|
|
724
|
+
"status": "VERIFIED",
|
|
715
725
|
"evidence": [
|
|
716
|
-
"tests/contract/schema/"
|
|
726
|
+
"tests/contract/schema/strict.test.ts",
|
|
727
|
+
"tests/fuzz/constraints.test.ts"
|
|
717
728
|
],
|
|
718
|
-
"notes": "
|
|
729
|
+
"notes": ""
|
|
719
730
|
},
|
|
720
731
|
"R-02005-53466-64191-45009-56070-04146-49679-01840": {
|
|
721
732
|
"status": "NOT_APPLICABLE",
|
|
@@ -1108,12 +1119,14 @@
|
|
|
1108
1119
|
"notes": "C API / storage / non-SQL surface (c3ref/column_blob.html)"
|
|
1109
1120
|
},
|
|
1110
1121
|
"R-03108-63659-37525-03634-22905-61973-06931-63842": {
|
|
1111
|
-
"status": "
|
|
1122
|
+
"status": "VERIFIED",
|
|
1112
1123
|
"evidence": [
|
|
1113
1124
|
"tests/contract/foreign-keys/",
|
|
1114
|
-
"tests/
|
|
1125
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
1126
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
1127
|
+
"tests/fuzz/constraints.test.ts"
|
|
1115
1128
|
],
|
|
1116
|
-
"notes": "
|
|
1129
|
+
"notes": ""
|
|
1117
1130
|
},
|
|
1118
1131
|
"R-03145-46390-59121-11550-39703-00062-43990-26586": {
|
|
1119
1132
|
"status": "NOT_APPLICABLE",
|
|
@@ -1164,12 +1177,14 @@
|
|
|
1164
1177
|
"notes": "unixepoch/timediff pending"
|
|
1165
1178
|
},
|
|
1166
1179
|
"R-03353-05327-21191-28288-58549-30161-65035-16573": {
|
|
1167
|
-
"status": "
|
|
1180
|
+
"status": "VERIFIED",
|
|
1168
1181
|
"evidence": [
|
|
1169
1182
|
"tests/contract/foreign-keys/",
|
|
1170
|
-
"tests/
|
|
1183
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
1184
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
1185
|
+
"tests/fuzz/constraints.test.ts"
|
|
1171
1186
|
],
|
|
1172
|
-
"notes": "
|
|
1187
|
+
"notes": ""
|
|
1173
1188
|
},
|
|
1174
1189
|
"R-03364-08004-01846-16626-35041-21418-01059-33152": {
|
|
1175
1190
|
"status": "PARTIALLY_VERIFIED",
|
|
@@ -1397,11 +1412,12 @@
|
|
|
1397
1412
|
"notes": "C API / storage / non-SQL surface (fileformat2.html)"
|
|
1398
1413
|
},
|
|
1399
1414
|
"R-03919-01344-62529-26602-44436-50756-40442-48789": {
|
|
1400
|
-
"status": "
|
|
1415
|
+
"status": "VERIFIED",
|
|
1401
1416
|
"evidence": [
|
|
1402
|
-
"tests/contract/schema/"
|
|
1417
|
+
"tests/contract/schema/strict.test.ts",
|
|
1418
|
+
"tests/fuzz/constraints.test.ts"
|
|
1403
1419
|
],
|
|
1404
|
-
"notes": "
|
|
1420
|
+
"notes": ""
|
|
1405
1421
|
},
|
|
1406
1422
|
"R-03922-41160-10406-40879-23599-49045-53405-25401": {
|
|
1407
1423
|
"status": "NOT_APPLICABLE",
|
|
@@ -1441,12 +1457,14 @@
|
|
|
1441
1457
|
"notes": ""
|
|
1442
1458
|
},
|
|
1443
1459
|
"R-04042-24825-64259-53667-46708-22366-11905-57675": {
|
|
1444
|
-
"status": "
|
|
1460
|
+
"status": "VERIFIED",
|
|
1445
1461
|
"evidence": [
|
|
1446
1462
|
"tests/contract/foreign-keys/",
|
|
1447
|
-
"tests/
|
|
1463
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
1464
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
1465
|
+
"tests/fuzz/constraints.test.ts"
|
|
1448
1466
|
],
|
|
1449
|
-
"notes": "
|
|
1467
|
+
"notes": ""
|
|
1450
1468
|
},
|
|
1451
1469
|
"R-04132-09474-00805-46196-04402-30131-02139-26149": {
|
|
1452
1470
|
"status": "VERIFIED",
|
|
@@ -1508,27 +1526,32 @@
|
|
|
1508
1526
|
"notes": "Unmapped SQL source: uri.html"
|
|
1509
1527
|
},
|
|
1510
1528
|
"R-04240-13860-65376-64948-20761-30630-14399-44960": {
|
|
1511
|
-
"status": "
|
|
1529
|
+
"status": "VERIFIED",
|
|
1512
1530
|
"evidence": [
|
|
1513
1531
|
"tests/contract/foreign-keys/",
|
|
1514
|
-
"tests/
|
|
1532
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
1533
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
1534
|
+
"tests/fuzz/constraints.test.ts"
|
|
1515
1535
|
],
|
|
1516
|
-
"notes": "
|
|
1536
|
+
"notes": ""
|
|
1517
1537
|
},
|
|
1518
1538
|
"R-04253-22539-00035-22201-40709-27368-32520-29417": {
|
|
1519
|
-
"status": "
|
|
1539
|
+
"status": "VERIFIED",
|
|
1520
1540
|
"evidence": [
|
|
1521
|
-
"tests/contract/schema/"
|
|
1541
|
+
"tests/contract/schema/strict.test.ts",
|
|
1542
|
+
"tests/fuzz/constraints.test.ts"
|
|
1522
1543
|
],
|
|
1523
|
-
"notes": "
|
|
1544
|
+
"notes": ""
|
|
1524
1545
|
},
|
|
1525
1546
|
"R-04272-38653-14303-01704-38451-58113-36784-29823": {
|
|
1526
|
-
"status": "
|
|
1547
|
+
"status": "VERIFIED",
|
|
1527
1548
|
"evidence": [
|
|
1528
1549
|
"tests/contract/foreign-keys/",
|
|
1529
|
-
"tests/
|
|
1550
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
1551
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
1552
|
+
"tests/fuzz/constraints.test.ts"
|
|
1530
1553
|
],
|
|
1531
|
-
"notes": "
|
|
1554
|
+
"notes": ""
|
|
1532
1555
|
},
|
|
1533
1556
|
"R-04300-56712-32659-65159-49842-27130-29205-32160": {
|
|
1534
1557
|
"status": "NOT_APPLICABLE",
|
|
@@ -1784,9 +1807,9 @@
|
|
|
1784
1807
|
"notes": ""
|
|
1785
1808
|
},
|
|
1786
1809
|
"R-05254-00658-23742-34136-13538-61949-20472-35341": {
|
|
1787
|
-
"status": "
|
|
1810
|
+
"status": "VERIFIED",
|
|
1788
1811
|
"evidence": [
|
|
1789
|
-
"tests/contract/indexes/"
|
|
1812
|
+
"tests/contract/indexes/partial.test.ts"
|
|
1790
1813
|
],
|
|
1791
1814
|
"notes": ""
|
|
1792
1815
|
},
|
|
@@ -1974,17 +1997,19 @@
|
|
|
1974
1997
|
"notes": "Affinity/storage-class contracts"
|
|
1975
1998
|
},
|
|
1976
1999
|
"R-05903-08460-38037-43122-07089-54739-62474-34030": {
|
|
1977
|
-
"status": "
|
|
2000
|
+
"status": "VERIFIED",
|
|
1978
2001
|
"evidence": [
|
|
1979
2002
|
"tests/contract/foreign-keys/",
|
|
1980
|
-
"tests/
|
|
2003
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
2004
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
2005
|
+
"tests/fuzz/constraints.test.ts"
|
|
1981
2006
|
],
|
|
1982
|
-
"notes": "
|
|
2007
|
+
"notes": ""
|
|
1983
2008
|
},
|
|
1984
2009
|
"R-05906-34301-40279-37243-33018-07128-06632-24411": {
|
|
1985
|
-
"status": "
|
|
2010
|
+
"status": "VERIFIED",
|
|
1986
2011
|
"evidence": [
|
|
1987
|
-
"tests/contract/indexes/"
|
|
2012
|
+
"tests/contract/indexes/partial.test.ts"
|
|
1988
2013
|
],
|
|
1989
2014
|
"notes": ""
|
|
1990
2015
|
},
|
|
@@ -2258,11 +2283,14 @@
|
|
|
2258
2283
|
"notes": ""
|
|
2259
2284
|
},
|
|
2260
2285
|
"R-06718-34797-20809-29800-16443-15807-57069-06143": {
|
|
2261
|
-
"status": "
|
|
2286
|
+
"status": "VERIFIED",
|
|
2262
2287
|
"evidence": [
|
|
2263
|
-
"tests/contract/indexes/"
|
|
2288
|
+
"tests/contract/indexes/",
|
|
2289
|
+
"tests/contract/indexes/partial.test.ts",
|
|
2290
|
+
"tests/contract/indexes/expression.test.ts",
|
|
2291
|
+
"tests/contract/indexes/prefix.test.ts"
|
|
2264
2292
|
],
|
|
2265
|
-
"notes": "
|
|
2293
|
+
"notes": ""
|
|
2266
2294
|
},
|
|
2267
2295
|
"R-06726-07466-50674-60893-18596-18216-57915-63107": {
|
|
2268
2296
|
"status": "VERIFIED",
|
|
@@ -2370,9 +2398,9 @@
|
|
|
2370
2398
|
"notes": "Operators covered; row-value/precedence edges expanding"
|
|
2371
2399
|
},
|
|
2372
2400
|
"R-07154-34181-57164-55597-27085-41955-25905-44172": {
|
|
2373
|
-
"status": "
|
|
2401
|
+
"status": "VERIFIED",
|
|
2374
2402
|
"evidence": [
|
|
2375
|
-
"tests/contract/indexes/"
|
|
2403
|
+
"tests/contract/indexes/partial.test.ts"
|
|
2376
2404
|
],
|
|
2377
2405
|
"notes": ""
|
|
2378
2406
|
},
|
|
@@ -2401,12 +2429,14 @@
|
|
|
2401
2429
|
"notes": "C API / storage / non-SQL surface (fileformat2.html)"
|
|
2402
2430
|
},
|
|
2403
2431
|
"R-07223-48323-28604-04641-30689-62184-47326-29698": {
|
|
2404
|
-
"status": "
|
|
2432
|
+
"status": "VERIFIED",
|
|
2405
2433
|
"evidence": [
|
|
2406
2434
|
"tests/contract/foreign-keys/",
|
|
2407
|
-
"tests/
|
|
2435
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
2436
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
2437
|
+
"tests/fuzz/constraints.test.ts"
|
|
2408
2438
|
],
|
|
2409
|
-
"notes": "
|
|
2439
|
+
"notes": ""
|
|
2410
2440
|
},
|
|
2411
2441
|
"R-07232-03261-48010-41283-49496-35316-10713-33982": {
|
|
2412
2442
|
"status": "NOT_APPLICABLE",
|
|
@@ -2419,12 +2449,14 @@
|
|
|
2419
2449
|
"notes": "C API / storage / non-SQL surface (c3ref/threadsafe.html)"
|
|
2420
2450
|
},
|
|
2421
2451
|
"R-07280-60510-42023-64617-40990-52816-04160-12840": {
|
|
2422
|
-
"status": "
|
|
2452
|
+
"status": "VERIFIED",
|
|
2423
2453
|
"evidence": [
|
|
2424
2454
|
"tests/contract/foreign-keys/",
|
|
2425
|
-
"tests/
|
|
2455
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
2456
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
2457
|
+
"tests/fuzz/constraints.test.ts"
|
|
2426
2458
|
],
|
|
2427
|
-
"notes": "
|
|
2459
|
+
"notes": ""
|
|
2428
2460
|
},
|
|
2429
2461
|
"R-07289-49223-41401-05780-36220-42267-14468-32307": {
|
|
2430
2462
|
"status": "VERIFIED",
|
|
@@ -2665,12 +2697,14 @@
|
|
|
2665
2697
|
"notes": "C API / storage / non-SQL surface (c3ref/vtab_distinct.html)"
|
|
2666
2698
|
},
|
|
2667
2699
|
"R-08013-37737-04179-14029-08100-20980-22992-19882": {
|
|
2668
|
-
"status": "
|
|
2700
|
+
"status": "VERIFIED",
|
|
2669
2701
|
"evidence": [
|
|
2670
2702
|
"tests/contract/foreign-keys/",
|
|
2671
|
-
"tests/
|
|
2703
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
2704
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
2705
|
+
"tests/fuzz/constraints.test.ts"
|
|
2672
2706
|
],
|
|
2673
|
-
"notes": "
|
|
2707
|
+
"notes": ""
|
|
2674
2708
|
},
|
|
2675
2709
|
"R-08023-12605-32642-43845-16740-17726-48491-51878": {
|
|
2676
2710
|
"status": "NOT_APPLICABLE",
|
|
@@ -2908,12 +2942,14 @@
|
|
|
2908
2942
|
"notes": "string_agg and FILTER edges pending full VERIFIED"
|
|
2909
2943
|
},
|
|
2910
2944
|
"R-08908-23439-37383-27763-09062-14229-58252-49666": {
|
|
2911
|
-
"status": "
|
|
2945
|
+
"status": "VERIFIED",
|
|
2912
2946
|
"evidence": [
|
|
2913
2947
|
"tests/contract/foreign-keys/",
|
|
2914
|
-
"tests/
|
|
2948
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
2949
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
2950
|
+
"tests/fuzz/constraints.test.ts"
|
|
2915
2951
|
],
|
|
2916
|
-
"notes": "
|
|
2952
|
+
"notes": ""
|
|
2917
2953
|
},
|
|
2918
2954
|
"R-08916-58393-39719-51162-04738-33368-03102-45258": {
|
|
2919
2955
|
"status": "NOT_APPLICABLE",
|
|
@@ -2951,12 +2987,14 @@
|
|
|
2951
2987
|
"notes": "C API / storage / non-SQL surface (c3ref/vtab_distinct.html)"
|
|
2952
2988
|
},
|
|
2953
2989
|
"R-09005-28791-60027-45340-35703-17892-19441-18649": {
|
|
2954
|
-
"status": "
|
|
2990
|
+
"status": "VERIFIED",
|
|
2955
2991
|
"evidence": [
|
|
2956
2992
|
"tests/contract/foreign-keys/",
|
|
2957
|
-
"tests/
|
|
2993
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
2994
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
2995
|
+
"tests/fuzz/constraints.test.ts"
|
|
2958
2996
|
],
|
|
2959
|
-
"notes": "
|
|
2997
|
+
"notes": ""
|
|
2960
2998
|
},
|
|
2961
2999
|
"R-09033-01493-08484-25490-18731-61378-37357-02599": {
|
|
2962
3000
|
"status": "PARTIALLY_VERIFIED",
|
|
@@ -3025,12 +3063,14 @@
|
|
|
3025
3063
|
"notes": "Unmapped SQL source: optoverview.html"
|
|
3026
3064
|
},
|
|
3027
3065
|
"R-09323-30470-62004-36090-30809-61331-17692-32313": {
|
|
3028
|
-
"status": "
|
|
3066
|
+
"status": "VERIFIED",
|
|
3029
3067
|
"evidence": [
|
|
3030
3068
|
"tests/contract/foreign-keys/",
|
|
3031
|
-
"tests/
|
|
3069
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
3070
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
3071
|
+
"tests/fuzz/constraints.test.ts"
|
|
3032
3072
|
],
|
|
3033
|
-
"notes": "
|
|
3073
|
+
"notes": ""
|
|
3034
3074
|
},
|
|
3035
3075
|
"R-09328-38790-35467-08457-46231-05327-56817-51584": {
|
|
3036
3076
|
"status": "VERIFIED",
|
|
@@ -3072,12 +3112,14 @@
|
|
|
3072
3112
|
"notes": "C API / storage / non-SQL surface (c3ref/file_control.html)"
|
|
3073
3113
|
},
|
|
3074
3114
|
"R-09564-22170-27375-05763-54488-45369-57253-27733": {
|
|
3075
|
-
"status": "
|
|
3115
|
+
"status": "VERIFIED",
|
|
3076
3116
|
"evidence": [
|
|
3077
3117
|
"tests/contract/foreign-keys/",
|
|
3078
|
-
"tests/
|
|
3118
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
3119
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
3120
|
+
"tests/fuzz/constraints.test.ts"
|
|
3079
3121
|
],
|
|
3080
|
-
"notes": "
|
|
3122
|
+
"notes": ""
|
|
3081
3123
|
},
|
|
3082
3124
|
"R-09593-03321-24060-42412-44512-07305-25128-61318": {
|
|
3083
3125
|
"status": "VERIFIED",
|
|
@@ -3152,11 +3194,14 @@
|
|
|
3152
3194
|
"notes": "Schema/FK pragmas verified; storage pragmas N/A or no-op"
|
|
3153
3195
|
},
|
|
3154
3196
|
"R-09773-40602-32968-36782-04559-37578-19507-63398": {
|
|
3155
|
-
"status": "
|
|
3197
|
+
"status": "VERIFIED",
|
|
3156
3198
|
"evidence": [
|
|
3157
|
-
"tests/contract/indexes/"
|
|
3199
|
+
"tests/contract/indexes/",
|
|
3200
|
+
"tests/contract/indexes/partial.test.ts",
|
|
3201
|
+
"tests/contract/indexes/expression.test.ts",
|
|
3202
|
+
"tests/contract/indexes/prefix.test.ts"
|
|
3158
3203
|
],
|
|
3159
|
-
"notes": "
|
|
3204
|
+
"notes": ""
|
|
3160
3205
|
},
|
|
3161
3206
|
"R-09782-32948-24767-08594-36498-62288-40921-54378": {
|
|
3162
3207
|
"status": "NOT_APPLICABLE",
|
|
@@ -3239,12 +3284,14 @@
|
|
|
3239
3284
|
"notes": "Unmapped SQL source: optoverview.html"
|
|
3240
3285
|
},
|
|
3241
3286
|
"R-10109-20452-53276-41872-63667-11760-57644-25670": {
|
|
3242
|
-
"status": "
|
|
3287
|
+
"status": "VERIFIED",
|
|
3243
3288
|
"evidence": [
|
|
3244
3289
|
"tests/contract/foreign-keys/",
|
|
3245
|
-
"tests/
|
|
3290
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
3291
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
3292
|
+
"tests/fuzz/constraints.test.ts"
|
|
3246
3293
|
],
|
|
3247
|
-
"notes": "
|
|
3294
|
+
"notes": ""
|
|
3248
3295
|
},
|
|
3249
3296
|
"R-10119-21526-34528-05557-36941-47440-26835-18777": {
|
|
3250
3297
|
"status": "NOT_APPLICABLE",
|
|
@@ -3435,11 +3482,12 @@
|
|
|
3435
3482
|
"notes": "C API / storage / non-SQL surface (c3ref/value_dup.html)"
|
|
3436
3483
|
},
|
|
3437
3484
|
"R-10844-63639-16825-02392-05522-65470-37861-17171": {
|
|
3438
|
-
"status": "
|
|
3485
|
+
"status": "VERIFIED",
|
|
3439
3486
|
"evidence": [
|
|
3440
|
-
"tests/contract/schema/"
|
|
3487
|
+
"tests/contract/schema/strict.test.ts",
|
|
3488
|
+
"tests/fuzz/constraints.test.ts"
|
|
3441
3489
|
],
|
|
3442
|
-
"notes": "
|
|
3490
|
+
"notes": ""
|
|
3443
3491
|
},
|
|
3444
3492
|
"R-10863-13089-16518-46448-48155-27413-52501-54942": {
|
|
3445
3493
|
"status": "VERIFIED",
|
|
@@ -3538,12 +3586,14 @@
|
|
|
3538
3586
|
"notes": "C API / storage / non-SQL surface (c3ref/prepare.html)"
|
|
3539
3587
|
},
|
|
3540
3588
|
"R-11078-03945-63030-33506-24033-34573-31697-17195": {
|
|
3541
|
-
"status": "
|
|
3589
|
+
"status": "VERIFIED",
|
|
3542
3590
|
"evidence": [
|
|
3543
3591
|
"tests/contract/foreign-keys/",
|
|
3544
|
-
"tests/
|
|
3592
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
3593
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
3594
|
+
"tests/fuzz/constraints.test.ts"
|
|
3545
3595
|
],
|
|
3546
|
-
"notes": "
|
|
3596
|
+
"notes": ""
|
|
3547
3597
|
},
|
|
3548
3598
|
"R-11093-24211-58889-40188-52881-41669-64989-17738": {
|
|
3549
3599
|
"status": "VERIFIED",
|
|
@@ -3566,11 +3616,14 @@
|
|
|
3566
3616
|
"notes": ""
|
|
3567
3617
|
},
|
|
3568
3618
|
"R-11135-63542-29250-48049-02589-36558-61016-54500": {
|
|
3569
|
-
"status": "
|
|
3619
|
+
"status": "VERIFIED",
|
|
3570
3620
|
"evidence": [
|
|
3571
|
-
"tests/contract/indexes/"
|
|
3621
|
+
"tests/contract/indexes/",
|
|
3622
|
+
"tests/contract/indexes/partial.test.ts",
|
|
3623
|
+
"tests/contract/indexes/expression.test.ts",
|
|
3624
|
+
"tests/contract/indexes/prefix.test.ts"
|
|
3572
3625
|
],
|
|
3573
|
-
"notes": "
|
|
3626
|
+
"notes": ""
|
|
3574
3627
|
},
|
|
3575
3628
|
"R-11148-40995-48554-02818-10393-13608-40990-18433": {
|
|
3576
3629
|
"status": "NOT_APPLICABLE",
|
|
@@ -3625,12 +3678,14 @@
|
|
|
3625
3678
|
"notes": "RTREE module pending Scope-3 implementation"
|
|
3626
3679
|
},
|
|
3627
3680
|
"R-11255-19907-56460-39957-30226-19999-22429-23256": {
|
|
3628
|
-
"status": "
|
|
3681
|
+
"status": "VERIFIED",
|
|
3629
3682
|
"evidence": [
|
|
3630
3683
|
"tests/contract/foreign-keys/",
|
|
3631
|
-
"tests/
|
|
3684
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
3685
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
3686
|
+
"tests/fuzz/constraints.test.ts"
|
|
3632
3687
|
],
|
|
3633
|
-
"notes": "
|
|
3688
|
+
"notes": ""
|
|
3634
3689
|
},
|
|
3635
3690
|
"R-11278-45262-58259-06316-15595-38030-39158-45213": {
|
|
3636
3691
|
"status": "NOT_APPLICABLE",
|
|
@@ -3825,12 +3880,14 @@
|
|
|
3825
3880
|
"notes": "Schema/FK pragmas verified; storage pragmas N/A or no-op"
|
|
3826
3881
|
},
|
|
3827
3882
|
"R-11856-19836-24274-28109-29706-17487-59516-28752": {
|
|
3828
|
-
"status": "
|
|
3883
|
+
"status": "VERIFIED",
|
|
3829
3884
|
"evidence": [
|
|
3830
3885
|
"tests/contract/foreign-keys/",
|
|
3831
|
-
"tests/
|
|
3886
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
3887
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
3888
|
+
"tests/fuzz/constraints.test.ts"
|
|
3832
3889
|
],
|
|
3833
|
-
"notes": "
|
|
3890
|
+
"notes": ""
|
|
3834
3891
|
},
|
|
3835
3892
|
"R-11896-08162-39829-09724-10165-05972-28450-60411": {
|
|
3836
3893
|
"status": "PARTIALLY_VERIFIED",
|
|
@@ -4092,12 +4149,14 @@
|
|
|
4092
4149
|
"notes": ""
|
|
4093
4150
|
},
|
|
4094
4151
|
"R-12782-61841-54063-57500-26369-54791-20214-34360": {
|
|
4095
|
-
"status": "
|
|
4152
|
+
"status": "VERIFIED",
|
|
4096
4153
|
"evidence": [
|
|
4097
4154
|
"tests/contract/foreign-keys/",
|
|
4098
|
-
"tests/
|
|
4155
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
4156
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
4157
|
+
"tests/fuzz/constraints.test.ts"
|
|
4099
4158
|
],
|
|
4100
|
-
"notes": "
|
|
4159
|
+
"notes": ""
|
|
4101
4160
|
},
|
|
4102
4161
|
"R-12786-00766-63482-41386-10445-23868-47532-37384": {
|
|
4103
4162
|
"status": "NOT_APPLICABLE",
|
|
@@ -4176,11 +4235,14 @@
|
|
|
4176
4235
|
"notes": "string_agg and FILTER edges pending full VERIFIED"
|
|
4177
4236
|
},
|
|
4178
4237
|
"R-13057-33448-09671-56974-58075-51862-56508-46386": {
|
|
4179
|
-
"status": "
|
|
4238
|
+
"status": "VERIFIED",
|
|
4180
4239
|
"evidence": [
|
|
4181
|
-
"tests/contract/indexes/"
|
|
4240
|
+
"tests/contract/indexes/",
|
|
4241
|
+
"tests/contract/indexes/partial.test.ts",
|
|
4242
|
+
"tests/contract/indexes/expression.test.ts",
|
|
4243
|
+
"tests/contract/indexes/prefix.test.ts"
|
|
4182
4244
|
],
|
|
4183
|
-
"notes": "
|
|
4245
|
+
"notes": ""
|
|
4184
4246
|
},
|
|
4185
4247
|
"R-13091-00020-15519-35390-14824-01225-60609-32585": {
|
|
4186
4248
|
"status": "NOT_APPLICABLE",
|
|
@@ -4294,12 +4356,14 @@
|
|
|
4294
4356
|
"notes": "Operators covered; row-value/precedence edges expanding"
|
|
4295
4357
|
},
|
|
4296
4358
|
"R-13435-26311-61176-01189-39199-58705-21930-17615": {
|
|
4297
|
-
"status": "
|
|
4359
|
+
"status": "VERIFIED",
|
|
4298
4360
|
"evidence": [
|
|
4299
4361
|
"tests/contract/foreign-keys/",
|
|
4300
|
-
"tests/
|
|
4362
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
4363
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
4364
|
+
"tests/fuzz/constraints.test.ts"
|
|
4301
4365
|
],
|
|
4302
|
-
"notes": "
|
|
4366
|
+
"notes": ""
|
|
4303
4367
|
},
|
|
4304
4368
|
"R-13439-14752-32196-09382-64767-42844-00603-31803": {
|
|
4305
4369
|
"status": "VERIFIED",
|
|
@@ -4448,12 +4512,14 @@
|
|
|
4448
4512
|
"notes": ""
|
|
4449
4513
|
},
|
|
4450
4514
|
"R-13877-64542-39833-15687-62784-10394-38782-49019": {
|
|
4451
|
-
"status": "
|
|
4515
|
+
"status": "VERIFIED",
|
|
4452
4516
|
"evidence": [
|
|
4453
4517
|
"tests/contract/foreign-keys/",
|
|
4454
|
-
"tests/
|
|
4518
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
4519
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
4520
|
+
"tests/fuzz/constraints.test.ts"
|
|
4455
4521
|
],
|
|
4456
|
-
"notes": "
|
|
4522
|
+
"notes": ""
|
|
4457
4523
|
},
|
|
4458
4524
|
"R-13901-14007-64763-25986-03152-23899-30045-21244": {
|
|
4459
4525
|
"status": "NOT_APPLICABLE",
|
|
@@ -4549,12 +4615,14 @@
|
|
|
4549
4615
|
"notes": "Schema/FK pragmas verified; storage pragmas N/A or no-op"
|
|
4550
4616
|
},
|
|
4551
4617
|
"R-14208-23986-02817-62350-58798-64603-05852-18001": {
|
|
4552
|
-
"status": "
|
|
4618
|
+
"status": "VERIFIED",
|
|
4553
4619
|
"evidence": [
|
|
4554
4620
|
"tests/contract/foreign-keys/",
|
|
4555
|
-
"tests/
|
|
4621
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
4622
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
4623
|
+
"tests/fuzz/constraints.test.ts"
|
|
4556
4624
|
],
|
|
4557
|
-
"notes": "
|
|
4625
|
+
"notes": ""
|
|
4558
4626
|
},
|
|
4559
4627
|
"R-14213-41276-38760-54552-34093-20752-64281-40652": {
|
|
4560
4628
|
"status": "NOT_APPLICABLE",
|
|
@@ -4660,12 +4728,14 @@
|
|
|
4660
4728
|
"notes": "C API / storage / non-SQL surface (c3ref/vtab_rhs_value.html)"
|
|
4661
4729
|
},
|
|
4662
4730
|
"R-14553-34013-61751-37329-34569-35054-62588-04416": {
|
|
4663
|
-
"status": "
|
|
4731
|
+
"status": "VERIFIED",
|
|
4664
4732
|
"evidence": [
|
|
4665
4733
|
"tests/contract/foreign-keys/",
|
|
4666
|
-
"tests/
|
|
4734
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
4735
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
4736
|
+
"tests/fuzz/constraints.test.ts"
|
|
4667
4737
|
],
|
|
4668
|
-
"notes": "
|
|
4738
|
+
"notes": ""
|
|
4669
4739
|
},
|
|
4670
4740
|
"R-14560-62209-22846-15269-26800-65188-24586-57276": {
|
|
4671
4741
|
"status": "NOT_APPLICABLE",
|
|
@@ -4839,9 +4909,9 @@
|
|
|
4839
4909
|
"notes": "unixepoch/timediff pending"
|
|
4840
4910
|
},
|
|
4841
4911
|
"R-15250-32031-29902-43107-55645-15949-41885-09210": {
|
|
4842
|
-
"status": "
|
|
4912
|
+
"status": "VERIFIED",
|
|
4843
4913
|
"evidence": [
|
|
4844
|
-
"tests/contract/indexes/"
|
|
4914
|
+
"tests/contract/indexes/partial.test.ts"
|
|
4845
4915
|
],
|
|
4846
4916
|
"notes": ""
|
|
4847
4917
|
},
|
|
@@ -4918,12 +4988,14 @@
|
|
|
4918
4988
|
"notes": "Schema/FK pragmas verified; storage pragmas N/A or no-op"
|
|
4919
4989
|
},
|
|
4920
4990
|
"R-15417-28014-30557-42534-17582-00197-65121-60035": {
|
|
4921
|
-
"status": "
|
|
4991
|
+
"status": "VERIFIED",
|
|
4922
4992
|
"evidence": [
|
|
4923
4993
|
"tests/contract/foreign-keys/",
|
|
4924
|
-
"tests/
|
|
4994
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
4995
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
4996
|
+
"tests/fuzz/constraints.test.ts"
|
|
4925
4997
|
],
|
|
4926
|
-
"notes": "
|
|
4998
|
+
"notes": ""
|
|
4927
4999
|
},
|
|
4928
5000
|
"R-15442-09728-53714-13219-50103-51559-23392-54573": {
|
|
4929
5001
|
"status": "NOT_APPLICABLE",
|
|
@@ -5031,12 +5103,14 @@
|
|
|
5031
5103
|
"notes": "Schema/FK pragmas verified; storage pragmas N/A or no-op"
|
|
5032
5104
|
},
|
|
5033
5105
|
"R-15741-50893-04622-59701-05174-07929-61978-12539": {
|
|
5034
|
-
"status": "
|
|
5106
|
+
"status": "VERIFIED",
|
|
5035
5107
|
"evidence": [
|
|
5036
5108
|
"tests/contract/foreign-keys/",
|
|
5037
|
-
"tests/
|
|
5109
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
5110
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
5111
|
+
"tests/fuzz/constraints.test.ts"
|
|
5038
5112
|
],
|
|
5039
|
-
"notes": "
|
|
5113
|
+
"notes": ""
|
|
5040
5114
|
},
|
|
5041
5115
|
"R-15753-04279-34093-62735-52476-02019-63320-45902": {
|
|
5042
5116
|
"status": "VERIFIED",
|
|
@@ -5048,12 +5122,14 @@
|
|
|
5048
5122
|
"notes": ""
|
|
5049
5123
|
},
|
|
5050
5124
|
"R-15796-47513-29721-16055-11683-21050-32207-60873": {
|
|
5051
|
-
"status": "
|
|
5125
|
+
"status": "VERIFIED",
|
|
5052
5126
|
"evidence": [
|
|
5053
5127
|
"tests/contract/foreign-keys/",
|
|
5054
|
-
"tests/
|
|
5128
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
5129
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
5130
|
+
"tests/fuzz/constraints.test.ts"
|
|
5055
5131
|
],
|
|
5056
|
-
"notes": "
|
|
5132
|
+
"notes": ""
|
|
5057
5133
|
},
|
|
5058
5134
|
"R-15800-25719-02234-49112-58438-56406-07161-16214": {
|
|
5059
5135
|
"status": "PARTIALLY_VERIFIED",
|
|
@@ -5129,12 +5205,14 @@
|
|
|
5129
5205
|
"notes": ""
|
|
5130
5206
|
},
|
|
5131
5207
|
"R-15958-50233-58629-08203-04879-28676-03150-11250": {
|
|
5132
|
-
"status": "
|
|
5208
|
+
"status": "VERIFIED",
|
|
5133
5209
|
"evidence": [
|
|
5134
5210
|
"tests/contract/foreign-keys/",
|
|
5135
|
-
"tests/
|
|
5211
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
5212
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
5213
|
+
"tests/fuzz/constraints.test.ts"
|
|
5136
5214
|
],
|
|
5137
|
-
"notes": "
|
|
5215
|
+
"notes": ""
|
|
5138
5216
|
},
|
|
5139
5217
|
"R-15968-48708-39759-44208-63382-65413-21684-48201": {
|
|
5140
5218
|
"status": "NOT_APPLICABLE",
|
|
@@ -5186,19 +5264,24 @@
|
|
|
5186
5264
|
"notes": ""
|
|
5187
5265
|
},
|
|
5188
5266
|
"R-16085-53730-63732-38499-15956-61706-03515-37986": {
|
|
5189
|
-
"status": "
|
|
5267
|
+
"status": "VERIFIED",
|
|
5190
5268
|
"evidence": [
|
|
5191
|
-
"tests/contract/indexes/"
|
|
5269
|
+
"tests/contract/indexes/",
|
|
5270
|
+
"tests/contract/indexes/partial.test.ts",
|
|
5271
|
+
"tests/contract/indexes/expression.test.ts",
|
|
5272
|
+
"tests/contract/indexes/prefix.test.ts"
|
|
5192
5273
|
],
|
|
5193
|
-
"notes": "
|
|
5274
|
+
"notes": ""
|
|
5194
5275
|
},
|
|
5195
5276
|
"R-16127-35442-25332-57824-03233-02546-37060-55461": {
|
|
5196
|
-
"status": "
|
|
5277
|
+
"status": "VERIFIED",
|
|
5197
5278
|
"evidence": [
|
|
5198
5279
|
"tests/contract/foreign-keys/",
|
|
5199
|
-
"tests/
|
|
5280
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
5281
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
5282
|
+
"tests/fuzz/constraints.test.ts"
|
|
5200
5283
|
],
|
|
5201
|
-
"notes": "
|
|
5284
|
+
"notes": ""
|
|
5202
5285
|
},
|
|
5203
5286
|
"R-16170-02914-14290-07150-03100-60317-35403-36262": {
|
|
5204
5287
|
"status": "PARTIALLY_VERIFIED",
|
|
@@ -5474,11 +5557,14 @@
|
|
|
5474
5557
|
"notes": "C API / storage / non-SQL surface (c3ref/changes.html)"
|
|
5475
5558
|
},
|
|
5476
5559
|
"R-17151-07205-10894-28299-62821-16887-02117-62221": {
|
|
5477
|
-
"status": "
|
|
5560
|
+
"status": "VERIFIED",
|
|
5478
5561
|
"evidence": [
|
|
5479
|
-
"tests/contract/indexes/"
|
|
5562
|
+
"tests/contract/indexes/",
|
|
5563
|
+
"tests/contract/indexes/partial.test.ts",
|
|
5564
|
+
"tests/contract/indexes/expression.test.ts",
|
|
5565
|
+
"tests/contract/indexes/prefix.test.ts"
|
|
5480
5566
|
],
|
|
5481
|
-
"notes": "
|
|
5567
|
+
"notes": ""
|
|
5482
5568
|
},
|
|
5483
5569
|
"R-17177-10067-30884-53677-27777-30779-31144-63091": {
|
|
5484
5570
|
"status": "VERIFIED",
|
|
@@ -5496,11 +5582,12 @@
|
|
|
5496
5582
|
"notes": "Schema/FK pragmas verified; storage pragmas N/A or no-op"
|
|
5497
5583
|
},
|
|
5498
5584
|
"R-17195-37504-02291-24232-45006-33803-26491-52044": {
|
|
5499
|
-
"status": "
|
|
5585
|
+
"status": "VERIFIED",
|
|
5500
5586
|
"evidence": [
|
|
5501
|
-
"tests/contract/schema/"
|
|
5587
|
+
"tests/contract/schema/strict.test.ts",
|
|
5588
|
+
"tests/fuzz/constraints.test.ts"
|
|
5502
5589
|
],
|
|
5503
|
-
"notes": "
|
|
5590
|
+
"notes": ""
|
|
5504
5591
|
},
|
|
5505
5592
|
"R-17203-10061-39568-47821-02948-38975-34395-48032": {
|
|
5506
5593
|
"status": "NOT_APPLICABLE",
|
|
@@ -5541,11 +5628,14 @@
|
|
|
5541
5628
|
"notes": "C API / storage / non-SQL surface (c3ref/c_stmtstatus_counter.html)"
|
|
5542
5629
|
},
|
|
5543
5630
|
"R-17379-32951-58399-57501-33498-60036-41846-10214": {
|
|
5544
|
-
"status": "
|
|
5631
|
+
"status": "VERIFIED",
|
|
5545
5632
|
"evidence": [
|
|
5546
|
-
"tests/contract/indexes/"
|
|
5633
|
+
"tests/contract/indexes/",
|
|
5634
|
+
"tests/contract/indexes/partial.test.ts",
|
|
5635
|
+
"tests/contract/indexes/expression.test.ts",
|
|
5636
|
+
"tests/contract/indexes/prefix.test.ts"
|
|
5547
5637
|
],
|
|
5548
|
-
"notes": "
|
|
5638
|
+
"notes": ""
|
|
5549
5639
|
},
|
|
5550
5640
|
"R-17403-41821-06964-23183-41391-40881-28445-64765": {
|
|
5551
5641
|
"status": "NOT_APPLICABLE",
|
|
@@ -5740,9 +5830,9 @@
|
|
|
5740
5830
|
"notes": "C API / storage / non-SQL surface (c3ref/backup_finish.html)"
|
|
5741
5831
|
},
|
|
5742
5832
|
"R-17840-50075-33076-39937-50165-09009-15721-26614": {
|
|
5743
|
-
"status": "
|
|
5833
|
+
"status": "VERIFIED",
|
|
5744
5834
|
"evidence": [
|
|
5745
|
-
"tests/contract/indexes/"
|
|
5835
|
+
"tests/contract/indexes/partial.test.ts"
|
|
5746
5836
|
],
|
|
5747
5837
|
"notes": ""
|
|
5748
5838
|
},
|
|
@@ -5815,9 +5905,9 @@
|
|
|
5815
5905
|
"notes": "Affinity/storage-class contracts"
|
|
5816
5906
|
},
|
|
5817
5907
|
"R-18088-57186-13089-35997-22868-17352-00310-65503": {
|
|
5818
|
-
"status": "
|
|
5908
|
+
"status": "VERIFIED",
|
|
5819
5909
|
"evidence": [
|
|
5820
|
-
"tests/contract/indexes/"
|
|
5910
|
+
"tests/contract/indexes/partial.test.ts"
|
|
5821
5911
|
],
|
|
5822
5912
|
"notes": ""
|
|
5823
5913
|
},
|
|
@@ -5827,11 +5917,12 @@
|
|
|
5827
5917
|
"notes": "C API / storage / non-SQL surface (c3ref/enable_load_extension.html)"
|
|
5828
5918
|
},
|
|
5829
5919
|
"R-18141-03110-11368-12345-11263-65050-17384-54287": {
|
|
5830
|
-
"status": "
|
|
5920
|
+
"status": "VERIFIED",
|
|
5831
5921
|
"evidence": [
|
|
5832
|
-
"tests/contract/schema/"
|
|
5922
|
+
"tests/contract/schema/strict.test.ts",
|
|
5923
|
+
"tests/fuzz/constraints.test.ts"
|
|
5833
5924
|
],
|
|
5834
|
-
"notes": "
|
|
5925
|
+
"notes": ""
|
|
5835
5926
|
},
|
|
5836
5927
|
"R-18143-12121-25249-36193-24562-40889-39176-48672": {
|
|
5837
5928
|
"status": "NOT_APPLICABLE",
|
|
@@ -6308,12 +6399,14 @@
|
|
|
6308
6399
|
"notes": "RTREE module pending Scope-3 implementation"
|
|
6309
6400
|
},
|
|
6310
6401
|
"R-19353-43643-11289-35798-30332-46906-60350-15505": {
|
|
6311
|
-
"status": "
|
|
6402
|
+
"status": "VERIFIED",
|
|
6312
6403
|
"evidence": [
|
|
6313
6404
|
"tests/contract/foreign-keys/",
|
|
6314
|
-
"tests/
|
|
6405
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
6406
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
6407
|
+
"tests/fuzz/constraints.test.ts"
|
|
6315
6408
|
],
|
|
6316
|
-
"notes": "
|
|
6409
|
+
"notes": ""
|
|
6317
6410
|
},
|
|
6318
6411
|
"R-19393-22085-63206-61334-35392-55321-46849-03619": {
|
|
6319
6412
|
"status": "VERIFIED",
|
|
@@ -6394,11 +6487,12 @@
|
|
|
6394
6487
|
"notes": "FTS3/4 surface expanding toward oracle parity (matchinfo/offsets/snippet/query syntax)"
|
|
6395
6488
|
},
|
|
6396
6489
|
"R-19582-19642-51467-45115-55963-42677-19295-17348": {
|
|
6397
|
-
"status": "
|
|
6490
|
+
"status": "VERIFIED",
|
|
6398
6491
|
"evidence": [
|
|
6399
|
-
"tests/contract/schema/"
|
|
6492
|
+
"tests/contract/schema/strict.test.ts",
|
|
6493
|
+
"tests/fuzz/constraints.test.ts"
|
|
6400
6494
|
],
|
|
6401
|
-
"notes": "
|
|
6495
|
+
"notes": ""
|
|
6402
6496
|
},
|
|
6403
6497
|
"R-19604-19849-22831-12858-52721-48914-18931-47249": {
|
|
6404
6498
|
"status": "NOT_APPLICABLE",
|
|
@@ -6482,12 +6576,14 @@
|
|
|
6482
6576
|
"notes": "Schema/FK pragmas verified; storage pragmas N/A or no-op"
|
|
6483
6577
|
},
|
|
6484
6578
|
"R-19803-45884-64369-17915-53923-43638-05068-02663": {
|
|
6485
|
-
"status": "
|
|
6579
|
+
"status": "VERIFIED",
|
|
6486
6580
|
"evidence": [
|
|
6487
6581
|
"tests/contract/foreign-keys/",
|
|
6488
|
-
"tests/
|
|
6582
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
6583
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
6584
|
+
"tests/fuzz/constraints.test.ts"
|
|
6489
6585
|
],
|
|
6490
|
-
"notes": "
|
|
6586
|
+
"notes": ""
|
|
6491
6587
|
},
|
|
6492
6588
|
"R-19808-29370-64330-18475-42910-48751-21092-02221": {
|
|
6493
6589
|
"status": "NOT_APPLICABLE",
|
|
@@ -6558,12 +6654,14 @@
|
|
|
6558
6654
|
"notes": "C API / storage / non-SQL surface (c3ref/vtab_rhs_value.html)"
|
|
6559
6655
|
},
|
|
6560
6656
|
"R-19971-54976-54556-37696-16686-39038-59563-20085": {
|
|
6561
|
-
"status": "
|
|
6657
|
+
"status": "VERIFIED",
|
|
6562
6658
|
"evidence": [
|
|
6563
6659
|
"tests/contract/foreign-keys/",
|
|
6564
|
-
"tests/
|
|
6660
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
6661
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
6662
|
+
"tests/fuzz/constraints.test.ts"
|
|
6565
6663
|
],
|
|
6566
|
-
"notes": "
|
|
6664
|
+
"notes": ""
|
|
6567
6665
|
},
|
|
6568
6666
|
"R-19982-00724-51550-61529-52295-40817-37605-44623": {
|
|
6569
6667
|
"status": "NOT_APPLICABLE",
|
|
@@ -6972,17 +7070,19 @@
|
|
|
6972
7070
|
"notes": "Affinity/storage-class contracts"
|
|
6973
7071
|
},
|
|
6974
7072
|
"R-21599-16038-23557-29825-04044-13537-53990-06867": {
|
|
6975
|
-
"status": "
|
|
7073
|
+
"status": "VERIFIED",
|
|
6976
7074
|
"evidence": [
|
|
6977
7075
|
"tests/contract/foreign-keys/",
|
|
6978
|
-
"tests/
|
|
7076
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
7077
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
7078
|
+
"tests/fuzz/constraints.test.ts"
|
|
6979
7079
|
],
|
|
6980
|
-
"notes": "
|
|
7080
|
+
"notes": ""
|
|
6981
7081
|
},
|
|
6982
7082
|
"R-21637-36677-40497-35509-61399-46252-57328-58576": {
|
|
6983
|
-
"status": "
|
|
7083
|
+
"status": "VERIFIED",
|
|
6984
7084
|
"evidence": [
|
|
6985
|
-
"tests/contract/indexes/"
|
|
7085
|
+
"tests/contract/indexes/partial.test.ts"
|
|
6986
7086
|
],
|
|
6987
7087
|
"notes": ""
|
|
6988
7088
|
},
|
|
@@ -7014,9 +7114,9 @@
|
|
|
7014
7114
|
"notes": "Unmapped SQL source: uri.html"
|
|
7015
7115
|
},
|
|
7016
7116
|
"R-21827-60920-49018-16791-65129-33759-13224-63617": {
|
|
7017
|
-
"status": "
|
|
7117
|
+
"status": "VERIFIED",
|
|
7018
7118
|
"evidence": [
|
|
7019
|
-
"tests/contract/indexes/"
|
|
7119
|
+
"tests/contract/indexes/partial.test.ts"
|
|
7020
7120
|
],
|
|
7021
7121
|
"notes": ""
|
|
7022
7122
|
},
|
|
@@ -7154,11 +7254,12 @@
|
|
|
7154
7254
|
"notes": "C API / storage / non-SQL surface (c3ref/config.html)"
|
|
7155
7255
|
},
|
|
7156
7256
|
"R-22361-03044-33960-50539-23472-56447-56319-64487": {
|
|
7157
|
-
"status": "
|
|
7257
|
+
"status": "VERIFIED",
|
|
7158
7258
|
"evidence": [
|
|
7159
|
-
"tests/contract/schema/"
|
|
7259
|
+
"tests/contract/schema/strict.test.ts",
|
|
7260
|
+
"tests/fuzz/constraints.test.ts"
|
|
7160
7261
|
],
|
|
7161
|
-
"notes": "
|
|
7262
|
+
"notes": ""
|
|
7162
7263
|
},
|
|
7163
7264
|
"R-22391-07186-37161-38876-45465-63159-33403-63078": {
|
|
7164
7265
|
"status": "NOT_APPLICABLE",
|
|
@@ -7224,12 +7325,14 @@
|
|
|
7224
7325
|
"notes": "C API / storage / non-SQL surface (fileformat2.html)"
|
|
7225
7326
|
},
|
|
7226
7327
|
"R-22567-44039-44321-46904-30045-11816-43845-22039": {
|
|
7227
|
-
"status": "
|
|
7328
|
+
"status": "VERIFIED",
|
|
7228
7329
|
"evidence": [
|
|
7229
7330
|
"tests/contract/foreign-keys/",
|
|
7230
|
-
"tests/
|
|
7331
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
7332
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
7333
|
+
"tests/fuzz/constraints.test.ts"
|
|
7231
7334
|
],
|
|
7232
|
-
"notes": "
|
|
7335
|
+
"notes": ""
|
|
7233
7336
|
},
|
|
7234
7337
|
"R-22568-45663-55668-47915-50757-16894-43976-31844": {
|
|
7235
7338
|
"status": "NOT_APPLICABLE",
|
|
@@ -7484,12 +7587,14 @@
|
|
|
7484
7587
|
"notes": "C API / storage / non-SQL surface (c3ref/value_blob.html)"
|
|
7485
7588
|
},
|
|
7486
7589
|
"R-23302-30956-02464-62581-38265-62787-52147-51200": {
|
|
7487
|
-
"status": "
|
|
7590
|
+
"status": "VERIFIED",
|
|
7488
7591
|
"evidence": [
|
|
7489
7592
|
"tests/contract/foreign-keys/",
|
|
7490
|
-
"tests/
|
|
7593
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
7594
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
7595
|
+
"tests/fuzz/constraints.test.ts"
|
|
7491
7596
|
],
|
|
7492
|
-
"notes": "
|
|
7597
|
+
"notes": ""
|
|
7493
7598
|
},
|
|
7494
7599
|
"R-23313-12651-48093-62761-39865-28601-55555-42424": {
|
|
7495
7600
|
"status": "NOT_APPLICABLE",
|
|
@@ -7636,19 +7741,22 @@
|
|
|
7636
7741
|
"notes": "EXPLAIN QUERY PLAN stub shapes"
|
|
7637
7742
|
},
|
|
7638
7743
|
"R-23682-59820-57074-21944-19735-61329-41044-60872": {
|
|
7639
|
-
"status": "
|
|
7744
|
+
"status": "VERIFIED",
|
|
7640
7745
|
"evidence": [
|
|
7641
7746
|
"tests/contract/foreign-keys/",
|
|
7642
|
-
"tests/
|
|
7747
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
7748
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
7749
|
+
"tests/fuzz/constraints.test.ts"
|
|
7643
7750
|
],
|
|
7644
|
-
"notes": "
|
|
7751
|
+
"notes": ""
|
|
7645
7752
|
},
|
|
7646
7753
|
"R-23696-45205-56139-29220-39057-53925-58417-44046": {
|
|
7647
|
-
"status": "
|
|
7754
|
+
"status": "VERIFIED",
|
|
7648
7755
|
"evidence": [
|
|
7649
|
-
"tests/contract/schema/"
|
|
7756
|
+
"tests/contract/schema/strict.test.ts",
|
|
7757
|
+
"tests/fuzz/constraints.test.ts"
|
|
7650
7758
|
],
|
|
7651
|
-
"notes": "
|
|
7759
|
+
"notes": ""
|
|
7652
7760
|
},
|
|
7653
7761
|
"R-23702-41282-42393-06958-42086-21645-30380-61682": {
|
|
7654
7762
|
"status": "UNSUPPORTED",
|
|
@@ -7744,12 +7852,14 @@
|
|
|
7744
7852
|
"notes": "C API / storage / non-SQL surface (c3ref/auto_extension.html)"
|
|
7745
7853
|
},
|
|
7746
7854
|
"R-23980-48859-56951-38852-38346-56715-55568-02993": {
|
|
7747
|
-
"status": "
|
|
7855
|
+
"status": "VERIFIED",
|
|
7748
7856
|
"evidence": [
|
|
7749
7857
|
"tests/contract/foreign-keys/",
|
|
7750
|
-
"tests/
|
|
7858
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
7859
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
7860
|
+
"tests/fuzz/constraints.test.ts"
|
|
7751
7861
|
],
|
|
7752
|
-
"notes": "
|
|
7862
|
+
"notes": ""
|
|
7753
7863
|
},
|
|
7754
7864
|
"R-23984-49501-37243-56289-03587-60124-22633-25227": {
|
|
7755
7865
|
"status": "PARTIALLY_VERIFIED",
|
|
@@ -7791,9 +7901,9 @@
|
|
|
7791
7901
|
"notes": "C API / storage / non-SQL surface (fileformat2.html)"
|
|
7792
7902
|
},
|
|
7793
7903
|
"R-24086-08530-21252-40131-41317-48771-53823-31992": {
|
|
7794
|
-
"status": "
|
|
7904
|
+
"status": "VERIFIED",
|
|
7795
7905
|
"evidence": [
|
|
7796
|
-
"tests/contract/indexes/"
|
|
7906
|
+
"tests/contract/indexes/partial.test.ts"
|
|
7797
7907
|
],
|
|
7798
7908
|
"notes": ""
|
|
7799
7909
|
},
|
|
@@ -7833,12 +7943,14 @@
|
|
|
7833
7943
|
"notes": "C API / storage / non-SQL surface (c3ref/create_function.html)"
|
|
7834
7944
|
},
|
|
7835
7945
|
"R-24179-60523-60164-40067-19292-39680-45687-45747": {
|
|
7836
|
-
"status": "
|
|
7946
|
+
"status": "VERIFIED",
|
|
7837
7947
|
"evidence": [
|
|
7838
7948
|
"tests/contract/foreign-keys/",
|
|
7839
|
-
"tests/
|
|
7949
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
7950
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
7951
|
+
"tests/fuzz/constraints.test.ts"
|
|
7840
7952
|
],
|
|
7841
|
-
"notes": "
|
|
7953
|
+
"notes": ""
|
|
7842
7954
|
},
|
|
7843
7955
|
"R-24188-24349-51458-56364-12806-43304-14352-46380": {
|
|
7844
7956
|
"status": "VERIFIED",
|
|
@@ -7895,12 +8007,14 @@
|
|
|
7895
8007
|
"notes": "C API / storage / non-SQL surface (c3ref/autovacuum_pages.html)"
|
|
7896
8008
|
},
|
|
7897
8009
|
"R-24401-52400-49114-60456-18821-28705-54480-01087": {
|
|
7898
|
-
"status": "
|
|
8010
|
+
"status": "VERIFIED",
|
|
7899
8011
|
"evidence": [
|
|
7900
8012
|
"tests/contract/foreign-keys/",
|
|
7901
|
-
"tests/
|
|
8013
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
8014
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
8015
|
+
"tests/fuzz/constraints.test.ts"
|
|
7902
8016
|
],
|
|
7903
|
-
"notes": "
|
|
8017
|
+
"notes": ""
|
|
7904
8018
|
},
|
|
7905
8019
|
"R-24408-11841-16708-30331-61955-39086-27640-21297": {
|
|
7906
8020
|
"status": "VERIFIED",
|
|
@@ -7931,12 +8045,14 @@
|
|
|
7931
8045
|
"notes": ""
|
|
7932
8046
|
},
|
|
7933
8047
|
"R-24450-46174-44304-25763-63471-62798-12121-54973": {
|
|
7934
|
-
"status": "
|
|
8048
|
+
"status": "VERIFIED",
|
|
7935
8049
|
"evidence": [
|
|
7936
8050
|
"tests/contract/foreign-keys/",
|
|
7937
|
-
"tests/
|
|
8051
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
8052
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
8053
|
+
"tests/fuzz/constraints.test.ts"
|
|
7938
8054
|
],
|
|
7939
|
-
"notes": "
|
|
8055
|
+
"notes": ""
|
|
7940
8056
|
},
|
|
7941
8057
|
"R-24454-61742-57320-38040-08939-30630-11445-30109": {
|
|
7942
8058
|
"status": "VERIFIED",
|
|
@@ -7960,12 +8076,14 @@
|
|
|
7960
8076
|
"notes": "EXPLAIN QUERY PLAN stub shapes"
|
|
7961
8077
|
},
|
|
7962
8078
|
"R-24499-57071-23351-26477-16690-35822-52475-36418": {
|
|
7963
|
-
"status": "
|
|
8079
|
+
"status": "VERIFIED",
|
|
7964
8080
|
"evidence": [
|
|
7965
8081
|
"tests/contract/foreign-keys/",
|
|
7966
|
-
"tests/
|
|
8082
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
8083
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
8084
|
+
"tests/fuzz/constraints.test.ts"
|
|
7967
8085
|
],
|
|
7968
|
-
"notes": "
|
|
8086
|
+
"notes": ""
|
|
7969
8087
|
},
|
|
7970
8088
|
"R-24505-23230-57666-22051-56312-29400-20176-42804": {
|
|
7971
8089
|
"status": "NOT_APPLICABLE",
|
|
@@ -8050,12 +8168,14 @@
|
|
|
8050
8168
|
"notes": "C API / storage / non-SQL surface (c3ref/open.html)"
|
|
8051
8169
|
},
|
|
8052
8170
|
"R-24676-09859-25258-06679-18327-03281-24955-00264": {
|
|
8053
|
-
"status": "
|
|
8171
|
+
"status": "VERIFIED",
|
|
8054
8172
|
"evidence": [
|
|
8055
8173
|
"tests/contract/foreign-keys/",
|
|
8056
|
-
"tests/
|
|
8174
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
8175
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
8176
|
+
"tests/fuzz/constraints.test.ts"
|
|
8057
8177
|
],
|
|
8058
|
-
"notes": "
|
|
8178
|
+
"notes": ""
|
|
8059
8179
|
},
|
|
8060
8180
|
"R-24691-27369-29687-09464-65253-51469-13435-14358": {
|
|
8061
8181
|
"status": "NOT_APPLICABLE",
|
|
@@ -8068,12 +8188,14 @@
|
|
|
8068
8188
|
"notes": "C API / storage / non-SQL surface (c3ref/index_info.html)"
|
|
8069
8189
|
},
|
|
8070
8190
|
"R-24728-13230-17441-17828-27985-11598-34826-53003": {
|
|
8071
|
-
"status": "
|
|
8191
|
+
"status": "VERIFIED",
|
|
8072
8192
|
"evidence": [
|
|
8073
8193
|
"tests/contract/foreign-keys/",
|
|
8074
|
-
"tests/
|
|
8194
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
8195
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
8196
|
+
"tests/fuzz/constraints.test.ts"
|
|
8075
8197
|
],
|
|
8076
|
-
"notes": "
|
|
8198
|
+
"notes": ""
|
|
8077
8199
|
},
|
|
8078
8200
|
"R-24731-45773-21654-50701-01955-60961-16210-17736": {
|
|
8079
8201
|
"status": "VERIFIED",
|
|
@@ -8240,9 +8362,9 @@
|
|
|
8240
8362
|
"notes": "C API / storage / non-SQL surface (c3ref/str.html)"
|
|
8241
8363
|
},
|
|
8242
8364
|
"R-25216-03908-32391-06837-09807-59608-58830-19572": {
|
|
8243
|
-
"status": "
|
|
8365
|
+
"status": "VERIFIED",
|
|
8244
8366
|
"evidence": [
|
|
8245
|
-
"tests/contract/indexes/"
|
|
8367
|
+
"tests/contract/indexes/partial.test.ts"
|
|
8246
8368
|
],
|
|
8247
8369
|
"notes": ""
|
|
8248
8370
|
},
|
|
@@ -8272,12 +8394,14 @@
|
|
|
8272
8394
|
"notes": "Oracle builtin inventory closing"
|
|
8273
8395
|
},
|
|
8274
8396
|
"R-25384-39337-58415-17102-37697-27977-14467-00416": {
|
|
8275
|
-
"status": "
|
|
8397
|
+
"status": "VERIFIED",
|
|
8276
8398
|
"evidence": [
|
|
8277
8399
|
"tests/contract/foreign-keys/",
|
|
8278
|
-
"tests/
|
|
8400
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
8401
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
8402
|
+
"tests/fuzz/constraints.test.ts"
|
|
8279
8403
|
],
|
|
8280
|
-
"notes": "
|
|
8404
|
+
"notes": ""
|
|
8281
8405
|
},
|
|
8282
8406
|
"R-25451-61125-57795-23914-51441-34414-44666-54346": {
|
|
8283
8407
|
"status": "NOT_APPLICABLE",
|
|
@@ -8341,11 +8465,14 @@
|
|
|
8341
8465
|
"notes": "Operators covered; row-value/precedence edges expanding"
|
|
8342
8466
|
},
|
|
8343
8467
|
"R-25613-37547-39472-02780-29297-59051-40019-17427": {
|
|
8344
|
-
"status": "
|
|
8468
|
+
"status": "VERIFIED",
|
|
8345
8469
|
"evidence": [
|
|
8346
|
-
"tests/contract/indexes/"
|
|
8470
|
+
"tests/contract/indexes/",
|
|
8471
|
+
"tests/contract/indexes/partial.test.ts",
|
|
8472
|
+
"tests/contract/indexes/expression.test.ts",
|
|
8473
|
+
"tests/contract/indexes/prefix.test.ts"
|
|
8347
8474
|
],
|
|
8348
|
-
"notes": "
|
|
8475
|
+
"notes": ""
|
|
8349
8476
|
},
|
|
8350
8477
|
"R-25616-08788-18594-15704-08007-00569-12211-26573": {
|
|
8351
8478
|
"status": "VERIFIED",
|
|
@@ -8880,9 +9007,9 @@
|
|
|
8880
9007
|
"notes": "Schema/FK pragmas verified; storage pragmas N/A or no-op"
|
|
8881
9008
|
},
|
|
8882
9009
|
"R-27290-56511-04892-59250-62806-15127-45739-19284": {
|
|
8883
|
-
"status": "
|
|
9010
|
+
"status": "VERIFIED",
|
|
8884
9011
|
"evidence": [
|
|
8885
|
-
"tests/contract/indexes/"
|
|
9012
|
+
"tests/contract/indexes/partial.test.ts"
|
|
8886
9013
|
],
|
|
8887
9014
|
"notes": ""
|
|
8888
9015
|
},
|
|
@@ -8913,11 +9040,12 @@
|
|
|
8913
9040
|
"notes": "C API / storage / non-SQL surface (c3ref/column_blob.html)"
|
|
8914
9041
|
},
|
|
8915
9042
|
"R-27365-32065-31789-31471-31645-57630-15850-26496": {
|
|
8916
|
-
"status": "
|
|
9043
|
+
"status": "VERIFIED",
|
|
8917
9044
|
"evidence": [
|
|
8918
|
-
"tests/contract/schema/"
|
|
9045
|
+
"tests/contract/schema/strict.test.ts",
|
|
9046
|
+
"tests/fuzz/constraints.test.ts"
|
|
8919
9047
|
],
|
|
8920
|
-
"notes": "
|
|
9048
|
+
"notes": ""
|
|
8921
9049
|
},
|
|
8922
9050
|
"R-27380-17544-22852-64378-45230-22316-25696-47821": {
|
|
8923
9051
|
"status": "PARTIALLY_VERIFIED",
|
|
@@ -8927,12 +9055,14 @@
|
|
|
8927
9055
|
"notes": "Schema/FK pragmas verified; storage pragmas N/A or no-op"
|
|
8928
9056
|
},
|
|
8929
9057
|
"R-27383-10246-01655-25271-51755-59417-27078-62241": {
|
|
8930
|
-
"status": "
|
|
9058
|
+
"status": "VERIFIED",
|
|
8931
9059
|
"evidence": [
|
|
8932
9060
|
"tests/contract/foreign-keys/",
|
|
8933
|
-
"tests/
|
|
9061
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
9062
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
9063
|
+
"tests/fuzz/constraints.test.ts"
|
|
8934
9064
|
],
|
|
8935
|
-
"notes": "
|
|
9065
|
+
"notes": ""
|
|
8936
9066
|
},
|
|
8937
9067
|
"R-27438-53558-39373-64011-10542-64778-48166-54900": {
|
|
8938
9068
|
"status": "VERIFIED",
|
|
@@ -8963,12 +9093,14 @@
|
|
|
8963
9093
|
"notes": ""
|
|
8964
9094
|
},
|
|
8965
9095
|
"R-27484-01467-40660-08782-16756-57898-53117-01697": {
|
|
8966
|
-
"status": "
|
|
9096
|
+
"status": "VERIFIED",
|
|
8967
9097
|
"evidence": [
|
|
8968
9098
|
"tests/contract/foreign-keys/",
|
|
8969
|
-
"tests/
|
|
9099
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
9100
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
9101
|
+
"tests/fuzz/constraints.test.ts"
|
|
8970
9102
|
],
|
|
8971
|
-
"notes": "
|
|
9103
|
+
"notes": ""
|
|
8972
9104
|
},
|
|
8973
9105
|
"R-27484-38990-39416-37657-02655-32272-61477-41469": {
|
|
8974
9106
|
"status": "NOT_APPLICABLE",
|
|
@@ -9203,12 +9335,14 @@
|
|
|
9203
9335
|
"notes": "RTREE module pending Scope-3 implementation"
|
|
9204
9336
|
},
|
|
9205
9337
|
"R-28220-46694-36270-42674-38857-47778-22952-56853": {
|
|
9206
|
-
"status": "
|
|
9338
|
+
"status": "VERIFIED",
|
|
9207
9339
|
"evidence": [
|
|
9208
9340
|
"tests/contract/foreign-keys/",
|
|
9209
|
-
"tests/
|
|
9341
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
9342
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
9343
|
+
"tests/fuzz/constraints.test.ts"
|
|
9210
9344
|
],
|
|
9211
|
-
"notes": "
|
|
9345
|
+
"notes": ""
|
|
9212
9346
|
},
|
|
9213
9347
|
"R-28258-23166-61617-36220-57922-46020-57990-00363": {
|
|
9214
9348
|
"status": "NOT_APPLICABLE",
|
|
@@ -9649,11 +9783,12 @@
|
|
|
9649
9783
|
"notes": "C API / storage / non-SQL surface (c3ref/trace_v2.html)"
|
|
9650
9784
|
},
|
|
9651
9785
|
"R-29579-23096-56379-38525-03672-46829-05671-41323": {
|
|
9652
|
-
"status": "
|
|
9786
|
+
"status": "VERIFIED",
|
|
9653
9787
|
"evidence": [
|
|
9654
|
-
"tests/contract/schema/"
|
|
9788
|
+
"tests/contract/schema/strict.test.ts",
|
|
9789
|
+
"tests/fuzz/constraints.test.ts"
|
|
9655
9790
|
],
|
|
9656
|
-
"notes": "
|
|
9791
|
+
"notes": ""
|
|
9657
9792
|
},
|
|
9658
9793
|
"R-29588-44058-56045-00722-36389-33824-35706-30523": {
|
|
9659
9794
|
"status": "NOT_APPLICABLE",
|
|
@@ -9661,12 +9796,14 @@
|
|
|
9661
9796
|
"notes": "C API / storage / non-SQL surface (c3ref/last_insert_rowid.html)"
|
|
9662
9797
|
},
|
|
9663
9798
|
"R-29604-30395-11418-33165-02079-38209-02467-57208": {
|
|
9664
|
-
"status": "
|
|
9799
|
+
"status": "VERIFIED",
|
|
9665
9800
|
"evidence": [
|
|
9666
9801
|
"tests/contract/foreign-keys/",
|
|
9667
|
-
"tests/
|
|
9802
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
9803
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
9804
|
+
"tests/fuzz/constraints.test.ts"
|
|
9668
9805
|
],
|
|
9669
|
-
"notes": "
|
|
9806
|
+
"notes": ""
|
|
9670
9807
|
},
|
|
9671
9808
|
"R-29609-10377-53436-28646-00070-22457-04173-55911": {
|
|
9672
9809
|
"status": "VERIFIED",
|
|
@@ -9991,12 +10128,14 @@
|
|
|
9991
10128
|
"notes": "string_agg and FILTER edges pending full VERIFIED"
|
|
9992
10129
|
},
|
|
9993
10130
|
"R-30323-21917-40561-21411-57538-63013-10240-64875": {
|
|
9994
|
-
"status": "
|
|
10131
|
+
"status": "VERIFIED",
|
|
9995
10132
|
"evidence": [
|
|
9996
10133
|
"tests/contract/foreign-keys/",
|
|
9997
|
-
"tests/
|
|
10134
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
10135
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
10136
|
+
"tests/fuzz/constraints.test.ts"
|
|
9998
10137
|
],
|
|
9999
|
-
"notes": "
|
|
10138
|
+
"notes": ""
|
|
10000
10139
|
},
|
|
10001
10140
|
"R-30347-18702-41681-51017-11561-03801-56644-21815": {
|
|
10002
10141
|
"status": "VERIFIED",
|
|
@@ -10107,11 +10246,12 @@
|
|
|
10107
10246
|
"notes": "Operators covered; row-value/precedence edges expanding"
|
|
10108
10247
|
},
|
|
10109
10248
|
"R-30732-36962-32140-22588-07980-22821-60699-49282": {
|
|
10110
|
-
"status": "
|
|
10249
|
+
"status": "VERIFIED",
|
|
10111
10250
|
"evidence": [
|
|
10112
|
-
"tests/contract/schema/"
|
|
10251
|
+
"tests/contract/schema/strict.test.ts",
|
|
10252
|
+
"tests/fuzz/constraints.test.ts"
|
|
10113
10253
|
],
|
|
10114
|
-
"notes": "
|
|
10254
|
+
"notes": ""
|
|
10115
10255
|
},
|
|
10116
10256
|
"R-30791-11785-26457-12987-43722-30660-26434-24770": {
|
|
10117
10257
|
"status": "NOT_APPLICABLE",
|
|
@@ -10801,12 +10941,14 @@
|
|
|
10801
10941
|
"notes": "RTREE module pending Scope-3 implementation"
|
|
10802
10942
|
},
|
|
10803
10943
|
"R-32768-47925-14881-49153-08372-50935-16619-06911": {
|
|
10804
|
-
"status": "
|
|
10944
|
+
"status": "VERIFIED",
|
|
10805
10945
|
"evidence": [
|
|
10806
10946
|
"tests/contract/foreign-keys/",
|
|
10807
|
-
"tests/
|
|
10947
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
10948
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
10949
|
+
"tests/fuzz/constraints.test.ts"
|
|
10808
10950
|
],
|
|
10809
|
-
"notes": "
|
|
10951
|
+
"notes": ""
|
|
10810
10952
|
},
|
|
10811
10953
|
"R-32806-65233-63423-39928-44686-28712-07931-12350": {
|
|
10812
10954
|
"status": "NOT_APPLICABLE",
|
|
@@ -10814,12 +10956,14 @@
|
|
|
10814
10956
|
"notes": "C API / storage / non-SQL surface (c3ref/create_collation.html)"
|
|
10815
10957
|
},
|
|
10816
10958
|
"R-32809-14620-63808-12852-40065-57653-46928-34414": {
|
|
10817
|
-
"status": "
|
|
10959
|
+
"status": "VERIFIED",
|
|
10818
10960
|
"evidence": [
|
|
10819
10961
|
"tests/contract/foreign-keys/",
|
|
10820
|
-
"tests/
|
|
10962
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
10963
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
10964
|
+
"tests/fuzz/constraints.test.ts"
|
|
10821
10965
|
],
|
|
10822
|
-
"notes": "
|
|
10966
|
+
"notes": ""
|
|
10823
10967
|
},
|
|
10824
10968
|
"R-32811-57727-45748-41236-27648-12493-19068-34622": {
|
|
10825
10969
|
"status": "VERIFIED",
|
|
@@ -10852,11 +10996,14 @@
|
|
|
10852
10996
|
"notes": "Affinity/storage-class contracts"
|
|
10853
10997
|
},
|
|
10854
10998
|
"R-32925-06786-44484-40389-19544-51015-10010-30515": {
|
|
10855
|
-
"status": "
|
|
10999
|
+
"status": "VERIFIED",
|
|
10856
11000
|
"evidence": [
|
|
10857
|
-
"tests/contract/indexes/"
|
|
11001
|
+
"tests/contract/indexes/",
|
|
11002
|
+
"tests/contract/indexes/partial.test.ts",
|
|
11003
|
+
"tests/contract/indexes/expression.test.ts",
|
|
11004
|
+
"tests/contract/indexes/prefix.test.ts"
|
|
10858
11005
|
],
|
|
10859
|
-
"notes": "
|
|
11006
|
+
"notes": ""
|
|
10860
11007
|
},
|
|
10861
11008
|
"R-33035-16498-10379-54790-22685-33042-10966-12535": {
|
|
10862
11009
|
"status": "NOT_APPLICABLE",
|
|
@@ -10930,12 +11077,14 @@
|
|
|
10930
11077
|
"notes": "C API / storage / non-SQL surface (c3ref/reset.html)"
|
|
10931
11078
|
},
|
|
10932
11079
|
"R-33326-45252-38720-14593-54555-59144-23018-05599": {
|
|
10933
|
-
"status": "
|
|
11080
|
+
"status": "VERIFIED",
|
|
10934
11081
|
"evidence": [
|
|
10935
11082
|
"tests/contract/foreign-keys/",
|
|
10936
|
-
"tests/
|
|
11083
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
11084
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
11085
|
+
"tests/fuzz/constraints.test.ts"
|
|
10937
11086
|
],
|
|
10938
|
-
"notes": "
|
|
11087
|
+
"notes": ""
|
|
10939
11088
|
},
|
|
10940
11089
|
"R-33352-16228-19462-25047-13980-23357-27400-59118": {
|
|
10941
11090
|
"status": "PARTIALLY_VERIFIED",
|
|
@@ -11054,12 +11203,14 @@
|
|
|
11054
11203
|
"notes": "C API / storage / non-SQL surface (c3ref/unlock_notify.html)"
|
|
11055
11204
|
},
|
|
11056
11205
|
"R-33626-48418-46855-58211-38849-29467-54588-01790": {
|
|
11057
|
-
"status": "
|
|
11206
|
+
"status": "VERIFIED",
|
|
11058
11207
|
"evidence": [
|
|
11059
11208
|
"tests/contract/foreign-keys/",
|
|
11060
|
-
"tests/
|
|
11209
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
11210
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
11211
|
+
"tests/fuzz/constraints.test.ts"
|
|
11061
11212
|
],
|
|
11062
|
-
"notes": "
|
|
11213
|
+
"notes": ""
|
|
11063
11214
|
},
|
|
11064
11215
|
"R-33632-01248-54038-23553-34716-03139-59135-16451": {
|
|
11065
11216
|
"status": "NOT_APPLICABLE",
|
|
@@ -11150,12 +11301,14 @@
|
|
|
11150
11301
|
"notes": "Schema/FK pragmas verified; storage pragmas N/A or no-op"
|
|
11151
11302
|
},
|
|
11152
11303
|
"R-33883-28833-60318-48575-53923-47015-06615-40154": {
|
|
11153
|
-
"status": "
|
|
11304
|
+
"status": "VERIFIED",
|
|
11154
11305
|
"evidence": [
|
|
11155
11306
|
"tests/contract/foreign-keys/",
|
|
11156
|
-
"tests/
|
|
11307
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
11308
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
11309
|
+
"tests/fuzz/constraints.test.ts"
|
|
11157
11310
|
],
|
|
11158
|
-
"notes": "
|
|
11311
|
+
"notes": ""
|
|
11159
11312
|
},
|
|
11160
11313
|
"R-33917-24086-34361-61973-51178-03721-35954-00662": {
|
|
11161
11314
|
"status": "VERIFIED",
|
|
@@ -11245,11 +11398,12 @@
|
|
|
11245
11398
|
"notes": ""
|
|
11246
11399
|
},
|
|
11247
11400
|
"R-34136-00089-38264-11064-58519-06639-00881-26978": {
|
|
11248
|
-
"status": "
|
|
11401
|
+
"status": "VERIFIED",
|
|
11249
11402
|
"evidence": [
|
|
11250
|
-
"tests/contract/schema/"
|
|
11403
|
+
"tests/contract/schema/strict.test.ts",
|
|
11404
|
+
"tests/fuzz/constraints.test.ts"
|
|
11251
11405
|
],
|
|
11252
|
-
"notes": "
|
|
11406
|
+
"notes": ""
|
|
11253
11407
|
},
|
|
11254
11408
|
"R-34146-30782-53907-40582-61923-47415-21722-12527": {
|
|
11255
11409
|
"status": "NOT_APPLICABLE",
|
|
@@ -11535,11 +11689,12 @@
|
|
|
11535
11689
|
"notes": "C API / storage / non-SQL surface (fileformat2.html)"
|
|
11536
11690
|
},
|
|
11537
11691
|
"R-34966-53902-34242-28054-07198-58256-53673-36317": {
|
|
11538
|
-
"status": "
|
|
11692
|
+
"status": "VERIFIED",
|
|
11539
11693
|
"evidence": [
|
|
11540
|
-
"tests/contract/schema/"
|
|
11694
|
+
"tests/contract/schema/strict.test.ts",
|
|
11695
|
+
"tests/fuzz/constraints.test.ts"
|
|
11541
11696
|
],
|
|
11542
|
-
"notes": "
|
|
11697
|
+
"notes": ""
|
|
11543
11698
|
},
|
|
11544
11699
|
"R-34979-54336-33279-53576-25867-30233-28350-04331": {
|
|
11545
11700
|
"status": "VERIFIED",
|
|
@@ -11618,12 +11773,14 @@
|
|
|
11618
11773
|
"notes": "C API / storage / non-SQL surface (c3ref/blob_close.html)"
|
|
11619
11774
|
},
|
|
11620
11775
|
"R-35129-58141-36157-07998-30656-14308-25733-01656": {
|
|
11621
|
-
"status": "
|
|
11776
|
+
"status": "VERIFIED",
|
|
11622
11777
|
"evidence": [
|
|
11623
11778
|
"tests/contract/foreign-keys/",
|
|
11624
|
-
"tests/
|
|
11779
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
11780
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
11781
|
+
"tests/fuzz/constraints.test.ts"
|
|
11625
11782
|
],
|
|
11626
|
-
"notes": "
|
|
11783
|
+
"notes": ""
|
|
11627
11784
|
},
|
|
11628
11785
|
"R-35196-57110-30977-27033-46331-62759-56891-62679": {
|
|
11629
11786
|
"status": "NOT_APPLICABLE",
|
|
@@ -11668,12 +11825,14 @@
|
|
|
11668
11825
|
"notes": "C API / storage / non-SQL surface (c3ref/memory_highwater.html)"
|
|
11669
11826
|
},
|
|
11670
11827
|
"R-35290-16460-32571-10958-08768-45451-01146-58774": {
|
|
11671
|
-
"status": "
|
|
11828
|
+
"status": "VERIFIED",
|
|
11672
11829
|
"evidence": [
|
|
11673
11830
|
"tests/contract/foreign-keys/",
|
|
11674
|
-
"tests/
|
|
11831
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
11832
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
11833
|
+
"tests/fuzz/constraints.test.ts"
|
|
11675
11834
|
],
|
|
11676
|
-
"notes": "
|
|
11835
|
+
"notes": ""
|
|
11677
11836
|
},
|
|
11678
11837
|
"R-35325-25517-01545-24178-13996-21143-53189-45296": {
|
|
11679
11838
|
"status": "VERIFIED",
|
|
@@ -11770,12 +11929,14 @@
|
|
|
11770
11929
|
"notes": "C API / storage / non-SQL surface (c3ref/open.html)"
|
|
11771
11930
|
},
|
|
11772
11931
|
"R-35763-48267-24179-20441-32559-50420-39179-45580": {
|
|
11773
|
-
"status": "
|
|
11932
|
+
"status": "VERIFIED",
|
|
11774
11933
|
"evidence": [
|
|
11775
11934
|
"tests/contract/foreign-keys/",
|
|
11776
|
-
"tests/
|
|
11935
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
11936
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
11937
|
+
"tests/fuzz/constraints.test.ts"
|
|
11777
11938
|
],
|
|
11778
|
-
"notes": "
|
|
11939
|
+
"notes": ""
|
|
11779
11940
|
},
|
|
11780
11941
|
"R-35765-61623-59690-19582-04854-45693-22489-08520": {
|
|
11781
11942
|
"status": "NOT_APPLICABLE",
|
|
@@ -11871,12 +12032,14 @@
|
|
|
11871
12032
|
"notes": "RTREE module pending Scope-3 implementation"
|
|
11872
12033
|
},
|
|
11873
12034
|
"R-36018-21755-34988-08386-62029-36954-65009-29361": {
|
|
11874
|
-
"status": "
|
|
12035
|
+
"status": "VERIFIED",
|
|
11875
12036
|
"evidence": [
|
|
11876
12037
|
"tests/contract/foreign-keys/",
|
|
11877
|
-
"tests/
|
|
12038
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
12039
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
12040
|
+
"tests/fuzz/constraints.test.ts"
|
|
11878
12041
|
],
|
|
11879
|
-
"notes": "
|
|
12042
|
+
"notes": ""
|
|
11880
12043
|
},
|
|
11881
12044
|
"R-36043-10590-35190-29655-36320-51519-10161-16668": {
|
|
11882
12045
|
"status": "NOT_APPLICABLE",
|
|
@@ -11952,9 +12115,9 @@
|
|
|
11952
12115
|
"notes": "C API / storage / non-SQL surface (wal.html)"
|
|
11953
12116
|
},
|
|
11954
12117
|
"R-36357-08369-42604-06511-16723-17506-10955-34539": {
|
|
11955
|
-
"status": "
|
|
12118
|
+
"status": "VERIFIED",
|
|
11956
12119
|
"evidence": [
|
|
11957
|
-
"tests/contract/indexes/"
|
|
12120
|
+
"tests/contract/indexes/partial.test.ts"
|
|
11958
12121
|
],
|
|
11959
12122
|
"notes": ""
|
|
11960
12123
|
},
|
|
@@ -12050,9 +12213,9 @@
|
|
|
12050
12213
|
"notes": "C API / storage / non-SQL surface (c3ref/mprintf.html)"
|
|
12051
12214
|
},
|
|
12052
12215
|
"R-36612-64789-14111-46629-37131-49911-14128-04823": {
|
|
12053
|
-
"status": "
|
|
12216
|
+
"status": "VERIFIED",
|
|
12054
12217
|
"evidence": [
|
|
12055
|
-
"tests/contract/indexes/"
|
|
12218
|
+
"tests/contract/indexes/partial.test.ts"
|
|
12056
12219
|
],
|
|
12057
12220
|
"notes": ""
|
|
12058
12221
|
},
|
|
@@ -12303,12 +12466,14 @@
|
|
|
12303
12466
|
"notes": "C API / storage / non-SQL surface (c3ref/blob_open.html)"
|
|
12304
12467
|
},
|
|
12305
12468
|
"R-37672-59189-62965-02252-24561-10805-11427-09542": {
|
|
12306
|
-
"status": "
|
|
12469
|
+
"status": "VERIFIED",
|
|
12307
12470
|
"evidence": [
|
|
12308
12471
|
"tests/contract/foreign-keys/",
|
|
12309
|
-
"tests/
|
|
12472
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
12473
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
12474
|
+
"tests/fuzz/constraints.test.ts"
|
|
12310
12475
|
],
|
|
12311
|
-
"notes": "
|
|
12476
|
+
"notes": ""
|
|
12312
12477
|
},
|
|
12313
12478
|
"R-37687-21505-22371-30401-23060-65345-45987-08312": {
|
|
12314
12479
|
"status": "PARTIALLY_VERIFIED",
|
|
@@ -12323,12 +12488,14 @@
|
|
|
12323
12488
|
"notes": "C API / storage / non-SQL surface (c3ref/blob_open.html)"
|
|
12324
12489
|
},
|
|
12325
12490
|
"R-37736-42616-04169-53390-00856-45033-53695-63004": {
|
|
12326
|
-
"status": "
|
|
12491
|
+
"status": "VERIFIED",
|
|
12327
12492
|
"evidence": [
|
|
12328
12493
|
"tests/contract/foreign-keys/",
|
|
12329
|
-
"tests/
|
|
12494
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
12495
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
12496
|
+
"tests/fuzz/constraints.test.ts"
|
|
12330
12497
|
],
|
|
12331
|
-
"notes": "
|
|
12498
|
+
"notes": ""
|
|
12332
12499
|
},
|
|
12333
12500
|
"R-37760-36374-21935-46380-43039-31326-26713-65030": {
|
|
12334
12501
|
"status": "NOT_APPLICABLE",
|
|
@@ -12429,12 +12596,14 @@
|
|
|
12429
12596
|
"notes": "C API / storage / non-SQL surface (c3ref/bind_blob.html)"
|
|
12430
12597
|
},
|
|
12431
12598
|
"R-37997-42187-51725-59091-37072-50205-56712-26602": {
|
|
12432
|
-
"status": "
|
|
12599
|
+
"status": "VERIFIED",
|
|
12433
12600
|
"evidence": [
|
|
12434
12601
|
"tests/contract/foreign-keys/",
|
|
12435
|
-
"tests/
|
|
12602
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
12603
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
12604
|
+
"tests/fuzz/constraints.test.ts"
|
|
12436
12605
|
],
|
|
12437
|
-
"notes": "
|
|
12606
|
+
"notes": ""
|
|
12438
12607
|
},
|
|
12439
12608
|
"R-38023-18396-22713-13690-61527-29951-04231-55806": {
|
|
12440
12609
|
"status": "VERIFIED",
|
|
@@ -12458,9 +12627,9 @@
|
|
|
12458
12627
|
"notes": "RTREE module pending Scope-3 implementation"
|
|
12459
12628
|
},
|
|
12460
12629
|
"R-38062-30057-54968-60320-51568-47118-43997-50197": {
|
|
12461
|
-
"status": "
|
|
12630
|
+
"status": "VERIFIED",
|
|
12462
12631
|
"evidence": [
|
|
12463
|
-
"tests/contract/indexes/"
|
|
12632
|
+
"tests/contract/indexes/partial.test.ts"
|
|
12464
12633
|
],
|
|
12465
12634
|
"notes": ""
|
|
12466
12635
|
},
|
|
@@ -12513,11 +12682,12 @@
|
|
|
12513
12682
|
"notes": ""
|
|
12514
12683
|
},
|
|
12515
12684
|
"R-38229-16527-29793-36324-34944-03946-52461-48816": {
|
|
12516
|
-
"status": "
|
|
12685
|
+
"status": "VERIFIED",
|
|
12517
12686
|
"evidence": [
|
|
12518
|
-
"tests/contract/schema/"
|
|
12687
|
+
"tests/contract/schema/strict.test.ts",
|
|
12688
|
+
"tests/fuzz/constraints.test.ts"
|
|
12519
12689
|
],
|
|
12520
|
-
"notes": "
|
|
12690
|
+
"notes": ""
|
|
12521
12691
|
},
|
|
12522
12692
|
"R-38229-40159-56776-58417-62683-03427-34499-02992": {
|
|
12523
12693
|
"status": "NOT_APPLICABLE",
|
|
@@ -12821,9 +12991,9 @@
|
|
|
12821
12991
|
"notes": "C API / storage / non-SQL surface (c3ref/expanded_sql.html)"
|
|
12822
12992
|
},
|
|
12823
12993
|
"R-39082-45490-57705-20308-15536-26647-22917-12593": {
|
|
12824
|
-
"status": "
|
|
12994
|
+
"status": "VERIFIED",
|
|
12825
12995
|
"evidence": [
|
|
12826
|
-
"tests/contract/indexes/"
|
|
12996
|
+
"tests/contract/indexes/partial.test.ts"
|
|
12827
12997
|
],
|
|
12828
12998
|
"notes": ""
|
|
12829
12999
|
},
|
|
@@ -12879,9 +13049,9 @@
|
|
|
12879
13049
|
"notes": "RTREE module pending Scope-3 implementation"
|
|
12880
13050
|
},
|
|
12881
13051
|
"R-39210-36906-47474-04238-18863-57364-16133-33806": {
|
|
12882
|
-
"status": "
|
|
13052
|
+
"status": "VERIFIED",
|
|
12883
13053
|
"evidence": [
|
|
12884
|
-
"tests/contract/indexes/"
|
|
13054
|
+
"tests/contract/indexes/partial.test.ts"
|
|
12885
13055
|
],
|
|
12886
13056
|
"notes": ""
|
|
12887
13057
|
},
|
|
@@ -12903,11 +13073,12 @@
|
|
|
12903
13073
|
"notes": "C API / storage / non-SQL surface (fileformat2.html)"
|
|
12904
13074
|
},
|
|
12905
13075
|
"R-39255-30546-51738-15531-11992-13732-26407-08285": {
|
|
12906
|
-
"status": "
|
|
13076
|
+
"status": "VERIFIED",
|
|
12907
13077
|
"evidence": [
|
|
12908
|
-
"tests/contract/schema/"
|
|
13078
|
+
"tests/contract/schema/strict.test.ts",
|
|
13079
|
+
"tests/fuzz/constraints.test.ts"
|
|
12909
13080
|
],
|
|
12910
|
-
"notes": "
|
|
13081
|
+
"notes": ""
|
|
12911
13082
|
},
|
|
12912
13083
|
"R-39265-04070-30004-05781-22531-14920-64985-48690": {
|
|
12913
13084
|
"status": "VERIFIED",
|
|
@@ -13031,12 +13202,14 @@
|
|
|
13031
13202
|
"notes": ""
|
|
13032
13203
|
},
|
|
13033
13204
|
"R-39692-12488-54491-44352-04912-13609-39585-46004": {
|
|
13034
|
-
"status": "
|
|
13205
|
+
"status": "VERIFIED",
|
|
13035
13206
|
"evidence": [
|
|
13036
13207
|
"tests/contract/foreign-keys/",
|
|
13037
|
-
"tests/
|
|
13208
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
13209
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
13210
|
+
"tests/fuzz/constraints.test.ts"
|
|
13038
13211
|
],
|
|
13039
|
-
"notes": "
|
|
13212
|
+
"notes": ""
|
|
13040
13213
|
},
|
|
13041
13214
|
"R-39719-17021-25795-58953-42832-28593-26146-38577": {
|
|
13042
13215
|
"status": "NOT_APPLICABLE",
|
|
@@ -13113,11 +13286,14 @@
|
|
|
13113
13286
|
"notes": ""
|
|
13114
13287
|
},
|
|
13115
13288
|
"R-40025-59984-53912-08799-37788-65154-58103-39921": {
|
|
13116
|
-
"status": "
|
|
13289
|
+
"status": "VERIFIED",
|
|
13117
13290
|
"evidence": [
|
|
13118
|
-
"tests/contract/indexes/"
|
|
13291
|
+
"tests/contract/indexes/",
|
|
13292
|
+
"tests/contract/indexes/partial.test.ts",
|
|
13293
|
+
"tests/contract/indexes/expression.test.ts",
|
|
13294
|
+
"tests/contract/indexes/prefix.test.ts"
|
|
13119
13295
|
],
|
|
13120
|
-
"notes": "
|
|
13296
|
+
"notes": ""
|
|
13121
13297
|
},
|
|
13122
13298
|
"R-40026-10531-12029-61961-20483-43769-01249-19476": {
|
|
13123
13299
|
"status": "VERIFIED",
|
|
@@ -13551,12 +13727,14 @@
|
|
|
13551
13727
|
"notes": ""
|
|
13552
13728
|
},
|
|
13553
13729
|
"R-41062-34431-24503-40012-23472-27163-07838-01416": {
|
|
13554
|
-
"status": "
|
|
13730
|
+
"status": "VERIFIED",
|
|
13555
13731
|
"evidence": [
|
|
13556
13732
|
"tests/contract/foreign-keys/",
|
|
13557
|
-
"tests/
|
|
13733
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
13734
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
13735
|
+
"tests/fuzz/constraints.test.ts"
|
|
13558
13736
|
],
|
|
13559
|
-
"notes": "
|
|
13737
|
+
"notes": ""
|
|
13560
13738
|
},
|
|
13561
13739
|
"R-41079-08948-19463-36063-08985-63659-05958-53275": {
|
|
13562
13740
|
"status": "VERIFIED",
|
|
@@ -13785,12 +13963,14 @@
|
|
|
13785
13963
|
"notes": "C API / storage / non-SQL surface (c3ref/c_limit_attached.html)"
|
|
13786
13964
|
},
|
|
13787
13965
|
"R-41784-13339-39195-36557-35011-50589-62735-17221": {
|
|
13788
|
-
"status": "
|
|
13966
|
+
"status": "VERIFIED",
|
|
13789
13967
|
"evidence": [
|
|
13790
13968
|
"tests/contract/foreign-keys/",
|
|
13791
|
-
"tests/
|
|
13969
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
13970
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
13971
|
+
"tests/fuzz/constraints.test.ts"
|
|
13792
13972
|
],
|
|
13793
|
-
"notes": "
|
|
13973
|
+
"notes": ""
|
|
13794
13974
|
},
|
|
13795
13975
|
"R-41795-40039-43827-16838-58364-41518-15809-62342": {
|
|
13796
13976
|
"status": "NOT_APPLICABLE",
|
|
@@ -13798,9 +13978,9 @@
|
|
|
13798
13978
|
"notes": "C API / storage / non-SQL surface (fileformat2.html)"
|
|
13799
13979
|
},
|
|
13800
13980
|
"R-41796-02552-46731-27208-23017-23175-41935-19333": {
|
|
13801
|
-
"status": "
|
|
13981
|
+
"status": "VERIFIED",
|
|
13802
13982
|
"evidence": [
|
|
13803
|
-
"tests/contract/indexes/"
|
|
13983
|
+
"tests/contract/indexes/partial.test.ts"
|
|
13804
13984
|
],
|
|
13805
13985
|
"notes": ""
|
|
13806
13986
|
},
|
|
@@ -13817,11 +13997,12 @@
|
|
|
13817
13997
|
"notes": "Schema/FK pragmas verified; storage pragmas N/A or no-op"
|
|
13818
13998
|
},
|
|
13819
13999
|
"R-41881-38269-61239-25689-14129-18867-37202-03971": {
|
|
13820
|
-
"status": "
|
|
14000
|
+
"status": "VERIFIED",
|
|
13821
14001
|
"evidence": [
|
|
13822
|
-
"tests/contract/schema/"
|
|
14002
|
+
"tests/contract/schema/strict.test.ts",
|
|
14003
|
+
"tests/fuzz/constraints.test.ts"
|
|
13823
14004
|
],
|
|
13824
|
-
"notes": "
|
|
14005
|
+
"notes": ""
|
|
13825
14006
|
},
|
|
13826
14007
|
"R-41898-15939-51576-48964-07633-48670-39877-19524": {
|
|
13827
14008
|
"status": "NOT_APPLICABLE",
|
|
@@ -13849,9 +14030,9 @@
|
|
|
13849
14030
|
"notes": "C API / storage / non-SQL surface (c3ref/blob_close.html)"
|
|
13850
14031
|
},
|
|
13851
14032
|
"R-41964-12887-53267-54582-29615-62168-19001-17157": {
|
|
13852
|
-
"status": "
|
|
14033
|
+
"status": "VERIFIED",
|
|
13853
14034
|
"evidence": [
|
|
13854
|
-
"tests/contract/indexes/"
|
|
14035
|
+
"tests/contract/indexes/partial.test.ts"
|
|
13855
14036
|
],
|
|
13856
14037
|
"notes": ""
|
|
13857
14038
|
},
|
|
@@ -13925,11 +14106,12 @@
|
|
|
13925
14106
|
"notes": "Unmapped SQL source: vtab.html"
|
|
13926
14107
|
},
|
|
13927
14108
|
"R-42053-06220-45520-18434-62327-05125-05247-18783": {
|
|
13928
|
-
"status": "
|
|
14109
|
+
"status": "VERIFIED",
|
|
13929
14110
|
"evidence": [
|
|
13930
|
-
"tests/contract/schema/"
|
|
14111
|
+
"tests/contract/schema/strict.test.ts",
|
|
14112
|
+
"tests/fuzz/constraints.test.ts"
|
|
13931
14113
|
],
|
|
13932
|
-
"notes": "
|
|
14114
|
+
"notes": ""
|
|
13933
14115
|
},
|
|
13934
14116
|
"R-42053-10634-10178-57084-38599-37696-52821-41019": {
|
|
13935
14117
|
"status": "NOT_APPLICABLE",
|
|
@@ -14008,12 +14190,14 @@
|
|
|
14008
14190
|
"notes": "unixepoch/timediff pending"
|
|
14009
14191
|
},
|
|
14010
14192
|
"R-42264-30503-59734-27182-09604-54439-24686-19729": {
|
|
14011
|
-
"status": "
|
|
14193
|
+
"status": "VERIFIED",
|
|
14012
14194
|
"evidence": [
|
|
14013
14195
|
"tests/contract/foreign-keys/",
|
|
14014
|
-
"tests/
|
|
14196
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
14197
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
14198
|
+
"tests/fuzz/constraints.test.ts"
|
|
14015
14199
|
],
|
|
14016
|
-
"notes": "
|
|
14200
|
+
"notes": ""
|
|
14017
14201
|
},
|
|
14018
14202
|
"R-42297-37851-22979-34861-45337-51350-47253-02521": {
|
|
14019
14203
|
"status": "NOT_APPLICABLE",
|
|
@@ -14064,12 +14248,14 @@
|
|
|
14064
14248
|
"notes": "C API / storage / non-SQL surface (c3ref/blob_read.html)"
|
|
14065
14249
|
},
|
|
14066
14250
|
"R-42412-59321-17229-61863-37154-26359-45547-07737": {
|
|
14067
|
-
"status": "
|
|
14251
|
+
"status": "VERIFIED",
|
|
14068
14252
|
"evidence": [
|
|
14069
14253
|
"tests/contract/foreign-keys/",
|
|
14070
|
-
"tests/
|
|
14254
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
14255
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
14256
|
+
"tests/fuzz/constraints.test.ts"
|
|
14071
14257
|
],
|
|
14072
|
-
"notes": "
|
|
14258
|
+
"notes": ""
|
|
14073
14259
|
},
|
|
14074
14260
|
"R-42413-48699-18180-28011-52485-52164-16827-39292": {
|
|
14075
14261
|
"status": "UNSUPPORTED",
|
|
@@ -14195,11 +14381,12 @@
|
|
|
14195
14381
|
"notes": "C API / storage / non-SQL surface (c3ref/bind_blob.html)"
|
|
14196
14382
|
},
|
|
14197
14383
|
"R-42858-58769-58822-33299-41637-22635-42274-51914": {
|
|
14198
|
-
"status": "
|
|
14384
|
+
"status": "VERIFIED",
|
|
14199
14385
|
"evidence": [
|
|
14200
|
-
"tests/contract/schema/"
|
|
14386
|
+
"tests/contract/schema/strict.test.ts",
|
|
14387
|
+
"tests/fuzz/constraints.test.ts"
|
|
14201
14388
|
],
|
|
14202
|
-
"notes": "
|
|
14389
|
+
"notes": ""
|
|
14203
14390
|
},
|
|
14204
14391
|
"R-42868-39706-29794-00885-30480-27776-00308-11610": {
|
|
14205
14392
|
"status": "NOT_APPLICABLE",
|
|
@@ -14265,12 +14452,14 @@
|
|
|
14265
14452
|
"notes": "C API / storage / non-SQL surface (c3ref/open.html)"
|
|
14266
14453
|
},
|
|
14267
14454
|
"R-43040-62530-50072-37699-18765-48451-48404-22344": {
|
|
14268
|
-
"status": "
|
|
14455
|
+
"status": "VERIFIED",
|
|
14269
14456
|
"evidence": [
|
|
14270
14457
|
"tests/contract/foreign-keys/",
|
|
14271
|
-
"tests/
|
|
14458
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
14459
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
14460
|
+
"tests/fuzz/constraints.test.ts"
|
|
14272
14461
|
],
|
|
14273
|
-
"notes": "
|
|
14462
|
+
"notes": ""
|
|
14274
14463
|
},
|
|
14275
14464
|
"R-43042-22504-56439-09446-23422-01554-61314-54021": {
|
|
14276
14465
|
"status": "PARTIALLY_VERIFIED",
|
|
@@ -14609,9 +14798,9 @@
|
|
|
14609
14798
|
"notes": ""
|
|
14610
14799
|
},
|
|
14611
14800
|
"R-43696-56835-52509-34515-30380-28351-43291-45019": {
|
|
14612
|
-
"status": "
|
|
14801
|
+
"status": "VERIFIED",
|
|
14613
14802
|
"evidence": [
|
|
14614
|
-
"tests/contract/indexes/"
|
|
14803
|
+
"tests/contract/indexes/partial.test.ts"
|
|
14615
14804
|
],
|
|
14616
14805
|
"notes": ""
|
|
14617
14806
|
},
|
|
@@ -14664,19 +14853,22 @@
|
|
|
14664
14853
|
"notes": "C API / storage / non-SQL surface (fileformat2.html)"
|
|
14665
14854
|
},
|
|
14666
14855
|
"R-43870-25292-29173-31012-48772-23978-21156-46728": {
|
|
14667
|
-
"status": "
|
|
14856
|
+
"status": "VERIFIED",
|
|
14668
14857
|
"evidence": [
|
|
14669
|
-
"tests/contract/schema/"
|
|
14858
|
+
"tests/contract/schema/strict.test.ts",
|
|
14859
|
+
"tests/fuzz/constraints.test.ts"
|
|
14670
14860
|
],
|
|
14671
|
-
"notes": "
|
|
14861
|
+
"notes": ""
|
|
14672
14862
|
},
|
|
14673
14863
|
"R-43879-08025-52526-08970-15750-21422-30684-37873": {
|
|
14674
|
-
"status": "
|
|
14864
|
+
"status": "VERIFIED",
|
|
14675
14865
|
"evidence": [
|
|
14676
14866
|
"tests/contract/foreign-keys/",
|
|
14677
|
-
"tests/
|
|
14867
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
14868
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
14869
|
+
"tests/fuzz/constraints.test.ts"
|
|
14678
14870
|
],
|
|
14679
|
-
"notes": "
|
|
14871
|
+
"notes": ""
|
|
14680
14872
|
},
|
|
14681
14873
|
"R-43881-23456-20563-20957-51474-28716-20128-57454": {
|
|
14682
14874
|
"status": "NOT_APPLICABLE",
|
|
@@ -14814,12 +15006,14 @@
|
|
|
14814
15006
|
"notes": "RTREE module pending Scope-3 implementation"
|
|
14815
15007
|
},
|
|
14816
15008
|
"R-44261-39702-04875-31790-36524-45169-57836-16173": {
|
|
14817
|
-
"status": "
|
|
15009
|
+
"status": "VERIFIED",
|
|
14818
15010
|
"evidence": [
|
|
14819
15011
|
"tests/contract/foreign-keys/",
|
|
14820
|
-
"tests/
|
|
15012
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
15013
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
15014
|
+
"tests/fuzz/constraints.test.ts"
|
|
14821
15015
|
],
|
|
14822
|
-
"notes": "
|
|
15016
|
+
"notes": ""
|
|
14823
15017
|
},
|
|
14824
15018
|
"R-44270-63173-43365-51432-46246-26535-62506-06270": {
|
|
14825
15019
|
"status": "UNSUPPORTED",
|
|
@@ -14842,12 +15036,14 @@
|
|
|
14842
15036
|
"notes": "C API / storage / non-SQL surface (c3ref/wal_hook.html)"
|
|
14843
15037
|
},
|
|
14844
15038
|
"R-44295-13823-09058-27289-44091-57467-52153-35683": {
|
|
14845
|
-
"status": "
|
|
15039
|
+
"status": "VERIFIED",
|
|
14846
15040
|
"evidence": [
|
|
14847
15041
|
"tests/contract/foreign-keys/",
|
|
14848
|
-
"tests/
|
|
15042
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
15043
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
15044
|
+
"tests/fuzz/constraints.test.ts"
|
|
14849
15045
|
],
|
|
14850
|
-
"notes": "
|
|
15046
|
+
"notes": ""
|
|
14851
15047
|
},
|
|
14852
15048
|
"R-44324-41166-42942-47705-27184-58566-20473-14339": {
|
|
14853
15049
|
"status": "VERIFIED",
|
|
@@ -14874,12 +15070,14 @@
|
|
|
14874
15070
|
"notes": "Schema/FK pragmas verified; storage pragmas N/A or no-op"
|
|
14875
15071
|
},
|
|
14876
15072
|
"R-44355-00270-30749-42094-52510-11222-59749-40119": {
|
|
14877
|
-
"status": "
|
|
15073
|
+
"status": "VERIFIED",
|
|
14878
15074
|
"evidence": [
|
|
14879
15075
|
"tests/contract/foreign-keys/",
|
|
14880
|
-
"tests/
|
|
15076
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
15077
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
15078
|
+
"tests/fuzz/constraints.test.ts"
|
|
14881
15079
|
],
|
|
14882
|
-
"notes": "
|
|
15080
|
+
"notes": ""
|
|
14883
15081
|
},
|
|
14884
15082
|
"R-44364-00581-20291-58587-51533-44159-46989-51099": {
|
|
14885
15083
|
"status": "UNSUPPORTED",
|
|
@@ -15071,11 +15269,12 @@
|
|
|
15071
15269
|
"notes": "C API / storage / non-SQL surface (c3ref/pcache_methods2.html)"
|
|
15072
15270
|
},
|
|
15073
15271
|
"R-44991-05464-53731-06799-53286-51355-12803-56046": {
|
|
15074
|
-
"status": "
|
|
15272
|
+
"status": "VERIFIED",
|
|
15075
15273
|
"evidence": [
|
|
15076
|
-
"tests/contract/schema/"
|
|
15274
|
+
"tests/contract/schema/strict.test.ts",
|
|
15275
|
+
"tests/fuzz/constraints.test.ts"
|
|
15077
15276
|
],
|
|
15078
|
-
"notes": "
|
|
15277
|
+
"notes": ""
|
|
15079
15278
|
},
|
|
15080
15279
|
"R-44992-52812-59111-17856-46428-55199-28475-08004": {
|
|
15081
15280
|
"status": "NOT_APPLICABLE",
|
|
@@ -15306,12 +15505,14 @@
|
|
|
15306
15505
|
"notes": "C API / storage / non-SQL surface (fileformat2.html)"
|
|
15307
15506
|
},
|
|
15308
15507
|
"R-45488-08504-64399-03603-60147-65359-06274-60393": {
|
|
15309
|
-
"status": "
|
|
15508
|
+
"status": "VERIFIED",
|
|
15310
15509
|
"evidence": [
|
|
15311
15510
|
"tests/contract/foreign-keys/",
|
|
15312
|
-
"tests/
|
|
15511
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
15512
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
15513
|
+
"tests/fuzz/constraints.test.ts"
|
|
15313
15514
|
],
|
|
15314
|
-
"notes": "
|
|
15515
|
+
"notes": ""
|
|
15315
15516
|
},
|
|
15316
15517
|
"R-45493-35653-32389-26460-18465-38474-56599-09288": {
|
|
15317
15518
|
"status": "VERIFIED",
|
|
@@ -15339,9 +15540,9 @@
|
|
|
15339
15540
|
"notes": "Schema/FK pragmas verified; storage pragmas N/A or no-op"
|
|
15340
15541
|
},
|
|
15341
15542
|
"R-45667-58607-22220-28108-32382-15512-20537-62688": {
|
|
15342
|
-
"status": "
|
|
15543
|
+
"status": "VERIFIED",
|
|
15343
15544
|
"evidence": [
|
|
15344
|
-
"tests/contract/indexes/"
|
|
15545
|
+
"tests/contract/indexes/partial.test.ts"
|
|
15345
15546
|
],
|
|
15346
15547
|
"notes": ""
|
|
15347
15548
|
},
|
|
@@ -15607,9 +15808,9 @@
|
|
|
15607
15808
|
"notes": "Oracle builtin inventory closing"
|
|
15608
15809
|
},
|
|
15609
15810
|
"R-46455-06721-25633-38567-39133-09580-16982-03702": {
|
|
15610
|
-
"status": "
|
|
15811
|
+
"status": "VERIFIED",
|
|
15611
15812
|
"evidence": [
|
|
15612
|
-
"tests/contract/indexes/"
|
|
15813
|
+
"tests/contract/indexes/partial.test.ts"
|
|
15613
15814
|
],
|
|
15614
15815
|
"notes": ""
|
|
15615
15816
|
},
|
|
@@ -15676,12 +15877,14 @@
|
|
|
15676
15877
|
"notes": "C API / storage / non-SQL surface (c3ref/status.html)"
|
|
15677
15878
|
},
|
|
15678
15879
|
"R-46649-58537-03180-36291-48705-13434-30415-43306": {
|
|
15679
|
-
"status": "
|
|
15880
|
+
"status": "VERIFIED",
|
|
15680
15881
|
"evidence": [
|
|
15681
15882
|
"tests/contract/foreign-keys/",
|
|
15682
|
-
"tests/
|
|
15883
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
15884
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
15885
|
+
"tests/fuzz/constraints.test.ts"
|
|
15683
15886
|
],
|
|
15684
|
-
"notes": "
|
|
15887
|
+
"notes": ""
|
|
15685
15888
|
},
|
|
15686
15889
|
"R-46656-45156-45910-65271-53395-31310-28369-14407": {
|
|
15687
15890
|
"status": "NOT_APPLICABLE",
|
|
@@ -15820,12 +16023,14 @@
|
|
|
15820
16023
|
"notes": "Operators covered; row-value/precedence edges expanding"
|
|
15821
16024
|
},
|
|
15822
16025
|
"R-47080-02069-19289-28177-02416-33406-46082-01364": {
|
|
15823
|
-
"status": "
|
|
16026
|
+
"status": "VERIFIED",
|
|
15824
16027
|
"evidence": [
|
|
15825
16028
|
"tests/contract/foreign-keys/",
|
|
15826
|
-
"tests/
|
|
16029
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
16030
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
16031
|
+
"tests/fuzz/constraints.test.ts"
|
|
15827
16032
|
],
|
|
15828
|
-
"notes": "
|
|
16033
|
+
"notes": ""
|
|
15829
16034
|
},
|
|
15830
16035
|
"R-47085-17460-48136-50298-50839-31630-41230-33764": {
|
|
15831
16036
|
"status": "PARTIALLY_VERIFIED",
|
|
@@ -16147,20 +16352,24 @@
|
|
|
16147
16352
|
"notes": "Operators covered; row-value/precedence edges expanding"
|
|
16148
16353
|
},
|
|
16149
16354
|
"R-47936-10044-12721-09990-49763-27309-53307-48514": {
|
|
16150
|
-
"status": "
|
|
16355
|
+
"status": "VERIFIED",
|
|
16151
16356
|
"evidence": [
|
|
16152
16357
|
"tests/contract/foreign-keys/",
|
|
16153
|
-
"tests/
|
|
16358
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
16359
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
16360
|
+
"tests/fuzz/constraints.test.ts"
|
|
16154
16361
|
],
|
|
16155
|
-
"notes": "
|
|
16362
|
+
"notes": ""
|
|
16156
16363
|
},
|
|
16157
16364
|
"R-47952-62498-54054-51429-18050-07399-51898-49231": {
|
|
16158
|
-
"status": "
|
|
16365
|
+
"status": "VERIFIED",
|
|
16159
16366
|
"evidence": [
|
|
16160
16367
|
"tests/contract/foreign-keys/",
|
|
16161
|
-
"tests/
|
|
16368
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
16369
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
16370
|
+
"tests/fuzz/constraints.test.ts"
|
|
16162
16371
|
],
|
|
16163
|
-
"notes": "
|
|
16372
|
+
"notes": ""
|
|
16164
16373
|
},
|
|
16165
16374
|
"R-47973-48020-37967-63330-01173-43664-55232-05863": {
|
|
16166
16375
|
"status": "VERIFIED",
|
|
@@ -16205,12 +16414,14 @@
|
|
|
16205
16414
|
"notes": "Operators covered; row-value/precedence edges expanding"
|
|
16206
16415
|
},
|
|
16207
16416
|
"R-48124-63225-09560-63618-32598-12840-01456-15525": {
|
|
16208
|
-
"status": "
|
|
16417
|
+
"status": "VERIFIED",
|
|
16209
16418
|
"evidence": [
|
|
16210
16419
|
"tests/contract/foreign-keys/",
|
|
16211
|
-
"tests/
|
|
16420
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
16421
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
16422
|
+
"tests/fuzz/constraints.test.ts"
|
|
16212
16423
|
],
|
|
16213
|
-
"notes": "
|
|
16424
|
+
"notes": ""
|
|
16214
16425
|
},
|
|
16215
16426
|
"R-48126-27717-31293-47858-22865-09722-12158-06374": {
|
|
16216
16427
|
"status": "VERIFIED",
|
|
@@ -16272,12 +16483,14 @@
|
|
|
16272
16483
|
"notes": "C API / storage / non-SQL surface (c3ref/c_dbconfig_defensive.html)"
|
|
16273
16484
|
},
|
|
16274
16485
|
"R-48270-44282-22791-02682-41212-30485-35514-10094": {
|
|
16275
|
-
"status": "
|
|
16486
|
+
"status": "VERIFIED",
|
|
16276
16487
|
"evidence": [
|
|
16277
16488
|
"tests/contract/foreign-keys/",
|
|
16278
|
-
"tests/
|
|
16489
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
16490
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
16491
|
+
"tests/fuzz/constraints.test.ts"
|
|
16279
16492
|
],
|
|
16280
|
-
"notes": "
|
|
16493
|
+
"notes": ""
|
|
16281
16494
|
},
|
|
16282
16495
|
"R-48313-35799-57609-24734-64937-33072-43085-04424": {
|
|
16283
16496
|
"status": "NOT_APPLICABLE",
|
|
@@ -16320,12 +16533,14 @@
|
|
|
16320
16533
|
"notes": "C API / storage / non-SQL surface (c3ref/blob_open.html)"
|
|
16321
16534
|
},
|
|
16322
16535
|
"R-48391-38472-46406-48874-31358-29787-61398-48182": {
|
|
16323
|
-
"status": "
|
|
16536
|
+
"status": "VERIFIED",
|
|
16324
16537
|
"evidence": [
|
|
16325
16538
|
"tests/contract/foreign-keys/",
|
|
16326
|
-
"tests/
|
|
16539
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
16540
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
16541
|
+
"tests/fuzz/constraints.test.ts"
|
|
16327
16542
|
],
|
|
16328
|
-
"notes": "
|
|
16543
|
+
"notes": ""
|
|
16329
16544
|
},
|
|
16330
16545
|
"R-48422-12154-41896-26820-42783-11801-54961-22024": {
|
|
16331
16546
|
"status": "NOT_APPLICABLE",
|
|
@@ -16357,11 +16572,12 @@
|
|
|
16357
16572
|
"notes": ":memory:"
|
|
16358
16573
|
},
|
|
16359
16574
|
"R-48533-46594-08674-01218-43796-46472-34581-15116": {
|
|
16360
|
-
"status": "
|
|
16575
|
+
"status": "VERIFIED",
|
|
16361
16576
|
"evidence": [
|
|
16362
|
-
"tests/contract/schema/"
|
|
16577
|
+
"tests/contract/schema/strict.test.ts",
|
|
16578
|
+
"tests/fuzz/constraints.test.ts"
|
|
16363
16579
|
],
|
|
16364
|
-
"notes": "
|
|
16580
|
+
"notes": ""
|
|
16365
16581
|
},
|
|
16366
16582
|
"R-48560-31808-12822-42502-57159-22070-42910-14910": {
|
|
16367
16583
|
"status": "NOT_APPLICABLE",
|
|
@@ -16394,11 +16610,14 @@
|
|
|
16394
16610
|
"notes": "C API / storage / non-SQL surface (c3ref/hard_heap_limit64.html)"
|
|
16395
16611
|
},
|
|
16396
16612
|
"R-48616-47814-10585-42560-43373-45165-03302-15640": {
|
|
16397
|
-
"status": "
|
|
16613
|
+
"status": "VERIFIED",
|
|
16398
16614
|
"evidence": [
|
|
16399
|
-
"tests/contract/indexes/"
|
|
16615
|
+
"tests/contract/indexes/",
|
|
16616
|
+
"tests/contract/indexes/partial.test.ts",
|
|
16617
|
+
"tests/contract/indexes/expression.test.ts",
|
|
16618
|
+
"tests/contract/indexes/prefix.test.ts"
|
|
16400
16619
|
],
|
|
16401
|
-
"notes": "
|
|
16620
|
+
"notes": ""
|
|
16402
16621
|
},
|
|
16403
16622
|
"R-48666-10705-60913-59085-01718-56024-53514-10016": {
|
|
16404
16623
|
"status": "NOT_APPLICABLE",
|
|
@@ -16534,11 +16753,12 @@
|
|
|
16534
16753
|
"notes": "C API / storage / non-SQL surface (c3ref/close.html)"
|
|
16535
16754
|
},
|
|
16536
16755
|
"R-49037-06490-58039-52656-29480-55472-29071-52724": {
|
|
16537
|
-
"status": "
|
|
16756
|
+
"status": "VERIFIED",
|
|
16538
16757
|
"evidence": [
|
|
16539
|
-
"tests/contract/schema/"
|
|
16758
|
+
"tests/contract/schema/strict.test.ts",
|
|
16759
|
+
"tests/fuzz/constraints.test.ts"
|
|
16540
16760
|
],
|
|
16541
|
-
"notes": "
|
|
16761
|
+
"notes": ""
|
|
16542
16762
|
},
|
|
16543
16763
|
"R-49045-42493-00753-52815-20675-33627-44655-32339": {
|
|
16544
16764
|
"status": "NOT_APPLICABLE",
|
|
@@ -16581,12 +16801,14 @@
|
|
|
16581
16801
|
"notes": "C API / storage / non-SQL surface (c3ref/wal_checkpoint_v2.html)"
|
|
16582
16802
|
},
|
|
16583
16803
|
"R-49178-21358-58489-31319-06651-33455-27209-45773": {
|
|
16584
|
-
"status": "
|
|
16804
|
+
"status": "VERIFIED",
|
|
16585
16805
|
"evidence": [
|
|
16586
16806
|
"tests/contract/foreign-keys/",
|
|
16587
|
-
"tests/
|
|
16807
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
16808
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
16809
|
+
"tests/fuzz/constraints.test.ts"
|
|
16588
16810
|
],
|
|
16589
|
-
"notes": "
|
|
16811
|
+
"notes": ""
|
|
16590
16812
|
},
|
|
16591
16813
|
"R-49203-06300-24971-00388-61998-23090-03169-09394": {
|
|
16592
16814
|
"status": "NOT_APPLICABLE",
|
|
@@ -16783,11 +17005,12 @@
|
|
|
16783
17005
|
"notes": "C API / storage / non-SQL surface (c3ref/c_config_covering_index_scan.html)"
|
|
16784
17006
|
},
|
|
16785
17007
|
"R-49895-22749-28747-51875-53183-63648-10463-26840": {
|
|
16786
|
-
"status": "
|
|
17008
|
+
"status": "VERIFIED",
|
|
16787
17009
|
"evidence": [
|
|
16788
|
-
"tests/contract/schema/"
|
|
17010
|
+
"tests/contract/schema/strict.test.ts",
|
|
17011
|
+
"tests/fuzz/constraints.test.ts"
|
|
16789
17012
|
],
|
|
16790
|
-
"notes": "
|
|
17013
|
+
"notes": ""
|
|
16791
17014
|
},
|
|
16792
17015
|
"R-49920-60189-48669-35973-51094-40513-29191-34461": {
|
|
16793
17016
|
"status": "NOT_APPLICABLE",
|
|
@@ -16894,11 +17117,14 @@
|
|
|
16894
17117
|
"notes": "Schema/FK pragmas verified; storage pragmas N/A or no-op"
|
|
16895
17118
|
},
|
|
16896
17119
|
"R-50141-17598-64848-16921-53866-52555-58777-52662": {
|
|
16897
|
-
"status": "
|
|
17120
|
+
"status": "VERIFIED",
|
|
16898
17121
|
"evidence": [
|
|
16899
|
-
"tests/contract/indexes/"
|
|
17122
|
+
"tests/contract/indexes/",
|
|
17123
|
+
"tests/contract/indexes/partial.test.ts",
|
|
17124
|
+
"tests/contract/indexes/expression.test.ts",
|
|
17125
|
+
"tests/contract/indexes/prefix.test.ts"
|
|
16900
17126
|
],
|
|
16901
|
-
"notes": "
|
|
17127
|
+
"notes": ""
|
|
16902
17128
|
},
|
|
16903
17129
|
"R-50173-30557-65428-54259-43210-11188-24430-56909": {
|
|
16904
17130
|
"status": "PARTIALLY_VERIFIED",
|
|
@@ -16934,11 +17160,14 @@
|
|
|
16934
17160
|
"notes": "Operators covered; row-value/precedence edges expanding"
|
|
16935
17161
|
},
|
|
16936
17162
|
"R-50227-03668-59884-25860-05974-05725-11856-44463": {
|
|
16937
|
-
"status": "
|
|
17163
|
+
"status": "VERIFIED",
|
|
16938
17164
|
"evidence": [
|
|
16939
|
-
"tests/contract/indexes/"
|
|
17165
|
+
"tests/contract/indexes/",
|
|
17166
|
+
"tests/contract/indexes/partial.test.ts",
|
|
17167
|
+
"tests/contract/indexes/expression.test.ts",
|
|
17168
|
+
"tests/contract/indexes/prefix.test.ts"
|
|
16940
17169
|
],
|
|
16941
|
-
"notes": "
|
|
17170
|
+
"notes": ""
|
|
16942
17171
|
},
|
|
16943
17172
|
"R-50230-26466-58809-52102-21271-42089-25495-26496": {
|
|
16944
17173
|
"status": "NOT_APPLICABLE",
|
|
@@ -17178,12 +17407,14 @@
|
|
|
17178
17407
|
"notes": "C API / storage / non-SQL surface (c3ref/preupdate_blobwrite.html)"
|
|
17179
17408
|
},
|
|
17180
17409
|
"R-51039-44840-65130-09775-42940-11077-05048-04287": {
|
|
17181
|
-
"status": "
|
|
17410
|
+
"status": "VERIFIED",
|
|
17182
17411
|
"evidence": [
|
|
17183
17412
|
"tests/contract/foreign-keys/",
|
|
17184
|
-
"tests/
|
|
17413
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
17414
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
17415
|
+
"tests/fuzz/constraints.test.ts"
|
|
17185
17416
|
],
|
|
17186
|
-
"notes": "
|
|
17417
|
+
"notes": ""
|
|
17187
17418
|
},
|
|
17188
17419
|
"R-51070-59303-35224-08762-04161-61049-26155-15772": {
|
|
17189
17420
|
"status": "VERIFIED",
|
|
@@ -17271,11 +17502,12 @@
|
|
|
17271
17502
|
"notes": "C API / storage / non-SQL surface (c3ref/result_blob.html)"
|
|
17272
17503
|
},
|
|
17273
17504
|
"R-51280-49561-27340-30722-26024-36446-47802-45698": {
|
|
17274
|
-
"status": "
|
|
17505
|
+
"status": "VERIFIED",
|
|
17275
17506
|
"evidence": [
|
|
17276
|
-
"tests/contract/schema/"
|
|
17507
|
+
"tests/contract/schema/strict.test.ts",
|
|
17508
|
+
"tests/fuzz/constraints.test.ts"
|
|
17277
17509
|
],
|
|
17278
|
-
"notes": "
|
|
17510
|
+
"notes": ""
|
|
17279
17511
|
},
|
|
17280
17512
|
"R-51285-50643-24260-37588-20138-27920-05712-56972": {
|
|
17281
17513
|
"status": "UNSUPPORTED",
|
|
@@ -17635,12 +17867,14 @@
|
|
|
17635
17867
|
"notes": "C API / storage / non-SQL surface (fileformat2.html)"
|
|
17636
17868
|
},
|
|
17637
17869
|
"R-52486-21352-15520-42418-18389-29845-28843-27004": {
|
|
17638
|
-
"status": "
|
|
17870
|
+
"status": "VERIFIED",
|
|
17639
17871
|
"evidence": [
|
|
17640
17872
|
"tests/contract/foreign-keys/",
|
|
17641
|
-
"tests/
|
|
17873
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
17874
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
17875
|
+
"tests/fuzz/constraints.test.ts"
|
|
17642
17876
|
],
|
|
17643
|
-
"notes": "
|
|
17877
|
+
"notes": ""
|
|
17644
17878
|
},
|
|
17645
17879
|
"R-52494-36749-63981-51564-54926-02873-46485-09219": {
|
|
17646
17880
|
"status": "NOT_APPLICABLE",
|
|
@@ -17653,11 +17887,12 @@
|
|
|
17653
17887
|
"notes": "C API / storage / non-SQL surface (c3ref/vfs.html)"
|
|
17654
17888
|
},
|
|
17655
17889
|
"R-52554-26776-48251-05833-19057-37824-14862-46518": {
|
|
17656
|
-
"status": "
|
|
17890
|
+
"status": "VERIFIED",
|
|
17657
17891
|
"evidence": [
|
|
17658
|
-
"tests/contract/schema/"
|
|
17892
|
+
"tests/contract/schema/strict.test.ts",
|
|
17893
|
+
"tests/fuzz/constraints.test.ts"
|
|
17659
17894
|
],
|
|
17660
|
-
"notes": "
|
|
17895
|
+
"notes": ""
|
|
17661
17896
|
},
|
|
17662
17897
|
"R-52572-02078-29727-01284-61421-00978-11983-52043": {
|
|
17663
17898
|
"status": "VERIFIED",
|
|
@@ -17739,11 +17974,12 @@
|
|
|
17739
17974
|
"notes": "C API / storage / non-SQL surface (c3ref/open.html)"
|
|
17740
17975
|
},
|
|
17741
17976
|
"R-52777-21695-38206-28598-32008-52074-59855-17879": {
|
|
17742
|
-
"status": "
|
|
17977
|
+
"status": "VERIFIED",
|
|
17743
17978
|
"evidence": [
|
|
17744
|
-
"tests/contract/schema/"
|
|
17979
|
+
"tests/contract/schema/strict.test.ts",
|
|
17980
|
+
"tests/fuzz/constraints.test.ts"
|
|
17745
17981
|
],
|
|
17746
|
-
"notes": "
|
|
17982
|
+
"notes": ""
|
|
17747
17983
|
},
|
|
17748
17984
|
"R-52786-44878-02459-51231-59841-41905-39578-10951": {
|
|
17749
17985
|
"status": "NOT_APPLICABLE",
|
|
@@ -17840,18 +18076,20 @@
|
|
|
17840
18076
|
"notes": "C API / storage / non-SQL surface (c3ref/c_dbstatus_options.html)"
|
|
17841
18077
|
},
|
|
17842
18078
|
"R-53045-50509-28028-29043-56897-58356-06470-19451": {
|
|
17843
|
-
"status": "
|
|
18079
|
+
"status": "VERIFIED",
|
|
17844
18080
|
"evidence": [
|
|
17845
|
-
"tests/contract/schema/"
|
|
18081
|
+
"tests/contract/schema/strict.test.ts",
|
|
18082
|
+
"tests/fuzz/constraints.test.ts"
|
|
17846
18083
|
],
|
|
17847
|
-
"notes": "
|
|
18084
|
+
"notes": ""
|
|
17848
18085
|
},
|
|
17849
18086
|
"R-53080-41541-45026-17384-49917-00359-25749-28353": {
|
|
17850
|
-
"status": "
|
|
18087
|
+
"status": "VERIFIED",
|
|
17851
18088
|
"evidence": [
|
|
17852
|
-
"tests/contract/schema/"
|
|
18089
|
+
"tests/contract/schema/strict.test.ts",
|
|
18090
|
+
"tests/fuzz/constraints.test.ts"
|
|
17853
18091
|
],
|
|
17854
|
-
"notes": "
|
|
18092
|
+
"notes": ""
|
|
17855
18093
|
},
|
|
17856
18094
|
"R-53084-07740-56303-11732-40527-47126-44561-51023": {
|
|
17857
18095
|
"status": "VERIFIED",
|
|
@@ -18124,12 +18362,14 @@
|
|
|
18124
18362
|
"notes": "C API / storage / non-SQL surface (c3ref/column_blob.html)"
|
|
18125
18363
|
},
|
|
18126
18364
|
"R-53968-51642-29002-32833-59790-62444-61146-02233": {
|
|
18127
|
-
"status": "
|
|
18365
|
+
"status": "VERIFIED",
|
|
18128
18366
|
"evidence": [
|
|
18129
18367
|
"tests/contract/foreign-keys/",
|
|
18130
|
-
"tests/
|
|
18368
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
18369
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
18370
|
+
"tests/fuzz/constraints.test.ts"
|
|
18131
18371
|
],
|
|
18132
|
-
"notes": "
|
|
18372
|
+
"notes": ""
|
|
18133
18373
|
},
|
|
18134
18374
|
"R-53994-11873-49794-19921-48320-57211-64823-29959": {
|
|
18135
18375
|
"status": "NOT_APPLICABLE",
|
|
@@ -18191,12 +18431,14 @@
|
|
|
18191
18431
|
"notes": "C API / storage / non-SQL surface (c3ref/create_function.html)"
|
|
18192
18432
|
},
|
|
18193
18433
|
"R-54142-41346-32014-56293-25636-63110-30822-28140": {
|
|
18194
|
-
"status": "
|
|
18434
|
+
"status": "VERIFIED",
|
|
18195
18435
|
"evidence": [
|
|
18196
18436
|
"tests/contract/foreign-keys/",
|
|
18197
|
-
"tests/
|
|
18437
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
18438
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
18439
|
+
"tests/fuzz/constraints.test.ts"
|
|
18198
18440
|
],
|
|
18199
|
-
"notes": "
|
|
18441
|
+
"notes": ""
|
|
18200
18442
|
},
|
|
18201
18443
|
"R-54172-54170-29331-23732-60109-43479-50710-53922": {
|
|
18202
18444
|
"status": "NOT_APPLICABLE",
|
|
@@ -18282,9 +18524,9 @@
|
|
|
18282
18524
|
"notes": "C API / storage / non-SQL surface (c3ref/db_cacheflush.html)"
|
|
18283
18525
|
},
|
|
18284
18526
|
"R-54611-06855-62690-60121-09688-57757-21462-60136": {
|
|
18285
|
-
"status": "
|
|
18527
|
+
"status": "VERIFIED",
|
|
18286
18528
|
"evidence": [
|
|
18287
|
-
"tests/contract/indexes/"
|
|
18529
|
+
"tests/contract/indexes/partial.test.ts"
|
|
18288
18530
|
],
|
|
18289
18531
|
"notes": ""
|
|
18290
18532
|
},
|
|
@@ -18483,11 +18725,14 @@
|
|
|
18483
18725
|
"notes": "C API / storage / non-SQL surface (c3ref/table_column_metadata.html)"
|
|
18484
18726
|
},
|
|
18485
18727
|
"R-55137-26834-36059-41974-16460-01927-24032-61978": {
|
|
18486
|
-
"status": "
|
|
18728
|
+
"status": "VERIFIED",
|
|
18487
18729
|
"evidence": [
|
|
18488
|
-
"tests/contract/indexes/"
|
|
18730
|
+
"tests/contract/indexes/",
|
|
18731
|
+
"tests/contract/indexes/partial.test.ts",
|
|
18732
|
+
"tests/contract/indexes/expression.test.ts",
|
|
18733
|
+
"tests/contract/indexes/prefix.test.ts"
|
|
18489
18734
|
],
|
|
18490
|
-
"notes": "
|
|
18735
|
+
"notes": ""
|
|
18491
18736
|
},
|
|
18492
18737
|
"R-55138-13241-38479-09846-46068-29398-26502-36438": {
|
|
18493
18738
|
"status": "VERIFIED",
|
|
@@ -18497,12 +18742,14 @@
|
|
|
18497
18742
|
"notes": ":memory:"
|
|
18498
18743
|
},
|
|
18499
18744
|
"R-55147-47664-01653-03142-36497-30903-54815-06427": {
|
|
18500
|
-
"status": "
|
|
18745
|
+
"status": "VERIFIED",
|
|
18501
18746
|
"evidence": [
|
|
18502
18747
|
"tests/contract/foreign-keys/",
|
|
18503
|
-
"tests/
|
|
18748
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
18749
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
18750
|
+
"tests/fuzz/constraints.test.ts"
|
|
18504
18751
|
],
|
|
18505
|
-
"notes": "
|
|
18752
|
+
"notes": ""
|
|
18506
18753
|
},
|
|
18507
18754
|
"R-55189-15164-61309-44787-48881-65424-27276-43718": {
|
|
18508
18755
|
"status": "NOT_APPLICABLE",
|
|
@@ -18722,12 +18969,14 @@
|
|
|
18722
18969
|
"notes": "C API / storage / non-SQL surface (c3ref/exec.html)"
|
|
18723
18970
|
},
|
|
18724
18971
|
"R-55814-22637-16882-39129-49686-50158-19394-50709": {
|
|
18725
|
-
"status": "
|
|
18972
|
+
"status": "VERIFIED",
|
|
18726
18973
|
"evidence": [
|
|
18727
18974
|
"tests/contract/foreign-keys/",
|
|
18728
|
-
"tests/
|
|
18975
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
18976
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
18977
|
+
"tests/fuzz/constraints.test.ts"
|
|
18729
18978
|
],
|
|
18730
|
-
"notes": "
|
|
18979
|
+
"notes": ""
|
|
18731
18980
|
},
|
|
18732
18981
|
"R-55820-29984-60455-07962-21616-40941-09415-50372": {
|
|
18733
18982
|
"status": "VERIFIED",
|
|
@@ -18780,12 +19029,14 @@
|
|
|
18780
19029
|
"notes": "C API / storage / non-SQL surface (fileformat2.html)"
|
|
18781
19030
|
},
|
|
18782
19031
|
"R-56032-24923-44084-62651-61742-23069-00366-25575": {
|
|
18783
|
-
"status": "
|
|
19032
|
+
"status": "VERIFIED",
|
|
18784
19033
|
"evidence": [
|
|
18785
19034
|
"tests/contract/foreign-keys/",
|
|
18786
|
-
"tests/
|
|
19035
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
19036
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
19037
|
+
"tests/fuzz/constraints.test.ts"
|
|
18787
19038
|
],
|
|
18788
|
-
"notes": "
|
|
19039
|
+
"notes": ""
|
|
18789
19040
|
},
|
|
18790
19041
|
"R-56064-04001-25559-63693-43897-15444-07346-25115": {
|
|
18791
19042
|
"status": "VERIFIED",
|
|
@@ -18992,12 +19243,14 @@
|
|
|
18992
19243
|
"notes": "sqlite_stat1"
|
|
18993
19244
|
},
|
|
18994
19245
|
"R-56844-61705-36939-38835-21077-60167-01566-10120": {
|
|
18995
|
-
"status": "
|
|
19246
|
+
"status": "VERIFIED",
|
|
18996
19247
|
"evidence": [
|
|
18997
19248
|
"tests/contract/foreign-keys/",
|
|
18998
|
-
"tests/
|
|
19249
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
19250
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
19251
|
+
"tests/fuzz/constraints.test.ts"
|
|
18999
19252
|
],
|
|
19000
|
-
"notes": "
|
|
19253
|
+
"notes": ""
|
|
19001
19254
|
},
|
|
19002
19255
|
"R-56861-42673-10667-36418-55159-59166-26000-55286": {
|
|
19003
19256
|
"status": "NOT_APPLICABLE",
|
|
@@ -19054,11 +19307,14 @@
|
|
|
19054
19307
|
"notes": "C API / storage / non-SQL surface (c3ref/system_errno.html)"
|
|
19055
19308
|
},
|
|
19056
19309
|
"R-57025-62168-38373-42436-38968-34840-50734-33391": {
|
|
19057
|
-
"status": "
|
|
19310
|
+
"status": "VERIFIED",
|
|
19058
19311
|
"evidence": [
|
|
19059
|
-
"tests/contract/indexes/"
|
|
19312
|
+
"tests/contract/indexes/",
|
|
19313
|
+
"tests/contract/indexes/partial.test.ts",
|
|
19314
|
+
"tests/contract/indexes/expression.test.ts",
|
|
19315
|
+
"tests/contract/indexes/prefix.test.ts"
|
|
19060
19316
|
],
|
|
19061
|
-
"notes": "
|
|
19317
|
+
"notes": ""
|
|
19062
19318
|
},
|
|
19063
19319
|
"R-57047-10461-09824-05395-44122-51121-43183-19652": {
|
|
19064
19320
|
"status": "VERIFIED",
|
|
@@ -19136,12 +19392,14 @@
|
|
|
19136
19392
|
"notes": "C API / storage / non-SQL surface (wal.html)"
|
|
19137
19393
|
},
|
|
19138
19394
|
"R-57242-37005-56028-08872-40154-45403-20109-09312": {
|
|
19139
|
-
"status": "
|
|
19395
|
+
"status": "VERIFIED",
|
|
19140
19396
|
"evidence": [
|
|
19141
19397
|
"tests/contract/foreign-keys/",
|
|
19142
|
-
"tests/
|
|
19398
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
19399
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
19400
|
+
"tests/fuzz/constraints.test.ts"
|
|
19143
19401
|
],
|
|
19144
|
-
"notes": "
|
|
19402
|
+
"notes": ""
|
|
19145
19403
|
},
|
|
19146
19404
|
"R-57255-33789-60728-42833-30002-01027-59947-48122": {
|
|
19147
19405
|
"status": "VERIFIED",
|
|
@@ -19287,12 +19545,14 @@
|
|
|
19287
19545
|
"notes": "C API / storage / non-SQL surface (c3ref/vtab_distinct.html)"
|
|
19288
19546
|
},
|
|
19289
19547
|
"R-57765-12380-65473-27490-60483-53059-23435-27202": {
|
|
19290
|
-
"status": "
|
|
19548
|
+
"status": "VERIFIED",
|
|
19291
19549
|
"evidence": [
|
|
19292
19550
|
"tests/contract/foreign-keys/",
|
|
19293
|
-
"tests/
|
|
19551
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
19552
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
19553
|
+
"tests/fuzz/constraints.test.ts"
|
|
19294
19554
|
],
|
|
19295
|
-
"notes": "
|
|
19555
|
+
"notes": ""
|
|
19296
19556
|
},
|
|
19297
19557
|
"R-57773-31134-13859-63861-60262-03843-19674-02031": {
|
|
19298
19558
|
"status": "VERIFIED",
|
|
@@ -19310,11 +19570,14 @@
|
|
|
19310
19570
|
"notes": "Schema/FK pragmas verified; storage pragmas N/A or no-op"
|
|
19311
19571
|
},
|
|
19312
19572
|
"R-57876-22123-39728-45816-26959-17516-32294-11302": {
|
|
19313
|
-
"status": "
|
|
19573
|
+
"status": "VERIFIED",
|
|
19314
19574
|
"evidence": [
|
|
19315
|
-
"tests/contract/indexes/"
|
|
19575
|
+
"tests/contract/indexes/",
|
|
19576
|
+
"tests/contract/indexes/partial.test.ts",
|
|
19577
|
+
"tests/contract/indexes/expression.test.ts",
|
|
19578
|
+
"tests/contract/indexes/prefix.test.ts"
|
|
19316
19579
|
],
|
|
19317
|
-
"notes": "
|
|
19580
|
+
"notes": ""
|
|
19318
19581
|
},
|
|
19319
19582
|
"R-57880-35169-30628-02848-50703-50828-58750-28510": {
|
|
19320
19583
|
"status": "PARTIALLY_VERIFIED",
|
|
@@ -19503,12 +19766,14 @@
|
|
|
19503
19766
|
"notes": "Schema/FK pragmas verified; storage pragmas N/A or no-op"
|
|
19504
19767
|
},
|
|
19505
19768
|
"R-58428-36660-63931-61833-12651-58158-26648-39835": {
|
|
19506
|
-
"status": "
|
|
19769
|
+
"status": "VERIFIED",
|
|
19507
19770
|
"evidence": [
|
|
19508
19771
|
"tests/contract/foreign-keys/",
|
|
19509
|
-
"tests/
|
|
19772
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
19773
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
19774
|
+
"tests/fuzz/constraints.test.ts"
|
|
19510
19775
|
],
|
|
19511
|
-
"notes": "
|
|
19776
|
+
"notes": ""
|
|
19512
19777
|
},
|
|
19513
19778
|
"R-58433-37187-52219-35155-40508-43189-02693-26384": {
|
|
19514
19779
|
"status": "VERIFIED",
|
|
@@ -19614,11 +19879,12 @@
|
|
|
19614
19879
|
"notes": "C API / storage / non-SQL surface (c3ref/result_blob.html)"
|
|
19615
19880
|
},
|
|
19616
19881
|
"R-58828-53895-13815-04017-42542-10483-39276-05822": {
|
|
19617
|
-
"status": "
|
|
19882
|
+
"status": "VERIFIED",
|
|
19618
19883
|
"evidence": [
|
|
19619
|
-
"tests/contract/schema/"
|
|
19884
|
+
"tests/contract/schema/strict.test.ts",
|
|
19885
|
+
"tests/fuzz/constraints.test.ts"
|
|
19620
19886
|
],
|
|
19621
|
-
"notes": "
|
|
19887
|
+
"notes": ""
|
|
19622
19888
|
},
|
|
19623
19889
|
"R-58835-30946-01453-54095-45782-49033-61690-21172": {
|
|
19624
19890
|
"status": "NOT_APPLICABLE",
|
|
@@ -19739,11 +20005,12 @@
|
|
|
19739
20005
|
"notes": "C API / storage / non-SQL surface (c3ref/c_source_id.html)"
|
|
19740
20006
|
},
|
|
19741
20007
|
"R-59216-33891-20715-29523-18605-08261-10809-30843": {
|
|
19742
|
-
"status": "
|
|
20008
|
+
"status": "VERIFIED",
|
|
19743
20009
|
"evidence": [
|
|
19744
|
-
"tests/contract/schema/"
|
|
20010
|
+
"tests/contract/schema/strict.test.ts",
|
|
20011
|
+
"tests/fuzz/constraints.test.ts"
|
|
19745
20012
|
],
|
|
19746
|
-
"notes": "
|
|
20013
|
+
"notes": ""
|
|
19747
20014
|
},
|
|
19748
20015
|
"R-59218-44473-40361-49593-50972-37596-39041-04578": {
|
|
19749
20016
|
"status": "NOT_APPLICABLE",
|
|
@@ -19966,9 +20233,9 @@
|
|
|
19966
20233
|
"notes": "Schema/FK pragmas verified; storage pragmas N/A or no-op"
|
|
19967
20234
|
},
|
|
19968
20235
|
"R-59958-37183-05497-01446-42261-31297-62677-47395": {
|
|
19969
|
-
"status": "
|
|
20236
|
+
"status": "VERIFIED",
|
|
19970
20237
|
"evidence": [
|
|
19971
|
-
"tests/contract/indexes/"
|
|
20238
|
+
"tests/contract/indexes/partial.test.ts"
|
|
19972
20239
|
],
|
|
19973
20240
|
"notes": ""
|
|
19974
20241
|
},
|
|
@@ -20056,11 +20323,12 @@
|
|
|
20056
20323
|
"notes": "C API / storage / non-SQL surface (wal.html)"
|
|
20057
20324
|
},
|
|
20058
20325
|
"R-60210-08703-54697-04139-16865-40143-01079-14563": {
|
|
20059
|
-
"status": "
|
|
20326
|
+
"status": "VERIFIED",
|
|
20060
20327
|
"evidence": [
|
|
20061
|
-
"tests/contract/schema/"
|
|
20328
|
+
"tests/contract/schema/strict.test.ts",
|
|
20329
|
+
"tests/fuzz/constraints.test.ts"
|
|
20062
20330
|
],
|
|
20063
|
-
"notes": "
|
|
20331
|
+
"notes": ""
|
|
20064
20332
|
},
|
|
20065
20333
|
"R-60223-49197-47442-02320-11696-61949-31575-11697": {
|
|
20066
20334
|
"status": "NOT_APPLICABLE",
|
|
@@ -20397,12 +20665,14 @@
|
|
|
20397
20665
|
"notes": "Oracle builtin inventory closing"
|
|
20398
20666
|
},
|
|
20399
20667
|
"R-61362-32087-29784-51692-52137-61704-15338-45644": {
|
|
20400
|
-
"status": "
|
|
20668
|
+
"status": "VERIFIED",
|
|
20401
20669
|
"evidence": [
|
|
20402
20670
|
"tests/contract/foreign-keys/",
|
|
20403
|
-
"tests/
|
|
20671
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
20672
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
20673
|
+
"tests/fuzz/constraints.test.ts"
|
|
20404
20674
|
],
|
|
20405
|
-
"notes": "
|
|
20675
|
+
"notes": ""
|
|
20406
20676
|
},
|
|
20407
20677
|
"R-61376-43478-41054-59749-08806-37073-25549-48326": {
|
|
20408
20678
|
"status": "VERIFIED",
|
|
@@ -20413,12 +20683,14 @@
|
|
|
20413
20683
|
"notes": "Oracle builtin inventory closing"
|
|
20414
20684
|
},
|
|
20415
20685
|
"R-61376-57267-60176-57380-17573-65142-26150-27865": {
|
|
20416
|
-
"status": "
|
|
20686
|
+
"status": "VERIFIED",
|
|
20417
20687
|
"evidence": [
|
|
20418
20688
|
"tests/contract/foreign-keys/",
|
|
20419
|
-
"tests/
|
|
20689
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
20690
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
20691
|
+
"tests/fuzz/constraints.test.ts"
|
|
20420
20692
|
],
|
|
20421
|
-
"notes": "
|
|
20693
|
+
"notes": ""
|
|
20422
20694
|
},
|
|
20423
20695
|
"R-61413-50265-52071-27114-12254-11492-58681-53001": {
|
|
20424
20696
|
"status": "NOT_APPLICABLE",
|
|
@@ -20475,12 +20747,14 @@
|
|
|
20475
20747
|
"notes": "C API / storage / non-SQL surface (c3ref/vfs.html)"
|
|
20476
20748
|
},
|
|
20477
20749
|
"R-61616-46700-48571-17878-11289-09346-32706-45031": {
|
|
20478
|
-
"status": "
|
|
20750
|
+
"status": "VERIFIED",
|
|
20479
20751
|
"evidence": [
|
|
20480
20752
|
"tests/contract/foreign-keys/",
|
|
20481
|
-
"tests/
|
|
20753
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
20754
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
20755
|
+
"tests/fuzz/constraints.test.ts"
|
|
20482
20756
|
],
|
|
20483
|
-
"notes": "
|
|
20757
|
+
"notes": ""
|
|
20484
20758
|
},
|
|
20485
20759
|
"R-61726-11117-39197-35640-53612-54106-15944-36516": {
|
|
20486
20760
|
"status": "NOT_APPLICABLE",
|
|
@@ -20505,12 +20779,14 @@
|
|
|
20505
20779
|
"notes": ""
|
|
20506
20780
|
},
|
|
20507
20781
|
"R-61809-62207-01008-46404-05799-53014-10578-37094": {
|
|
20508
|
-
"status": "
|
|
20782
|
+
"status": "VERIFIED",
|
|
20509
20783
|
"evidence": [
|
|
20510
20784
|
"tests/contract/foreign-keys/",
|
|
20511
|
-
"tests/
|
|
20785
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
20786
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
20787
|
+
"tests/fuzz/constraints.test.ts"
|
|
20512
20788
|
],
|
|
20513
|
-
"notes": "
|
|
20789
|
+
"notes": ""
|
|
20514
20790
|
},
|
|
20515
20791
|
"R-61815-26679-56101-35658-51912-28874-35291-46177": {
|
|
20516
20792
|
"status": "NOT_APPLICABLE",
|
|
@@ -20752,9 +21028,9 @@
|
|
|
20752
21028
|
"notes": "Operators covered; row-value/precedence edges expanding"
|
|
20753
21029
|
},
|
|
20754
21030
|
"R-62671-45936-15699-15939-47274-39312-22685-45097": {
|
|
20755
|
-
"status": "
|
|
21031
|
+
"status": "VERIFIED",
|
|
20756
21032
|
"evidence": [
|
|
20757
|
-
"tests/contract/indexes/"
|
|
21033
|
+
"tests/contract/indexes/partial.test.ts"
|
|
20758
21034
|
],
|
|
20759
21035
|
"notes": ""
|
|
20760
21036
|
},
|
|
@@ -20806,11 +21082,14 @@
|
|
|
20806
21082
|
"notes": "RTREE module pending Scope-3 implementation"
|
|
20807
21083
|
},
|
|
20808
21084
|
"R-62804-28221-24652-30727-46370-42129-23035-01106": {
|
|
20809
|
-
"status": "
|
|
21085
|
+
"status": "VERIFIED",
|
|
20810
21086
|
"evidence": [
|
|
20811
|
-
"tests/contract/indexes/"
|
|
21087
|
+
"tests/contract/indexes/",
|
|
21088
|
+
"tests/contract/indexes/partial.test.ts",
|
|
21089
|
+
"tests/contract/indexes/expression.test.ts",
|
|
21090
|
+
"tests/contract/indexes/prefix.test.ts"
|
|
20812
21091
|
],
|
|
20813
|
-
"notes": "
|
|
21092
|
+
"notes": ""
|
|
20814
21093
|
},
|
|
20815
21094
|
"R-62839-07969-20835-12393-10949-34728-00422-57830": {
|
|
20816
21095
|
"status": "PARTIALLY_VERIFIED",
|
|
@@ -20820,11 +21099,12 @@
|
|
|
20820
21099
|
"notes": "Schema/FK pragmas verified; storage pragmas N/A or no-op"
|
|
20821
21100
|
},
|
|
20822
21101
|
"R-62842-02885-47183-08530-16131-50819-34642-24055": {
|
|
20823
|
-
"status": "
|
|
21102
|
+
"status": "VERIFIED",
|
|
20824
21103
|
"evidence": [
|
|
20825
|
-
"tests/contract/schema/"
|
|
21104
|
+
"tests/contract/schema/strict.test.ts",
|
|
21105
|
+
"tests/fuzz/constraints.test.ts"
|
|
20826
21106
|
],
|
|
20827
|
-
"notes": "
|
|
21107
|
+
"notes": ""
|
|
20828
21108
|
},
|
|
20829
21109
|
"R-62860-04741-41366-30406-60752-17856-14374-30516": {
|
|
20830
21110
|
"status": "NOT_APPLICABLE",
|
|
@@ -20925,12 +21205,14 @@
|
|
|
20925
21205
|
"notes": "C API / storage / non-SQL surface (c3ref/blob_reopen.html)"
|
|
20926
21206
|
},
|
|
20927
21207
|
"R-63088-37469-41348-62985-35702-04852-27256-05198": {
|
|
20928
|
-
"status": "
|
|
21208
|
+
"status": "VERIFIED",
|
|
20929
21209
|
"evidence": [
|
|
20930
21210
|
"tests/contract/foreign-keys/",
|
|
20931
|
-
"tests/
|
|
21211
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
21212
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
21213
|
+
"tests/fuzz/constraints.test.ts"
|
|
20932
21214
|
],
|
|
20933
|
-
"notes": "
|
|
21215
|
+
"notes": ""
|
|
20934
21216
|
},
|
|
20935
21217
|
"R-63107-29542-42038-49029-17221-49854-37760-53513": {
|
|
20936
21218
|
"status": "NOT_APPLICABLE",
|
|
@@ -21615,11 +21897,12 @@
|
|
|
21615
21897
|
"notes": "Affinity/storage-class contracts"
|
|
21616
21898
|
},
|
|
21617
21899
|
"R-64842-30903-04494-11389-12737-16159-45438-00930": {
|
|
21618
|
-
"status": "
|
|
21900
|
+
"status": "VERIFIED",
|
|
21619
21901
|
"evidence": [
|
|
21620
|
-
"tests/contract/schema/"
|
|
21902
|
+
"tests/contract/schema/strict.test.ts",
|
|
21903
|
+
"tests/fuzz/constraints.test.ts"
|
|
21621
21904
|
],
|
|
21622
|
-
"notes": "
|
|
21905
|
+
"notes": ""
|
|
21623
21906
|
},
|
|
21624
21907
|
"R-64844-34873-54978-44161-37358-50690-61472-16160": {
|
|
21625
21908
|
"status": "VERIFIED",
|
|
@@ -21713,12 +21996,14 @@
|
|
|
21713
21996
|
"notes": "C API / storage / non-SQL surface (fileformat2.html)"
|
|
21714
21997
|
},
|
|
21715
21998
|
"R-65058-57158-61886-52055-64360-05204-52569-52918": {
|
|
21716
|
-
"status": "
|
|
21999
|
+
"status": "VERIFIED",
|
|
21717
22000
|
"evidence": [
|
|
21718
22001
|
"tests/contract/foreign-keys/",
|
|
21719
|
-
"tests/
|
|
22002
|
+
"tests/contract/foreign-keys/deferred.test.ts",
|
|
22003
|
+
"tests/contract/foreign-keys/composite.test.ts",
|
|
22004
|
+
"tests/fuzz/constraints.test.ts"
|
|
21720
22005
|
],
|
|
21721
|
-
"notes": "
|
|
22006
|
+
"notes": ""
|
|
21722
22007
|
},
|
|
21723
22008
|
"R-65068-25814-18099-09241-35748-05178-29106-53953": {
|
|
21724
22009
|
"status": "VERIFIED",
|
|
@@ -21772,9 +22057,9 @@
|
|
|
21772
22057
|
"notes": "RTREE module pending Scope-3 implementation"
|
|
21773
22058
|
},
|
|
21774
22059
|
"R-65161-60989-13939-65119-57772-34659-43488-10354": {
|
|
21775
|
-
"status": "
|
|
22060
|
+
"status": "VERIFIED",
|
|
21776
22061
|
"evidence": [
|
|
21777
|
-
"tests/contract/indexes/"
|
|
22062
|
+
"tests/contract/indexes/partial.test.ts"
|
|
21778
22063
|
],
|
|
21779
22064
|
"notes": ""
|
|
21780
22065
|
},
|