1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
// Copyright 2026 RadixDB Contributors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//! Exact, ordered, and fallback lookup paths over published cold segments.
use super::*;
impl SegmentManager {
/// Get segments in order, metadata only (no cold volume reload).
/// Use when callers only need vol.meta (stats, zone maps, row_ids).
/// Does NOT mark volumes as accessed — metadata reads should not
/// prevent eviction of column data.
pub fn get_segments_ordered_meta(&self) -> Vec<Arc<FrozenVolume>> {
let (seg_ids, segments) = {
let manifest = self.manifest.read();
let seg_ids: Vec<u64> = manifest.segments.iter().map(|m| m.segment_id).collect();
let segments = self.segments.load_full();
(seg_ids, segments)
};
seg_ids
.iter()
.filter_map(|id| segments.get(id).map(|cs| Arc::clone(&cs.volume)))
.collect()
}
/// Return newest-first artifact-backed segments without materializing column bodies.
/// Scanner paths prune by metadata and read surviving row-group blocks.
/// Does NOT mark volumes — only volumes that survive pruning get marked
/// by the scanner constructor or explicit per-volume mark_accessed.
pub fn get_volumes_newest_first_lazy(&self) -> Arc<Vec<(u64, ColdSegment)>> {
let (seg_ids, segs) = {
let manifest = self.manifest.read();
let seg_ids: Vec<u64> = manifest.segments.iter().map(|m| m.segment_id).collect();
let segs = self.segments.load_full();
(seg_ids, segs)
};
let mut result: Vec<(u64, ColdSegment)> = seg_ids
.iter()
.filter_map(|&id| segs.get(&id).map(|cs| (id, cs.clone())))
.collect();
result.reverse();
Arc::new(result)
}
/// Check if there are any segments. O(1) atomic read, no lock.
pub fn has_segments(&self) -> bool {
self.has_segments_flag
.load(std::sync::atomic::Ordering::Relaxed)
}
/// Capture an atomic snapshot of segment state for batch constraint checking.
/// Acquires manifest + segments + tombstones locks once. All per-row checks
/// within the batch reuse this snapshot with zero lock overhead.
pub fn cold_snapshot(&self) -> ColdSnapshot {
// Zone-map/bloom pruning uses resident metadata; matching values are
// read from addressable artifact-backed row-group blocks.
let manifest = self.manifest.read();
let seg_ids: smallvec::SmallVec<[u64; 4]> = manifest
.segments
.iter()
.rev()
.map(|m| m.segment_id)
.collect();
let segs = self.segments.load_full();
let ts = self.tombstones.load_full();
drop(manifest);
ColdSnapshot { seg_ids, segs, ts }
}
/// Merge metadata-only cold row visibility into an aligned membership
/// bitmap that was already populated by the hot table.
///
/// The method acquires the pending-tombstone lock once for the whole
/// bounded batch. It never loads column blocks, marks a volume as accessed,
/// or materializes a row.
pub fn merge_visible_row_ids_from_cold_snapshot(
&self,
snapshot: &ColdSnapshot,
txn_id: i64,
snapshot_seq: Option<u64>,
row_ids: &[i64],
matches: &mut [bool],
) -> usize {
debug_assert_eq!(row_ids.len(), matches.len());
let pending_guard = self.pending_txn_tombstones.read();
let pending = pending_guard.get(&txn_id);
let mut hit_count = matches.iter().filter(|&&matched| matched).count();
for (position, &row_id) in row_ids.iter().enumerate() {
if matches[position] {
continue;
}
if pending.is_some_and(|pending| pending.ids.contains(&row_id)) {
continue;
}
if snapshot
.ts
.get(&row_id)
.is_some_and(|&commit_seq| snapshot_seq.is_none_or(|cutoff| commit_seq <= cutoff))
{
continue;
}
for segment_id in &snapshot.seg_ids {
let Some(cold) = snapshot.segs.get(segment_id) else {
continue;
};
let row_ids = &cold.volume.meta.row_ids;
let Some((min_id, max_id)) = row_ids.first().zip(row_ids.last()) else {
continue;
};
if row_id < min_id || row_id > max_id {
continue;
}
if let Ok(index) = row_ids.binary_search(&row_id) {
if cold.is_visible(index) {
matches[position] = true;
hit_count += 1;
break;
}
}
}
}
hit_count
}
/// Check if a value exists using a pre-captured snapshot (no lock acquisition).
pub fn check_value_exists_with_snapshot(
&self,
snapshot: &ColdSnapshot,
col_idx: usize,
value: &radixdb_core::Value,
) -> Result<Option<i64>> {
self.check_value_exists_impl(
&snapshot.seg_ids,
&snapshot.segs,
&snapshot.ts,
col_idx,
value,
)
}
/// Return the first visible cold row whose physical row id is present in
/// the sorted candidate set.
///
/// `INTEGER PRIMARY KEY` is the physical row identity in RadixDB. COPY
/// therefore does not need to probe every immutable segment once per
/// incoming row: intersect the complete candidate batch with each
/// segment's resident row-id metadata instead. The operation performs no
/// payload reads and costs O(segments * log(candidates) + actual overlaps).
pub fn first_visible_row_id_in_sorted_batch(
&self,
snapshot: &ColdSnapshot,
sorted_row_ids: &[i64],
skip_row_ids: &FxHashSet<i64>,
) -> Option<i64> {
if sorted_row_ids.is_empty() || snapshot.seg_ids.is_empty() {
return None;
}
for segment_id in &snapshot.seg_ids {
let Some(cold) = snapshot.segs.get(segment_id) else {
continue;
};
let segment_row_ids = &cold.volume.meta.row_ids;
let Some((minimum, maximum)) = segment_row_ids.first().zip(segment_row_ids.last())
else {
continue;
};
let start = sorted_row_ids.partition_point(|row_id| *row_id < minimum);
let end = sorted_row_ids.partition_point(|row_id| *row_id <= maximum);
for row_id in &sorted_row_ids[start..end] {
if skip_row_ids.contains(row_id) || snapshot.ts.contains_key(row_id) {
continue;
}
let Ok(index) = segment_row_ids.binary_search(row_id) else {
continue;
};
if cold.is_visible(index) {
return Some(*row_id);
}
}
}
None
}
/// Check if a value exists in cold segments (acquires locks per call).
/// For batch operations, prefer cold_snapshot() + check_value_exists_with_snapshot().
pub fn check_value_exists_in_segments(
&self,
col_idx: usize,
value: &radixdb_core::Value,
) -> Result<Option<i64>> {
let snapshot = self.cold_snapshot();
self.check_value_exists_impl(
&snapshot.seg_ids,
&snapshot.segs,
&snapshot.ts,
col_idx,
value,
)
}
/// Resolve the current value at a logical column for a given row_id.
/// Iterates newest-first with per-volume physical mapping. Used by
/// overlap verification to check the authoritative version after
/// UPDATE changes a PK value + seal (schema-evolution safe).
pub(super) fn get_authoritative_value(
&self,
row_id: i64,
col_idx: usize,
) -> Result<Option<radixdb_core::Value>> {
let (seg_ids, segments) = {
let manifest = self.manifest.read();
let seg_ids: Vec<u64> = manifest
.segments
.iter()
.rev()
.map(|m| m.segment_id)
.collect();
let segments = self.segments.load_full();
(seg_ids, segments)
};
for seg_id in &seg_ids {
if let Some(cold) = segments.get(seg_id) {
if let Ok(idx) = cold.volume.meta.row_ids.binary_search(&row_id) {
let pi = if cold.mapping.is_identity {
col_idx
} else if col_idx < cold.mapping.sources.len() {
match &cold.mapping.sources[col_idx] {
super::super::writer::ColSource::Volume(vi) => *vi,
super::super::writer::ColSource::Default(val) => {
return Ok(Some(val.clone()));
}
}
} else {
return Ok(None);
};
if cold.volume.is_cold() {
return self
.read_cold_value_at(*seg_id, &cold.volume, pi, idx)
.map(Some);
}
cold.volume.mark_accessed();
return Ok(Some(cold.volume.columns[pi].get_value(idx)));
}
}
}
Ok(None)
}
pub(super) fn check_value_exists_impl(
&self,
seg_ids: &[u64],
segs: &FxHashMap<u64, ColdSegment>,
ts: &FxHashMap<i64, u64>,
col_idx: usize,
value: &radixdb_core::Value,
) -> Result<Option<i64>> {
let mut seen = FxHashSet::default();
for &seg_id in seg_ids {
let Some(cold) = segs.get(&seg_id) else {
continue;
};
let vol = &cold.volume;
// Resolve logical col_idx to physical index via per-volume mapping.
// After DROP COLUMN, older volumes may store the column at a
// different position than the current schema ordinal.
let pi = if cold.mapping.is_identity {
if col_idx >= vol.columns.len() {
continue;
}
col_idx
} else if col_idx < cold.mapping.sources.len() {
match &cold.mapping.sources[col_idx] {
super::super::writer::ColSource::Volume(vi) => *vi,
super::super::writer::ColSource::Default(_) => continue,
}
} else {
continue;
};
if pi >= vol.meta.zone_maps.len() || !vol.meta.zone_maps[pi].may_contain_eq(value) {
continue;
}
let target = match value {
radixdb_core::Value::Integer(int_val) => Some(*int_val),
radixdb_core::Value::Timestamp(ts_val) => Some(
ts_val
.timestamp_nanos_opt()
.unwrap_or(ts_val.timestamp() * 1_000_000_000),
),
_ => None,
};
if let Some(target) = target {
{
let group_count = self.cold_group_count(seg_id, vol)?;
for group_idx in 0..group_count {
let mut blocks =
self.read_cold_blocks_from_volume(seg_id, vol, &[pi], group_idx)?;
let Some((_, column)) = blocks.pop() else {
continue;
};
let group_range = self.cold_group_range(seg_id, vol, group_idx)?;
for local_idx in 0..group_range.len() {
if column.is_null(local_idx) || column.get_i64(local_idx) != target {
continue;
}
let i = group_range.start + local_idx;
let rid = vol.meta.row_ids.at(i);
if !seen.insert(rid) || ts.contains_key(&rid) {
continue;
}
if seg_ids.len() > 1 {
if let Some(current_val) =
self.get_authoritative_value(rid, col_idx)?
{
if ¤t_val != value {
continue;
}
}
}
return Ok(Some(rid));
}
}
continue;
}
}
}
Ok(None)
}
/// Find a visible cold row ID matching the given column values.
/// Uses a three-tier pruning strategy per volume (newest first):
/// 1. Zone map: skip if value outside [min, max] for any column
/// 2. Bloom filter: skip if any column says "definitely not"
/// 3. Per-volume hash index: O(1) lookup (lazily built, never invalidated)
///
/// No global cache. Each volume's hash index is built once on first use
/// and lives on the immutable FrozenVolume. Zero invalidation cost.
/// Find row by values using a pre-captured snapshot (no lock acquisition).
pub fn find_row_id_by_values_with_snapshot(
&self,
snapshot: &ColdSnapshot,
col_indices: &[usize],
values: &[&Value],
column_defaults: &[Value],
) -> Result<Option<i64>> {
self.find_row_id_by_values_impl(
&snapshot.seg_ids,
&snapshot.segs,
&snapshot.ts,
col_indices,
values,
column_defaults,
)
}
pub fn find_row_id_by_values(
&self,
col_indices: &[usize],
values: &[&Value],
column_defaults: &[Value],
) -> Result<Option<i64>> {
let snapshot = self.cold_snapshot();
self.find_row_id_by_values_impl(
&snapshot.seg_ids,
&snapshot.segs,
&snapshot.ts,
col_indices,
values,
column_defaults,
)
}
pub(super) fn find_row_id_by_values_impl(
&self,
seg_ids: &[u64],
segs: &FxHashMap<u64, ColdSegment>,
ts: &FxHashMap<i64, u64>,
col_indices: &[usize],
values: &[&Value],
column_defaults: &[Value],
) -> Result<Option<i64>> {
if col_indices.is_empty() || col_indices.len() != values.len() {
return Ok(None);
}
if seg_ids.is_empty() {
return Ok(None);
}
let bloom_hashes: smallvec::SmallVec<[u64; 4]> = values
.iter()
.map(|v| super::super::column::ColumnBloomFilter::hash_value_static(v))
.collect();
// Track seen row_ids for newest-first dedup across overlapping volumes.
let mut seen = FxHashSet::default();
for &seg_id in seg_ids {
let Some(cold) = segs.get(&seg_id) else {
continue;
};
let vol = &cold.volume;
// Derive remap from ColdSegment.mapping (already cached per volume).
// Maps schema column indices to volume column indices.
// Missing columns (ColSource::Default) are usize::MAX.
let mut vol_col_indices: smallvec::SmallVec<[usize; 4]> =
smallvec::SmallVec::with_capacity(col_indices.len());
let mut has_missing = false;
let mut skip_vol = false;
for (i, &ci) in col_indices.iter().enumerate() {
if ci < cold.mapping.sources.len() {
match &cold.mapping.sources[ci] {
super::super::writer::ColSource::Volume(vi) => {
vol_col_indices.push(*vi);
}
super::super::writer::ColSource::Default(_) => {
has_missing = true;
// Column missing from volume. If searched value
// doesn't match default, no row can match.
if *values[i] != column_defaults[i] {
skip_vol = true;
break;
}
vol_col_indices.push(usize::MAX);
}
}
} else {
// Schema column index out of range for this mapping
has_missing = true;
if *values[i] != column_defaults[i] {
skip_vol = true;
break;
}
vol_col_indices.push(usize::MAX);
}
}
if skip_vol {
continue;
}
// Tier 1: Zone map pruning
let mut zone_skip = false;
for (i, &vi) in vol_col_indices.iter().enumerate() {
if vi < vol.meta.zone_maps.len()
&& !vol.meta.zone_maps[vi].may_contain_eq(values[i])
{
zone_skip = true;
break;
}
}
if zone_skip {
continue;
}
// Tier 2: Bloom filter pruning
let mut bloom_skip = false;
for (i, &vi) in vol_col_indices.iter().enumerate() {
if vol.meta.column_types.get(vi).is_some_and(|data_type| {
super::super::column::ColumnBloomFilter::supports_definitive_pruning(
*data_type, values[i],
)
}) && vi < vol.meta.bloom_filters.len()
&& !vol.meta.bloom_filters[vi].might_contain_hash(bloom_hashes[i])
{
bloom_skip = true;
break;
}
}
if bloom_skip {
continue;
}
// Tier 3: Per-volume hash index
let mut vol_result: Option<i64> = None;
{
// artifact-backed metadata-only fast path: use the persisted posting source
// without materializing full columns or rebuilding a resident
// per-volume index. Only candidates are read back to verify
// hash collisions. Volumes predating the posting set fall back
// to a direct participating-column scan below.
let mut used_prebuilt_index = false;
let mut prebuilt_index_read_failed = false;
if !has_missing {
let mut query_hasher = super::super::index_hash::PersistedIndexHasher::new();
for (value_idx, &vi) in vol_col_indices.iter().enumerate() {
let Some(&data_type) = vol.meta.column_types.get(vi) else {
prebuilt_index_read_failed = true;
break;
};
if !super::super::index_hash::persisted_index_hash_is_compatible(
data_type,
Some(values[value_idx]),
) {
prebuilt_index_read_failed = true;
break;
}
query_hasher.add_value(data_type, values[value_idx]);
}
if !prebuilt_index_read_failed {
let query_hash = query_hasher.finish();
if vol
.visit_exact_posting_candidates(
vol_col_indices.as_slice(),
query_hash,
|row_idx| {
let row_idx = row_idx as usize;
let Some(rid) = vol.meta.row_ids.get(row_idx) else {
prebuilt_index_read_failed = true;
return Ok(true);
};
if ts.contains_key(&rid) {
return Ok(false);
}
let mut matches = true;
for (value_idx, &vi) in vol_col_indices.iter().enumerate() {
let candidate_value =
self.read_cold_value_at(seg_id, vol, vi, row_idx)?;
if candidate_value.is_null()
|| &candidate_value != values[value_idx]
{
matches = false;
break;
}
}
if matches && seen.insert(rid) {
vol_result = Some(rid);
return Ok(true);
}
Ok(false)
},
)?
.is_some()
{
used_prebuilt_index = true;
}
}
}
if used_prebuilt_index && !prebuilt_index_read_failed {
if vol_result.is_some() {
instrumentation::record_ram_accelerator_hit();
} else {
instrumentation::record_ram_accelerator_miss();
}
if vol_result.is_none() {
continue;
}
} else {
instrumentation::record_ram_accelerator_fallback();
// artifact-backed metadata-only fallback path: read participating
// physical columns by row-group blocks, not as whole
// materialized columns.
let present_cols: smallvec::SmallVec<[(usize, usize); 4]> = vol_col_indices
.iter()
.enumerate()
.filter_map(|(value_idx, &vi)| {
if vi == usize::MAX {
None
} else {
Some((value_idx, vi))
}
})
.collect();
let physical_cols: smallvec::SmallVec<[usize; 4]> =
present_cols.iter().map(|(_, vi)| *vi).collect();
let group_count = self.cold_group_count(seg_id, vol)?;
for group_idx in 0..group_count {
let blocks = self.read_cold_blocks_from_volume(
seg_id,
vol,
physical_cols.as_slice(),
group_idx,
)?;
let group_range = self.cold_group_range(seg_id, vol, group_idx)?;
for local_idx in 0..group_range.len() {
let i = group_range.start + local_idx;
let rid = vol.meta.row_ids.at(i);
if ts.contains_key(&rid) || !seen.insert(rid) {
continue;
}
let mut matches = true;
for (value_idx, vi) in &present_cols {
let Some((_, column)) =
blocks.iter().find(|(block_col, _)| block_col == vi)
else {
matches = false;
break;
};
let v = column.get_value(local_idx);
if v.is_null() || v != *values[*value_idx] {
matches = false;
break;
}
}
if matches {
vol_result = Some(rid);
break;
}
}
if vol_result.is_some() {
break;
}
}
}
}
if let Some(rid) = vol_result {
// Verify this is the authoritative version. After UPDATE old→new
// + seal, overlapping volumes can have the same row_id with
// different values. The older volume's stale value is not
// tombstoned (tombstone cleared when row_id appeared in the newer
// volume). get_cold_row returns the newest version (newest-first).
// Use column_defaults for columns missing from schema-evolved volumes.
if seg_ids.len() > 1 {
let mut still_matches = true;
for (i, &ci) in col_indices.iter().enumerate() {
if let Some(v) = self.get_authoritative_value(rid, ci)? {
if v.is_null() || v != *values[i] {
still_matches = false;
break;
}
} else if column_defaults[i] != *values[i] {
still_matches = false;
break;
}
}
if !still_matches {
continue; // stale value in older volume, skip
}
}
return Ok(Some(rid));
}
}
Ok(None)
}
/// Resolve every visible cold row matching one exact composite key through
/// persisted per-volume postings.
///
/// `Ok(None)` means at least one published volume does not carry the
/// requested posting set (for example, it predates the index). Callers must
/// then use the ordinary artifact-backed scan and must not advertise an index access path.
/// `Ok(Some(ids))` is a complete candidate set, including the empty set.
pub fn find_row_ids_by_exact_index(
&self,
col_indices: &[usize],
values: &[&Value],
snapshot_seq: Option<u64>,
max_candidates: Option<usize>,
) -> Result<Option<Vec<i64>>> {
if col_indices.is_empty() || col_indices.len() != values.len() {
return Ok(None);
}
let snapshot = self.cold_snapshot();
if snapshot.seg_ids.is_empty() {
return Ok(Some(Vec::new()));
}
// Prove completeness before reading candidates. A partial set is worse
// than a scan because it can silently omit rows from older volumes.
let mut volume_columns = Vec::with_capacity(snapshot.seg_ids.len());
for &segment_id in &snapshot.seg_ids {
let Some(cold) = snapshot.segs.get(&segment_id) else {
return Ok(None);
};
let mut physical = smallvec::SmallVec::<[usize; 4]>::new();
for &schema_col in col_indices {
let Some(source) = cold.mapping.sources.get(schema_col) else {
return Ok(None);
};
let super::super::writer::ColSource::Volume(volume_col) = source else {
// A schema default represents every row in this volume; it
// cannot be served by a bounded persisted posting list.
return Ok(None);
};
physical.push(*volume_col);
}
if !cold.volume.has_exact_postings(physical.as_slice()) {
return Ok(None);
}
for (value_idx, &volume_col) in physical.iter().enumerate() {
let Some(&data_type) = cold.volume.meta.column_types.get(volume_col) else {
return Err(Error::internal(format!(
"cold segment {} exact index column {} has no stored type",
segment_id, volume_col
)));
};
if !super::super::index_hash::persisted_index_hash_is_compatible(
data_type,
Some(values[value_idx]),
) {
return Ok(None);
}
}
volume_columns.push((segment_id, physical));
}
instrumentation::record_posting_exact_lookup_fanout(volume_columns.len());
let mut result = Vec::new();
let mut seen = FxHashSet::default();
for (segment_id, physical) in volume_columns {
let cold = snapshot
.segs
.get(&segment_id)
.expect("exact-index coverage was checked above");
let volume = &cold.volume;
if let Some(source) = volume.artifact_index_source() {
let owned_values = values
.iter()
.map(|value| (*value).clone())
.collect::<Vec<_>>();
let remaining = max_candidates.map(|limit| limit.saturating_sub(result.len()));
let Some(row_ordinals) =
source.lookup_equality(physical.as_slice(), &owned_values, remaining)?
else {
return Ok(None);
};
for row_ordinal in row_ordinals {
let row_idx = usize::try_from(row_ordinal).map_err(|_| {
Error::internal(format!(
"cold segment {segment_id} INDEX row ordinal exceeds usize"
))
})?;
if !cold.is_visible(row_idx) {
continue;
}
let row_id = volume.row_id_at(row_idx)?;
if snapshot.ts.get(&row_id).is_some_and(|&commit_seq| {
snapshot_seq.is_none_or(|cutoff| commit_seq <= cutoff)
}) {
continue;
}
let mut matches = true;
for (value_idx, &volume_col) in physical.iter().enumerate() {
let candidate =
self.read_cold_value_at(segment_id, volume, volume_col, row_idx)?;
if candidate.is_null() || &candidate != values[value_idx] {
matches = false;
break;
}
}
if matches && seen.insert(row_id) {
result.push(row_id);
if max_candidates.is_some_and(|limit| result.len() > limit) {
return Ok(None);
}
}
}
continue;
}
let mut query_hasher = super::super::index_hash::PersistedIndexHasher::new();
for (value_idx, &volume_col) in physical.iter().enumerate() {
let Some(&data_type) = volume.meta.column_types.get(volume_col) else {
return Err(Error::internal(format!(
"cold segment {} exact index column {} has no stored type",
segment_id, volume_col
)));
};
query_hasher.add_value(data_type, values[value_idx]);
}
let query_hash = query_hasher.finish();
let mut candidate_limit_exceeded = false;
volume
.visit_exact_posting_candidates(physical.as_slice(), query_hash, |row_idx| {
let row_idx = row_idx as usize;
if !cold.is_visible(row_idx) {
return Ok(false);
}
let Some(row_id) = volume.meta.row_ids.get(row_idx) else {
return Err(Error::internal(format!(
"cold segment {} exact index row {} exceeds row-id metadata",
segment_id, row_idx
)));
};
if snapshot.ts.get(&row_id).is_some_and(|&commit_seq| {
snapshot_seq.is_none_or(|cutoff| commit_seq <= cutoff)
}) {
return Ok(false);
}
for (value_idx, &volume_col) in physical.iter().enumerate() {
let candidate =
self.read_cold_value_at(segment_id, volume, volume_col, row_idx)?;
if candidate.is_null() || &candidate != values[value_idx] {
return Ok(false);
}
}
if seen.insert(row_id) {
result.push(row_id);
if max_candidates.is_some_and(|limit| result.len() > limit) {
candidate_limit_exceeded = true;
return Ok(true);
}
}
Ok(false)
})?
.ok_or_else(|| {
Error::internal("exact posting source disappeared after coverage check")
})?;
if candidate_limit_exceeded {
return Ok(None);
}
}
result.sort_unstable();
Ok(Some(result))
}
/// Resolve bounded posting-hash candidates for one exact composite key.
///
/// Unlike [`Self::find_row_ids_by_exact_index`], this method deliberately
/// does not decode participating column blocks to verify every candidate.
/// It is only for table scan paths that immediately materialize the
/// authoritative rows and re-evaluate the complete predicate. Keeping that
/// single verification at the table boundary avoids one random artifact-backed decode
/// per matching posting while preserving collision and shadow safety.
pub fn find_candidate_row_ids_by_exact_index(
&self,
col_indices: &[usize],
values: &[&Value],
snapshot_seq: Option<u64>,
max_candidates: Option<usize>,
) -> Result<Option<Vec<i64>>> {
if col_indices.is_empty() || col_indices.len() != values.len() {
return Ok(None);
}
let snapshot = self.cold_snapshot();
if snapshot.seg_ids.is_empty() {
return Ok(Some(Vec::new()));
}
let mut volume_columns = Vec::with_capacity(snapshot.seg_ids.len());
for &segment_id in &snapshot.seg_ids {
let Some(cold) = snapshot.segs.get(&segment_id) else {
return Ok(None);
};
let mut physical = smallvec::SmallVec::<[usize; 4]>::new();
for &schema_col in col_indices {
let Some(super::super::writer::ColSource::Volume(volume_col)) =
cold.mapping.sources.get(schema_col)
else {
return Ok(None);
};
physical.push(*volume_col);
}
if !cold.volume.has_exact_postings(physical.as_slice()) {
return Ok(None);
}
for (value_idx, &volume_col) in physical.iter().enumerate() {
let Some(&data_type) = cold.volume.meta.column_types.get(volume_col) else {
return Err(Error::internal(format!(
"cold segment {} exact index column {} has no stored type",
segment_id, volume_col
)));
};
if !super::super::index_hash::persisted_index_hash_is_compatible(
data_type,
Some(values[value_idx]),
) {
return Ok(None);
}
}
volume_columns.push((segment_id, physical));
}
instrumentation::record_posting_exact_lookup_fanout(volume_columns.len());
let mut result = Vec::new();
let mut seen = FxHashSet::default();
for (segment_id, physical) in volume_columns {
let cold = snapshot
.segs
.get(&segment_id)
.expect("exact-index candidate coverage was checked above");
if let Some(source) = cold.volume.artifact_index_source() {
let owned_values = values
.iter()
.map(|value| (*value).clone())
.collect::<Vec<_>>();
let remaining = max_candidates.map(|limit| limit.saturating_sub(result.len()));
let Some(row_ordinals) =
source.lookup_equality(physical.as_slice(), &owned_values, remaining)?
else {
return Ok(None);
};
for row_ordinal in row_ordinals {
let row_idx = usize::try_from(row_ordinal).map_err(|_| {
Error::internal(format!(
"cold segment {segment_id} INDEX row ordinal exceeds usize"
))
})?;
if !cold.is_visible(row_idx) {
continue;
}
let row_id = cold.volume.row_id_at(row_idx)?;
if snapshot.ts.get(&row_id).is_some_and(|&commit_seq| {
snapshot_seq.is_none_or(|cutoff| commit_seq <= cutoff)
}) {
continue;
}
if seen.insert(row_id) {
result.push(row_id);
if max_candidates.is_some_and(|limit| result.len() > limit) {
return Ok(None);
}
}
}
continue;
}
let mut query_hasher = super::super::index_hash::PersistedIndexHasher::new();
for (value_idx, &volume_col) in physical.iter().enumerate() {
let data_type = cold.volume.meta.column_types[volume_col];
query_hasher.add_value(data_type, values[value_idx]);
}
let query_hash = query_hasher.finish();
let mut candidate_limit_exceeded = false;
cold.volume
.visit_exact_posting_candidates(physical.as_slice(), query_hash, |row_idx| {
let row_idx = row_idx as usize;
if !cold.is_visible(row_idx) {
return Ok(false);
}
let Some(row_id) = cold.volume.meta.row_ids.get(row_idx) else {
return Err(Error::internal(format!(
"cold segment {} exact index row {} exceeds row-id metadata",
segment_id, row_idx
)));
};
if snapshot.ts.get(&row_id).is_some_and(|&commit_seq| {
snapshot_seq.is_none_or(|cutoff| commit_seq <= cutoff)
}) {
return Ok(false);
}
if seen.insert(row_id) {
result.push(row_id);
if max_candidates.is_some_and(|limit| result.len() > limit) {
candidate_limit_exceeded = true;
return Ok(true);
}
}
Ok(false)
})?
.ok_or_else(|| {
Error::internal(
"exact posting candidate source disappeared after coverage check",
)
})?;
if candidate_limit_exceeded {
return Ok(None);
}
}
result.sort_unstable();
Ok(Some(result))
}
/// Resolve bounded physical candidates for several values of one exact
/// indexed column without materializing candidate values one row at a
/// time.
///
/// The returned IDs are posting-hash candidates, not yet an exact logical
/// result. The table layer must perform one authoritative projected fetch
/// and value recheck after merging hot and cold IDs. Keeping that recheck
/// at the table boundary both handles hash collisions/newer hot versions
/// and lets artifact-backed decode each participating row group once per key batch.
pub fn find_candidate_row_ids_by_exact_index_values(
&self,
col_index: usize,
values: &[Value],
snapshot_seq: Option<u64>,
max_candidates: Option<usize>,
) -> Result<Option<Vec<i64>>> {
if values.is_empty() {
return Ok(Some(Vec::new()));
}
let snapshot = self.cold_snapshot();
if snapshot.seg_ids.is_empty() {
return Ok(Some(Vec::new()));
}
// Prove complete posting coverage before returning any candidates.
let mut volume_columns = Vec::with_capacity(snapshot.seg_ids.len());
for &segment_id in &snapshot.seg_ids {
let Some(cold) = snapshot.segs.get(&segment_id) else {
return Ok(None);
};
let Some(super::super::writer::ColSource::Volume(volume_col)) =
cold.mapping.sources.get(col_index)
else {
return Ok(None);
};
if !cold.volume.has_exact_postings(&[*volume_col]) {
return Ok(None);
}
let Some(&data_type) = cold.volume.meta.column_types.get(*volume_col) else {
return Err(Error::internal(format!(
"cold segment {} exact index column {} has no stored type",
segment_id, volume_col
)));
};
if values.iter().any(|value| {
!super::super::index_hash::persisted_index_hash_is_compatible(
data_type,
Some(value),
)
}) {
return Ok(None);
}
volume_columns.push((segment_id, *volume_col, data_type));
}
instrumentation::record_posting_exact_lookup_fanout(volume_columns.len());
let mut result = Vec::new();
let mut seen = FxHashSet::default();
for (segment_id, volume_col, data_type) in volume_columns {
let cold = snapshot
.segs
.get(&segment_id)
.expect("exact-index candidate coverage was checked above");
for value in values {
if let Some(source) = cold.volume.artifact_index_source() {
let remaining = max_candidates.map(|limit| limit.saturating_sub(result.len()));
let Some(row_ordinals) = source.lookup_equality(
&[volume_col],
std::slice::from_ref(value),
remaining,
)?
else {
return Ok(None);
};
for row_ordinal in row_ordinals {
let row_idx = usize::try_from(row_ordinal).map_err(|_| {
Error::internal(format!(
"cold segment {segment_id} INDEX row ordinal exceeds usize"
))
})?;
if !cold.is_visible(row_idx) {
continue;
}
let row_id = cold.volume.row_id_at(row_idx)?;
if snapshot.ts.get(&row_id).is_some_and(|&commit_seq| {
snapshot_seq.is_none_or(|cutoff| commit_seq <= cutoff)
}) {
continue;
}
if seen.insert(row_id) {
result.push(row_id);
if max_candidates.is_some_and(|limit| result.len() > limit) {
return Ok(None);
}
}
}
continue;
}
let mut query_hasher = super::super::index_hash::PersistedIndexHasher::new();
query_hasher.add_value(data_type, value);
let query_hash = query_hasher.finish();
let mut candidate_limit_exceeded = false;
cold.volume
.visit_exact_posting_candidates(&[volume_col], query_hash, |row_idx| {
let row_idx = row_idx as usize;
if !cold.is_visible(row_idx) {
return Ok(false);
}
let Some(row_id) = cold.volume.meta.row_ids.get(row_idx) else {
return Err(Error::internal(format!(
"cold segment {} exact index row {} exceeds row-id metadata",
segment_id, row_idx
)));
};
if snapshot.ts.get(&row_id).is_some_and(|&commit_seq| {
snapshot_seq.is_none_or(|cutoff| commit_seq <= cutoff)
}) {
return Ok(false);
}
if seen.insert(row_id) {
result.push(row_id);
if max_candidates.is_some_and(|limit| result.len() > limit) {
candidate_limit_exceeded = true;
return Ok(true);
}
}
Ok(false)
})?
.ok_or_else(|| {
Error::internal(
"exact posting candidate source disappeared after coverage check",
)
})?;
if candidate_limit_exceeded {
return Ok(None);
}
}
}
result.sort_unstable();
Ok(Some(result))
}
/// Resolve a bounded, ordered cold candidate set for an equality prefix
/// followed by one INTEGER or TIMESTAMP range column. The equality prefix
/// may be empty for a single-column ordered index. Every published volume must carry
/// the posting set; otherwise the caller receives `Ok(None)` and uses the
/// ordinary scan path without advertising an index access path.
#[allow(clippy::too_many_arguments)]
pub fn find_row_ids_by_ordered_index(
&self,
col_indices: &[usize],
prefix_values: &[&Value],
min: Option<(i64, bool)>,
max: Option<(i64, bool)>,
ascending: bool,
limit: usize,
snapshot_seq: Option<u64>,
skip_row_ids: &FxHashSet<i64>,
) -> Result<Option<Vec<i64>>> {
if col_indices.is_empty() || prefix_values.len() + 1 != col_indices.len() {
return Ok(None);
}
if limit == 0 {
return Ok(Some(Vec::new()));
}
// A full-key V6 ordered accelerator can express an open bound for a
// single-column range. For a composite equality-prefix range, an open
// end would require prefix sentinels that are not part of the current
// canonical-key contract; fall back to the ordinary scan instead of
// returning a truncated cross-prefix candidate set.
if !prefix_values.is_empty() && (min.is_none() || max.is_none()) {
return Ok(None);
}
let snapshot = self.cold_snapshot();
if snapshot.seg_ids.is_empty() {
return Ok(Some(Vec::new()));
}
let mut volume_columns = Vec::with_capacity(snapshot.seg_ids.len());
for &segment_id in &snapshot.seg_ids {
let Some(cold) = snapshot.segs.get(&segment_id) else {
return Ok(None);
};
let physical: Option<smallvec::SmallVec<[usize; 4]>> = col_indices
.iter()
.map(|&schema_col| match cold.mapping.sources.get(schema_col) {
Some(super::super::writer::ColSource::Volume(volume_col)) => Some(*volume_col),
_ => None,
})
.collect();
let Some(physical) = physical else {
return Ok(None);
};
if !cold.volume.has_ordered_postings(physical.as_slice()) {
return Ok(None);
}
for (value_idx, &volume_col) in physical[..physical.len() - 1].iter().enumerate() {
let Some(&data_type) = cold.volume.meta.column_types.get(volume_col) else {
return Err(Error::internal(format!(
"cold segment {} ordered index column {} has no stored type",
segment_id, volume_col
)));
};
if !super::super::index_hash::persisted_index_hash_is_compatible(
data_type,
Some(prefix_values[value_idx]),
) {
return Ok(None);
}
}
volume_columns.push((segment_id, physical));
}
instrumentation::record_posting_ordered_lookup_fanout(volume_columns.len());
let mut candidates = Vec::with_capacity(limit.saturating_mul(volume_columns.len()));
for (segment_id, physical) in volume_columns {
let cold = snapshot
.segs
.get(&segment_id)
.expect("ordered-index coverage was checked above");
let volume = &cold.volume;
if let Some(source) = volume.artifact_index_source() {
let range_column = *physical.last().expect("ordered physical key is non-empty");
let range_type = *volume.meta.column_types.get(range_column).ok_or_else(|| {
Error::internal(format!(
"cold segment {segment_id} ordered range column has no stored type"
))
})?;
let mut lower_values = prefix_values
.iter()
.map(|value| (*value).clone())
.collect::<Vec<_>>();
let mut upper_values = lower_values.clone();
let lower_inclusive = min.map(|(_, inclusive)| inclusive).unwrap_or(true);
let upper_inclusive = max.map(|(_, inclusive)| inclusive).unwrap_or(true);
if let Some((bound, _)) = min {
lower_values.push(ordered_runtime_bound_value(range_type, bound)?);
}
if let Some((bound, _)) = max {
upper_values.push(ordered_runtime_bound_value(range_type, bound)?);
}
let lower = min.map(|_| (lower_values.as_slice(), lower_inclusive));
let upper = max.map(|_| (upper_values.as_slice(), upper_inclusive));
let Some(row_ordinals) =
source.scan_ordered(physical.as_slice(), lower, upper, ascending, limit)?
else {
return Ok(None);
};
for row_ordinal in row_ordinals {
let row_idx = usize::try_from(row_ordinal).map_err(|_| {
Error::internal(format!(
"cold segment {segment_id} INDEX row ordinal exceeds usize"
))
})?;
if !cold.is_visible(row_idx) {
continue;
}
let row_id = volume.row_id_at(row_idx)?;
if skip_row_ids.contains(&row_id)
|| snapshot.ts.get(&row_id).is_some_and(|&commit_seq| {
snapshot_seq.is_none_or(|cutoff| commit_seq <= cutoff)
})
{
continue;
}
let order_key = self
.read_cold_value_at(segment_id, volume, range_column, row_idx)?
.as_int64()
.ok_or_else(|| {
Error::internal("ordered INDEX returned a non-integral range key")
})?;
candidates.push((order_key, row_id));
}
continue;
}
let mut query_hasher = super::super::index_hash::PersistedIndexHasher::new();
for (value_idx, &volume_col) in physical[..physical.len() - 1].iter().enumerate() {
let Some(&data_type) = volume.meta.column_types.get(volume_col) else {
return Err(Error::internal(format!(
"cold segment {} ordered index column {} has no stored type",
segment_id, volume_col
)));
};
query_hasher.add_value(data_type, prefix_values[value_idx]);
}
let prefix_hash = query_hasher.finish();
let mut accepted = 0usize;
let mut visit =
|entry: &super::super::index_metadata::OrderedIndexEntry| -> Result<bool> {
if accepted >= limit {
return Ok(true);
}
let row_idx = entry.row_idx as usize;
if !cold.is_visible(row_idx) {
return Ok(false);
}
let Some(row_id) = volume.meta.row_ids.get(row_idx) else {
return Err(Error::internal(format!(
"cold segment {} ordered index row {} exceeds row-id metadata",
segment_id, row_idx
)));
};
if skip_row_ids.contains(&row_id)
|| snapshot.ts.get(&row_id).is_some_and(|&commit_seq| {
snapshot_seq.is_none_or(|cutoff| commit_seq <= cutoff)
})
{
return Ok(false);
}
// The prefix hash is only a candidate selector. Re-read the
// participating prefix values to make collisions harmless.
for (value_idx, &volume_col) in
physical[..physical.len() - 1].iter().enumerate()
{
let candidate =
self.read_cold_value_at(segment_id, volume, volume_col, row_idx)?;
if candidate.is_null() || &candidate != prefix_values[value_idx] {
return Ok(false);
}
}
candidates.push((entry.order_key, row_id));
accepted += 1;
Ok(accepted >= limit)
};
volume
.visit_ordered_posting_candidates(
physical.as_slice(),
prefix_hash,
min,
max,
ascending,
|entry| visit(&entry),
)?
.ok_or_else(|| {
Error::internal("ordered posting source disappeared after coverage check")
})?;
}
candidates.sort_unstable_by(|left, right| {
let ordering = (left.0, left.1).cmp(&(right.0, right.1));
if ascending {
ordering
} else {
ordering.reverse()
}
});
let mut seen = FxHashSet::default();
Ok(Some(
candidates
.into_iter()
.filter_map(|(_, row_id)| seen.insert(row_id).then_some(row_id))
.take(limit)
.collect(),
))
}
/// Return true only when every currently published cold volume can answer
/// the exact lookup from persisted postings. This metadata-only predicate is
/// used by EXPLAIN and never opens payload blocks.
pub fn has_exact_index_columns(&self, col_indices: &[usize]) -> bool {
if col_indices.is_empty() {
return false;
}
let snapshot = self.cold_snapshot();
!snapshot.seg_ids.is_empty()
&& snapshot.seg_ids.iter().all(|segment_id| {
let Some(cold) = snapshot.segs.get(segment_id) else {
return false;
};
let physical: Option<smallvec::SmallVec<[usize; 4]>> = col_indices
.iter()
.map(|&schema_col| match cold.mapping.sources.get(schema_col) {
Some(super::super::writer::ColSource::Volume(volume_col)) => {
Some(*volume_col)
}
_ => None,
})
.collect();
physical.is_some_and(|columns| {
columns.iter().all(|&column| {
cold.volume
.meta
.column_types
.get(column)
.is_some_and(|data_type| {
super::super::index_hash::persisted_index_hash_is_compatible(
*data_type, None,
)
})
}) && cold.volume.has_exact_postings(columns.as_slice())
})
})
}
/// Return true only when every published cold volume carries one complete
/// ordered posting set for the requested logical index prefix.
pub fn has_ordered_index_columns(&self, col_indices: &[usize]) -> bool {
if col_indices.is_empty() {
return false;
}
let snapshot = self.cold_snapshot();
!snapshot.seg_ids.is_empty()
&& snapshot.seg_ids.iter().all(|segment_id| {
let Some(cold) = snapshot.segs.get(segment_id) else {
return false;
};
let physical: Option<smallvec::SmallVec<[usize; 4]>> = col_indices
.iter()
.map(|&schema_col| match cold.mapping.sources.get(schema_col) {
Some(super::super::writer::ColSource::Volume(volume_col)) => {
Some(*volume_col)
}
_ => None,
})
.collect();
physical.is_some_and(|columns| {
columns.iter().all(|&column| {
cold.volume
.meta
.column_types
.get(column)
.is_some_and(|data_type| {
super::super::index_hash::persisted_index_hash_is_compatible(
*data_type, None,
)
})
}) && cold.volume.has_ordered_postings(columns.as_slice())
})
})
}
}
fn ordered_runtime_bound_value(data_type: radixdb_core::DataType, value: i64) -> Result<Value> {
match data_type {
radixdb_core::DataType::Integer => Ok(Value::Integer(value)),
radixdb_core::DataType::Timestamp => Ok(Value::timestamp(
chrono::DateTime::from_timestamp_nanos(value),
)),
_ => Err(Error::internal(
"ordered runtime bound is not INTEGER or TIMESTAMP",
)),
}
}