aletheiadb 0.1.0

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

use crate::core::error::{Result, StorageError};
use crate::core::hasher::IdentityHasher;
use crate::core::id::{EdgeId, NodeId, VersionId};
use crate::core::interning::InternedString;
use crate::core::property::PropertyMap;
use crate::core::temporal::Timestamp;
use std::collections::HashMap;
use std::hash::BuildHasherDefault;

type FastHashMap<K, V> = HashMap<K, V, BuildHasherDefault<IdentityHasher>>;

/// Buffered write operation
///
/// Represents an uncommitted write operation that will be applied
/// atomically when the transaction commits.
///
/// ## Bi-Temporal Semantics
///
/// Each write variant stores `valid_from` (when the fact became true in reality),
/// but not `transaction_time` (which is only known at commit time). This enables
/// true bi-temporal semantics where valid_time can be backdated independently
/// of when the transaction commits.
#[derive(Debug, Clone)]
pub enum BufferedWrite {
    /// Create a new node
    CreateNode {
        /// Node ID
        node_id: NodeId,
        /// Version ID for this node
        version_id: VersionId,
        /// Node label
        label: InternedString,
        /// Node properties
        properties: PropertyMap,
        /// When the node became valid in reality (user-controlled)
        valid_from: Timestamp,
    },
    /// Create a new edge
    CreateEdge {
        /// Edge ID
        edge_id: EdgeId,
        /// Version ID for this edge
        version_id: VersionId,
        /// Source node ID
        source: NodeId,
        /// Target node ID
        target: NodeId,
        /// Edge label
        label: InternedString,
        /// Edge properties
        properties: PropertyMap,
        /// When the edge became valid in reality (user-controlled)
        valid_from: Timestamp,
    },
    /// Update an existing node (creates new version)
    UpdateNode {
        /// Node ID being updated
        node_id: NodeId,
        /// New version ID
        version_id: VersionId,
        /// Node label (preserved from existing)
        label: InternedString,
        /// New properties
        properties: PropertyMap,
        /// When this update became valid in reality (user-controlled)
        valid_from: Timestamp,
    },
    /// Update an existing edge (creates new version)
    UpdateEdge {
        /// Edge ID being updated
        edge_id: EdgeId,
        /// New version ID
        version_id: VersionId,
        /// Source node (preserved from existing)
        source: NodeId,
        /// Target node (preserved from existing)
        target: NodeId,
        /// Edge label (preserved from existing)
        label: InternedString,
        /// New properties
        properties: PropertyMap,
        /// When this update became valid in reality (user-controlled)
        valid_from: Timestamp,
    },
    /// Delete a node
    DeleteNode {
        /// Node ID to delete
        node_id: NodeId,
        /// When the deletion became valid in reality (user-controlled)
        valid_from: Timestamp,
    },
    /// Delete an edge
    DeleteEdge {
        /// Edge ID to delete
        edge_id: EdgeId,
        /// When the deletion became valid in reality (user-controlled)
        valid_from: Timestamp,
    },
}

impl BufferedWrite {
    /// Return the node ID if this operation applies to a node
    pub fn node_id(&self) -> Option<NodeId> {
        match self {
            Self::CreateNode { node_id, .. } => Some(*node_id),
            Self::UpdateNode { node_id, .. } => Some(*node_id),
            Self::DeleteNode { node_id, .. } => Some(*node_id),
            _ => None,
        }
    }

    /// Return the edge ID if this operation applies to an edge
    pub fn edge_id(&self) -> Option<EdgeId> {
        match self {
            Self::CreateEdge { edge_id, .. } => Some(*edge_id),
            Self::UpdateEdge { edge_id, .. } => Some(*edge_id),
            Self::DeleteEdge { edge_id, .. } => Some(*edge_id),
            _ => None,
        }
    }

    /// Return a reference to the properties map if the operation has one
    pub fn properties(&self) -> Option<&PropertyMap> {
        match self {
            Self::CreateNode { properties, .. } => Some(properties),
            Self::UpdateNode { properties, .. } => Some(properties),
            Self::CreateEdge { properties, .. } => Some(properties),
            Self::UpdateEdge { properties, .. } => Some(properties),
            _ => None,
        }
    }

    /// Check if this is a node operation
    pub fn is_node_operation(&self) -> bool {
        matches!(
            self,
            Self::CreateNode { .. } | Self::UpdateNode { .. } | Self::DeleteNode { .. }
        )
    }

    /// Check if this is an edge operation
    pub fn is_edge_operation(&self) -> bool {
        matches!(
            self,
            Self::CreateEdge { .. } | Self::UpdateEdge { .. } | Self::DeleteEdge { .. }
        )
    }

    /// Check if this operation modifies edge structure
    pub fn is_edge_structure_modification(&self) -> bool {
        matches!(self, Self::CreateEdge { .. } | Self::DeleteEdge { .. })
    }
}

/// Default maximum number of operations per transaction (DoS protection)
///
/// Set to 50,000 to accommodate realistic batch operations (imports, migrations)
/// while still providing protection against unbounded memory growth from malicious
/// or buggy clients. Production workloads commonly need >10k ops per transaction.
pub const DEFAULT_MAX_OPERATIONS: usize = 50_000;

/// Write buffer for collecting uncommitted changes
///
/// Buffers all write operations in a transaction until commit time,
/// enabling atomicity and validation before applying changes.
pub struct WriteBuffer {
    /// Buffered operations in order
    operations: Vec<BufferedWrite>,

    /// Quick lookup: which nodes have been written to
    /// Maps NodeId → index in operations vector
    ///
    /// Using IdentityHasher avoids SipHash overhead since NodeId is already a high-quality unique u64 ID.
    modified_nodes: FastHashMap<NodeId, usize>,

    /// Quick lookup: which edges have been written to
    /// Maps EdgeId → index in operations vector
    ///
    /// Using IdentityHasher avoids SipHash overhead since EdgeId is already a high-quality unique u64 ID.
    modified_edges: FastHashMap<EdgeId, usize>,

    /// Maximum number of operations allowed (DoS protection)
    max_operations: usize,

    /// Track whether any vector properties were written in this transaction.
    /// This flag is used to optimize the commit path by only triggering
    /// temporal vector index updates when vector data was actually modified.
    has_vector_operations: bool,

    /// Track whether any edge structure changes occurred in this transaction.
    /// This flag is used to optimize the commit path by only calling
    /// compact_adjacency() when the graph topology was modified.
    /// Only CreateEdge and DeleteEdge set this flag; UpdateEdge does not,
    /// since property-only updates don't affect adjacency structure.
    has_edge_operations: bool,
}

impl WriteBuffer {
    /// Create a new empty write buffer with default capacity limit
    ///
    /// ## Examples
    ///
    /// ```rust
    /// use aletheiadb::api::transaction::WriteBuffer;
    ///
    /// let buffer = WriteBuffer::new();
    /// assert!(buffer.is_empty());
    /// ```
    pub fn new() -> Self {
        Self::with_max_operations(DEFAULT_MAX_OPERATIONS)
    }

    /// Create a write buffer with a custom maximum operations limit
    pub fn with_max_operations(max_operations: usize) -> Self {
        WriteBuffer {
            operations: Vec::new(),
            modified_nodes: FastHashMap::default(),
            modified_edges: FastHashMap::default(),
            max_operations,
            has_vector_operations: false,
            has_edge_operations: false,
        }
    }

    /// Create a write buffer with pre-allocated capacity
    ///
    /// Sets max_operations to the requested capacity to avoid confusing behavior
    /// where the buffer is pre-allocated but still enforces the default limit.
    pub fn with_capacity(capacity: usize) -> Self {
        WriteBuffer {
            operations: Vec::with_capacity(capacity),
            modified_nodes: FastHashMap::with_capacity_and_hasher(
                capacity / 2,
                BuildHasherDefault::default(),
            ),
            modified_edges: FastHashMap::with_capacity_and_hasher(
                capacity / 2,
                BuildHasherDefault::default(),
            ),
            max_operations: capacity,
            has_vector_operations: false,
            has_edge_operations: false,
        }
    }

    /// Add a write operation to the buffer
    ///
    /// Returns an error if the maximum number of operations is exceeded (DoS protection).
    ///
    /// ## Examples
    ///
    /// ```rust
    /// use aletheiadb::api::transaction::{WriteBuffer, BufferedWrite};
    /// use aletheiadb::core::id::{NodeId, VersionId};
    /// use aletheiadb::core::interning::GLOBAL_INTERNER;
    /// use aletheiadb::core::property::PropertyMap;
    /// use aletheiadb::core::temporal::time;
    ///
    /// let mut buffer = WriteBuffer::new();
    /// let node_id = NodeId::new(1).unwrap();
    /// let version_id = VersionId::new(1).unwrap();
    /// let label = GLOBAL_INTERNER.intern("Person").unwrap();
    ///
    /// buffer.add(BufferedWrite::CreateNode {
    ///     node_id,
    ///     version_id,
    ///     label,
    ///     properties: PropertyMap::new(),
    ///     valid_from: time::now(),
    /// }).unwrap();
    ///
    /// assert_eq!(buffer.len(), 1);
    /// ```
    #[must_use = "this Result must be used; ignoring errors can lead to silent failures"]
    pub fn add(&mut self, write: BufferedWrite) -> Result<()> {
        // Check capacity limit (DoS protection)
        if self.operations.len() >= self.max_operations {
            return Err(StorageError::CapacityExceeded {
                resource: "transaction operations".to_string(),
                current: self.operations.len(),
                limit: self.max_operations,
            }
            .into());
        }

        let index = self.operations.len();

        // Track which entities are modified for conflict detection
        if let Some(node_id) = write.node_id() {
            self.modified_nodes.insert(node_id, index);
        } else if let Some(edge_id) = write.edge_id() {
            self.modified_edges.insert(edge_id, index);
        }

        // Check if this operation contains vector properties
        if let Some(properties) = write.properties() {
            self.has_vector_operations |= properties.contains_vector();
        }

        // Check if edge structure was modified
        if write.is_edge_structure_modification() {
            self.has_edge_operations = true;
        }

        self.operations.push(write);
        Ok(())
    }

    /// Get all operations in order
    pub fn operations(&self) -> &[BufferedWrite] {
        &self.operations
    }

    /// Check if a node has been modified in this buffer
    pub fn has_modified_node(&self, node_id: NodeId) -> bool {
        self.modified_nodes.contains_key(&node_id)
    }

    /// Check if an edge has been modified in this buffer
    pub fn has_modified_edge(&self, edge_id: EdgeId) -> bool {
        self.modified_edges.contains_key(&edge_id)
    }

    /// Get the buffered write for a node, if any
    pub fn get_node_write(&self, node_id: NodeId) -> Option<&BufferedWrite> {
        self.modified_nodes
            .get(&node_id)
            .map(|&index| &self.operations[index])
    }

    /// Get the buffered write for an edge, if any
    pub fn get_edge_write(&self, edge_id: EdgeId) -> Option<&BufferedWrite> {
        self.modified_edges
            .get(&edge_id)
            .map(|&index| &self.operations[index])
    }

    /// Clear all buffered operations
    pub fn clear(&mut self) {
        self.operations.clear();
        self.modified_nodes.clear();
        self.modified_edges.clear();
        self.has_vector_operations = false;
        self.has_edge_operations = false;
    }

    /// Get the number of buffered operations
    pub fn len(&self) -> usize {
        self.operations.len()
    }

    /// Check if buffer is empty
    pub fn is_empty(&self) -> bool {
        self.operations.is_empty()
    }

    /// Check if this transaction contains any vector property operations.
    ///
    /// This is used to optimize the commit path by only triggering valid_from
    /// vector index updates when vector data was actually modified.
    pub fn has_vector_operations(&self) -> bool {
        self.has_vector_operations
    }

    /// Mark that this transaction contains vector property operations.
    ///
    /// This is typically called when deleting entities that contain vector
    /// properties, ensuring the temporal vector index is notified even though
    /// the delete operation itself doesn't include property data in the buffer.
    pub fn mark_has_vector_operations(&mut self) {
        self.has_vector_operations = true;
    }

    /// Check whether any edge structure changes occurred in this transaction.
    ///
    /// This is used to optimize the commit path by only calling compact_adjacency()
    /// when the graph topology was modified. Returns true only for CreateEdge and
    /// DeleteEdge operations; UpdateEdge (property-only changes) returns false.
    pub fn has_edge_operations(&self) -> bool {
        self.has_edge_operations
    }
}

impl Default for WriteBuffer {
    fn default() -> Self {
        Self::new()
    }
}

impl From<&BufferedWrite> for crate::storage::wal::WalOperation {
    fn from(write: &BufferedWrite) -> Self {
        match write {
            BufferedWrite::CreateNode {
                node_id,
                label,
                properties,
                valid_from,
                ..
            } => crate::storage::wal::WalOperation::CreateNode {
                node_id: *node_id,
                label: *label,
                properties: properties.clone(),
                valid_from: *valid_from,
            },
            BufferedWrite::CreateEdge {
                edge_id,
                source,
                target,
                label,
                properties,
                valid_from,
                ..
            } => crate::storage::wal::WalOperation::CreateEdge {
                edge_id: *edge_id,
                source: *source,
                target: *target,
                label: *label,
                properties: properties.clone(),
                valid_from: *valid_from,
            },
            BufferedWrite::UpdateNode {
                node_id,
                version_id,
                label,
                properties,
                valid_from,
                ..
            } => crate::storage::wal::WalOperation::UpdateNode {
                node_id: *node_id,
                version_id: *version_id,
                label: *label,
                properties: properties.clone(),
                valid_from: *valid_from,
            },
            BufferedWrite::UpdateEdge {
                edge_id,
                version_id,
                label,
                properties,
                valid_from,
                ..
            } => crate::storage::wal::WalOperation::UpdateEdge {
                edge_id: *edge_id,
                version_id: *version_id,
                label: *label,
                properties: properties.clone(),
                valid_from: *valid_from,
            },
            BufferedWrite::DeleteNode {
                node_id,
                valid_from,
            } => crate::storage::wal::WalOperation::DeleteNode {
                node_id: *node_id,
                valid_from: *valid_from,
            },
            BufferedWrite::DeleteEdge {
                edge_id,
                valid_from,
            } => crate::storage::wal::WalOperation::DeleteEdge {
                edge_id: *edge_id,
                valid_from: *valid_from,
            },
        }
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::core::temporal::time;

    #[test]
    fn test_write_buffer_creation() {
        let buffer = WriteBuffer::new();
        assert_eq!(buffer.len(), 0);
        assert!(buffer.is_empty());
    }

    #[test]
    fn test_write_buffer_add_node() {
        let mut buffer = WriteBuffer::new();
        let node_id = NodeId::new(1).unwrap();
        let version_id = VersionId::new(1).unwrap();
        let label = crate::core::interning::GLOBAL_INTERNER
            .intern("Person")
            .unwrap();
        let properties = PropertyMap::new();
        let valid_from = time::now();

        buffer
            .add(BufferedWrite::CreateNode {
                node_id,
                version_id,
                label,
                properties,
                valid_from,
            })
            .unwrap();

        assert_eq!(buffer.len(), 1);
        assert!(!buffer.is_empty());
        assert!(buffer.has_modified_node(node_id));
        assert!(!buffer.has_modified_node(NodeId::new(2).unwrap()));
    }

    #[test]
    fn test_write_buffer_add_edge() {
        let mut buffer = WriteBuffer::new();
        let edge_id = EdgeId::new(1).unwrap();
        let version_id = VersionId::new(1).unwrap();
        let source = NodeId::new(1).unwrap();
        let target = NodeId::new(2).unwrap();
        let label = crate::core::interning::GLOBAL_INTERNER
            .intern("KNOWS")
            .unwrap();
        let properties = PropertyMap::new();
        let valid_from = time::now();

        buffer
            .add(BufferedWrite::CreateEdge {
                edge_id,
                version_id,
                source,
                target,
                label,
                properties,
                valid_from,
            })
            .unwrap();

        assert_eq!(buffer.len(), 1);
        assert!(buffer.has_modified_edge(edge_id));
        assert!(!buffer.has_modified_edge(EdgeId::new(2).unwrap()));
    }

    #[test]
    fn test_write_buffer_multiple_operations() {
        let mut buffer = WriteBuffer::new();
        let node_id = NodeId::new(1).unwrap();
        let edge_id = EdgeId::new(1).unwrap();
        let version_id = VersionId::new(1).unwrap();
        let label = crate::core::interning::GLOBAL_INTERNER
            .intern("Test")
            .unwrap();
        let properties = PropertyMap::new();
        let valid_from = time::now();

        // Add node
        buffer
            .add(BufferedWrite::CreateNode {
                node_id,
                version_id,
                label,
                properties: properties.clone(),
                valid_from,
            })
            .unwrap();

        // Add edge
        buffer
            .add(BufferedWrite::CreateEdge {
                edge_id,
                version_id,
                source: node_id,
                target: NodeId::new(2).unwrap(),
                label,
                properties,
                valid_from,
            })
            .unwrap();

        assert_eq!(buffer.len(), 2);
        assert!(buffer.has_modified_node(node_id));
        assert!(buffer.has_modified_edge(edge_id));
    }

    #[test]
    fn test_write_buffer_clear() {
        let mut buffer = WriteBuffer::new();
        let node_id = NodeId::new(1).unwrap();
        let version_id = VersionId::new(1).unwrap();
        let label = crate::core::interning::GLOBAL_INTERNER
            .intern("Test")
            .unwrap();
        let properties = PropertyMap::new();
        let valid_from = time::now();

        buffer
            .add(BufferedWrite::CreateNode {
                node_id,
                version_id,
                label,
                properties,
                valid_from,
            })
            .unwrap();

        assert_eq!(buffer.len(), 1);

        buffer.clear();

        assert_eq!(buffer.len(), 0);
        assert!(buffer.is_empty());
        assert!(!buffer.has_modified_node(node_id));
    }

    #[test]
    fn test_write_buffer_update_tracking() {
        let mut buffer = WriteBuffer::new();
        let node_id = NodeId::new(1).unwrap();
        let version_id_1 = VersionId::new(1).unwrap();
        let version_id_2 = VersionId::new(2).unwrap();
        let label = crate::core::interning::GLOBAL_INTERNER
            .intern("Test")
            .unwrap();
        let properties = PropertyMap::new();
        let valid_from = time::now();

        // Create node
        buffer
            .add(BufferedWrite::CreateNode {
                node_id,
                version_id: version_id_1,
                label,
                properties: properties.clone(),
                valid_from,
            })
            .unwrap();

        // Update same node
        buffer
            .add(BufferedWrite::UpdateNode {
                node_id,
                version_id: version_id_2,
                label,
                properties,
                valid_from,
            })
            .unwrap();

        // Should have 2 operations, but node appears once in modified_nodes
        assert_eq!(buffer.len(), 2);
        assert!(buffer.has_modified_node(node_id));

        // The most recent operation index should be stored
        assert_eq!(buffer.modified_nodes.get(&node_id), Some(&1));
    }

    #[test]
    fn test_capacity_exceeded() {
        // Create buffer with small capacity
        let mut buffer = WriteBuffer::with_max_operations(2);
        let label = crate::core::interning::GLOBAL_INTERNER
            .intern("Test")
            .unwrap();
        let properties = PropertyMap::new();
        let valid_from = time::now();

        // Add first operation - should succeed
        buffer
            .add(BufferedWrite::CreateNode {
                node_id: NodeId::new(1).unwrap(),
                version_id: VersionId::new(1).unwrap(),
                label,
                properties: properties.clone(),
                valid_from,
            })
            .unwrap();

        // Add second operation - should succeed
        buffer
            .add(BufferedWrite::CreateNode {
                node_id: NodeId::new(2).unwrap(),
                version_id: VersionId::new(2).unwrap(),
                label,
                properties: properties.clone(),
                valid_from,
            })
            .unwrap();

        // Add third operation - should fail (exceeds capacity)
        let result = buffer.add(BufferedWrite::CreateNode {
            node_id: NodeId::new(3).unwrap(),
            version_id: VersionId::new(3).unwrap(),
            label,
            properties,
            valid_from,
        });

        assert!(result.is_err());
        match result.unwrap_err() {
            crate::core::error::Error::Storage(StorageError::CapacityExceeded {
                resource,
                current,
                limit,
            }) => {
                assert_eq!(resource, "transaction operations");
                assert_eq!(current, 2);
                assert_eq!(limit, 2);
            }
            _ => panic!("Expected CapacityExceeded error"),
        }
    }

    #[test]
    fn test_write_buffer_with_capacity() {
        let buffer = WriteBuffer::with_capacity(10);
        assert_eq!(buffer.operations.capacity(), 10);
        assert!(buffer.is_empty());
    }

    #[test]
    fn test_vector_operations_tracking_nodes() {
        use crate::core::property::PropertyValue;

        let mut buffer = WriteBuffer::new();
        let node_id = NodeId::new(1).unwrap();
        let version_id = VersionId::new(1).unwrap();
        let label = crate::core::interning::GLOBAL_INTERNER
            .intern("Document")
            .unwrap();
        let valid_from = time::now();

        // Initially, no vector operations
        assert!(!buffer.has_vector_operations());

        // Create node with vector property
        let mut props = PropertyMap::new();
        props = props
            .builder()
            .insert("embedding", PropertyValue::vector([0.1, 0.2, 0.3]))
            .build();

        buffer
            .add(BufferedWrite::CreateNode {
                node_id,
                version_id,
                label,
                properties: props,
                valid_from,
            })
            .unwrap();

        // Should now track vector operations
        assert!(buffer.has_vector_operations());
    }

    #[test]
    fn test_vector_operations_tracking_no_vectors() {
        let mut buffer = WriteBuffer::new();
        let node_id = NodeId::new(1).unwrap();
        let version_id = VersionId::new(1).unwrap();
        let label = crate::core::interning::GLOBAL_INTERNER
            .intern("Person")
            .unwrap();
        let valid_from = time::now();

        // Create node with only scalar properties (no vectors)
        let props = PropertyMap::new()
            .builder()
            .insert("name", "Alice")
            .insert("age", 30i64)
            .insert("active", true)
            .build();

        buffer
            .add(BufferedWrite::CreateNode {
                node_id,
                version_id,
                label,
                properties: props,
                valid_from,
            })
            .unwrap();

        // Should NOT track vector operations
        assert!(!buffer.has_vector_operations());
    }

    #[test]
    fn test_vector_operations_clear() {
        use crate::core::property::PropertyValue;

        let mut buffer = WriteBuffer::new();
        let node_id = NodeId::new(1).unwrap();
        let version_id = VersionId::new(1).unwrap();
        let label = crate::core::interning::GLOBAL_INTERNER
            .intern("Document")
            .unwrap();
        let valid_from = time::now();

        // Add operation with vector
        let props = PropertyMap::new()
            .builder()
            .insert("embedding", PropertyValue::vector([0.1, 0.2, 0.3]))
            .build();

        buffer
            .add(BufferedWrite::CreateNode {
                node_id,
                version_id,
                label,
                properties: props,
                valid_from,
            })
            .unwrap();

        assert!(buffer.has_vector_operations());

        // Clear should reset the flag
        buffer.clear();
        assert!(!buffer.has_vector_operations());
        assert!(buffer.is_empty());
    }

    #[test]
    fn test_vector_operations_tracking_edges() {
        use crate::core::property::PropertyValue;

        let mut buffer = WriteBuffer::new();
        let edge_id = EdgeId::new(1).unwrap();
        let version_id = VersionId::new(1).unwrap();
        let source = NodeId::new(1).unwrap();
        let target = NodeId::new(2).unwrap();
        let label = crate::core::interning::GLOBAL_INTERNER
            .intern("SIMILAR_TO")
            .unwrap();
        let valid_from = time::now();

        // Initially, no vector operations
        assert!(!buffer.has_vector_operations());

        // Create edge with vector property
        let props = PropertyMap::new()
            .builder()
            .insert("similarity", PropertyValue::vector([0.95, 0.85, 0.90]))
            .build();

        buffer
            .add(BufferedWrite::CreateEdge {
                edge_id,
                version_id,
                source,
                target,
                label,
                properties: props,
                valid_from,
            })
            .unwrap();

        // Should now track vector operations
        assert!(buffer.has_vector_operations());
    }

    #[test]
    fn test_vector_operations_update_node() {
        use crate::core::property::PropertyValue;

        let mut buffer = WriteBuffer::new();
        let node_id = NodeId::new(1).unwrap();
        let version_id = VersionId::new(1).unwrap();
        let label = crate::core::interning::GLOBAL_INTERNER
            .intern("Document")
            .unwrap();
        let valid_from = time::now();

        // Update node with vector property
        let props = PropertyMap::new()
            .builder()
            .insert("embedding", PropertyValue::vector([0.1, 0.2, 0.3]))
            .build();

        buffer
            .add(BufferedWrite::UpdateNode {
                node_id,
                version_id,
                label,
                properties: props,
                valid_from,
            })
            .unwrap();

        // Should track vector operations
        assert!(buffer.has_vector_operations());
    }

    #[test]
    fn test_vector_operations_update_edge() {
        use crate::core::property::PropertyValue;

        let mut buffer = WriteBuffer::new();
        let edge_id = EdgeId::new(1).unwrap();
        let version_id = VersionId::new(1).unwrap();
        let source = NodeId::new(1).unwrap();
        let target = NodeId::new(2).unwrap();
        let label = crate::core::interning::GLOBAL_INTERNER
            .intern("SIMILAR_TO")
            .unwrap();
        let valid_from = time::now();

        // Update edge with vector property
        let props = PropertyMap::new()
            .builder()
            .insert("similarity", PropertyValue::vector([0.95]))
            .build();

        buffer
            .add(BufferedWrite::UpdateEdge {
                edge_id,
                version_id,
                source,
                target,
                label,
                properties: props,
                valid_from,
            })
            .unwrap();

        // Should track vector operations
        assert!(buffer.has_vector_operations());
    }

    #[test]
    fn test_vector_operations_mark_manually() {
        let mut buffer = WriteBuffer::new();

        assert!(!buffer.has_vector_operations());

        // Manually mark as having vector operations
        buffer.mark_has_vector_operations();

        assert!(buffer.has_vector_operations());
    }

    #[test]
    fn test_vector_operations_mixed_operations() {
        use crate::core::property::PropertyValue;

        let mut buffer = WriteBuffer::new();
        let valid_from = time::now();
        let label = crate::core::interning::GLOBAL_INTERNER
            .intern("Test")
            .unwrap();

        // Add several operations without vectors
        for i in 0..5 {
            buffer
                .add(BufferedWrite::CreateNode {
                    node_id: NodeId::new(i).unwrap(),
                    version_id: VersionId::new(i).unwrap(),
                    label,
                    properties: PropertyMap::new().builder().insert("id", i as i64).build(),
                    valid_from,
                })
                .unwrap();
        }

        assert!(!buffer.has_vector_operations());

        // Add one operation with a vector
        let props = PropertyMap::new()
            .builder()
            .insert("embedding", PropertyValue::vector([0.1, 0.2]))
            .build();

        buffer
            .add(BufferedWrite::CreateNode {
                node_id: NodeId::new(100).unwrap(),
                version_id: VersionId::new(100).unwrap(),
                label,
                properties: props,
                valid_from,
            })
            .unwrap();

        // Should now track vector operations
        assert!(buffer.has_vector_operations());

        // Add more non-vector operations - flag should remain true
        for i in 6..10 {
            buffer
                .add(BufferedWrite::CreateNode {
                    node_id: NodeId::new(i).unwrap(),
                    version_id: VersionId::new(i).unwrap(),
                    label,
                    properties: PropertyMap::new().builder().insert("id", i as i64).build(),
                    valid_from,
                })
                .unwrap();
        }

        assert!(buffer.has_vector_operations());
    }

    #[test]
    fn test_edge_operations_tracking_create_edge() {
        let mut buffer = WriteBuffer::new();
        let edge_id = EdgeId::new(1).unwrap();
        let version_id = VersionId::new(1).unwrap();
        let source = NodeId::new(1).unwrap();
        let target = NodeId::new(2).unwrap();
        let label = crate::core::interning::GLOBAL_INTERNER
            .intern("KNOWS")
            .unwrap();
        let valid_from = time::now();

        // Initially, no edge operations
        assert!(!buffer.has_edge_operations());

        // Create edge
        buffer
            .add(BufferedWrite::CreateEdge {
                edge_id,
                version_id,
                source,
                target,
                label,
                properties: PropertyMap::new(),
                valid_from,
            })
            .unwrap();

        // Should now track edge operations
        assert!(buffer.has_edge_operations());
    }

    #[test]
    fn test_edge_operations_tracking_update_edge() {
        let mut buffer = WriteBuffer::new();
        let edge_id = EdgeId::new(1).unwrap();
        let version_id = VersionId::new(1).unwrap();
        let source = NodeId::new(1).unwrap();
        let target = NodeId::new(2).unwrap();
        let label = crate::core::interning::GLOBAL_INTERNER
            .intern("KNOWS")
            .unwrap();
        let valid_from = time::now();

        // Initially, no edge operations
        assert!(!buffer.has_edge_operations());

        // Update edge (property-only, doesn't change topology)
        buffer
            .add(BufferedWrite::UpdateEdge {
                edge_id,
                version_id,
                source,
                target,
                label,
                properties: PropertyMap::new(),
                valid_from,
            })
            .unwrap();

        // Should NOT track edge operations (property updates don't affect adjacency)
        assert!(!buffer.has_edge_operations());
    }

    #[test]
    fn test_edge_operations_tracking_delete_edge() {
        let mut buffer = WriteBuffer::new();
        let edge_id = EdgeId::new(1).unwrap();

        // Initially, no edge operations
        assert!(!buffer.has_edge_operations());

        // Delete edge
        buffer
            .add(BufferedWrite::DeleteEdge {
                edge_id,
                valid_from: crate::core::temporal::time::now(),
            })
            .unwrap();

        // Should now track edge operations
        assert!(buffer.has_edge_operations());
    }

    #[test]
    fn test_edge_operations_tracking_only_nodes() {
        let mut buffer = WriteBuffer::new();
        let node_id = NodeId::new(1).unwrap();
        let version_id = VersionId::new(1).unwrap();
        let label = crate::core::interning::GLOBAL_INTERNER
            .intern("Person")
            .unwrap();
        let valid_from = time::now();

        // Create node (no edge operations)
        let props = PropertyMap::new().builder().insert("name", "Alice").build();

        buffer
            .add(BufferedWrite::CreateNode {
                node_id,
                version_id,
                label,
                properties: props,
                valid_from,
            })
            .unwrap();

        // Should NOT track edge operations
        assert!(!buffer.has_edge_operations());
    }

    #[test]
    fn test_edge_operations_tracking_clear() {
        let mut buffer = WriteBuffer::new();
        let edge_id = EdgeId::new(1).unwrap();
        let version_id = VersionId::new(1).unwrap();
        let source = NodeId::new(1).unwrap();
        let target = NodeId::new(2).unwrap();
        let label = crate::core::interning::GLOBAL_INTERNER
            .intern("KNOWS")
            .unwrap();
        let valid_from = time::now();

        // Add edge operation
        buffer
            .add(BufferedWrite::CreateEdge {
                edge_id,
                version_id,
                source,
                target,
                label,
                properties: PropertyMap::new(),
                valid_from,
            })
            .unwrap();

        assert!(buffer.has_edge_operations());

        // Clear should reset the flag
        buffer.clear();
        assert!(!buffer.has_edge_operations());
        assert!(buffer.is_empty());
    }

    #[test]
    fn test_edge_operations_tracking_mixed_operations() {
        let mut buffer = WriteBuffer::new();
        let node_id = NodeId::new(1).unwrap();
        let edge_id = EdgeId::new(1).unwrap();
        let version_id = VersionId::new(1).unwrap();
        let label = crate::core::interning::GLOBAL_INTERNER
            .intern("Person")
            .unwrap();
        let valid_from = time::now();

        // Initially, no edge operations
        assert!(!buffer.has_edge_operations());

        // Add node operation
        buffer
            .add(BufferedWrite::CreateNode {
                node_id,
                version_id,
                label,
                properties: PropertyMap::new(),
                valid_from,
            })
            .unwrap();

        // Should still be false (only node operations so far)
        assert!(!buffer.has_edge_operations());

        // Add edge operation
        buffer
            .add(BufferedWrite::CreateEdge {
                edge_id,
                version_id,
                source: node_id,
                target: NodeId::new(2).unwrap(),
                label,
                properties: PropertyMap::new(),
                valid_from,
            })
            .unwrap();

        // Should now track edge operations
        assert!(buffer.has_edge_operations());

        // Add more node operations - flag should remain true
        buffer
            .add(BufferedWrite::CreateNode {
                node_id: NodeId::new(3).unwrap(),
                version_id: VersionId::new(2).unwrap(),
                label,
                properties: PropertyMap::new(),
                valid_from,
            })
            .unwrap();

        assert!(buffer.has_edge_operations());
    }

    #[test]
    fn test_edge_operations_tracking_create_update_distinction() {
        let mut buffer = WriteBuffer::new();
        let edge_id_1 = EdgeId::new(1).unwrap();
        let edge_id_2 = EdgeId::new(2).unwrap();
        let version_id = VersionId::new(1).unwrap();
        let source = NodeId::new(1).unwrap();
        let target = NodeId::new(2).unwrap();
        let label = crate::core::interning::GLOBAL_INTERNER
            .intern("KNOWS")
            .unwrap();
        let valid_from = time::now();

        // Initially, no edge operations
        assert!(!buffer.has_edge_operations());

        // UpdateEdge alone should NOT trigger the flag
        buffer
            .add(BufferedWrite::UpdateEdge {
                edge_id: edge_id_1,
                version_id,
                source,
                target,
                label,
                properties: PropertyMap::new(),
                valid_from,
            })
            .unwrap();

        assert!(!buffer.has_edge_operations());

        // CreateEdge SHOULD trigger the flag
        buffer
            .add(BufferedWrite::CreateEdge {
                edge_id: edge_id_2,
                version_id,
                source,
                target,
                label,
                properties: PropertyMap::new(),
                valid_from,
            })
            .unwrap();

        assert!(buffer.has_edge_operations());

        // Clear and test with DeleteEdge
        buffer.clear();
        assert!(!buffer.has_edge_operations());

        // UpdateEdge alone still shouldn't trigger
        buffer
            .add(BufferedWrite::UpdateEdge {
                edge_id: edge_id_1,
                version_id,
                source,
                target,
                label,
                properties: PropertyMap::new(),
                valid_from,
            })
            .unwrap();

        assert!(!buffer.has_edge_operations());

        // DeleteEdge SHOULD trigger the flag
        buffer
            .add(BufferedWrite::DeleteEdge {
                edge_id: edge_id_1,
                valid_from,
            })
            .unwrap();

        assert!(buffer.has_edge_operations());
    }

    // =========================================================================
    // Phase 3: True Bi-Temporal - BufferedWrite with valid_from Tests
    // =========================================================================

    #[test]
    fn test_buffered_write_stores_valid_from_separately() {
        use crate::core::hlc::HybridTimestamp;

        let valid_from = HybridTimestamp::new(1000, 0).unwrap();

        let write = BufferedWrite::CreateNode {
            node_id: NodeId::new(1).unwrap(),
            version_id: VersionId::new(1).unwrap(),
            label: crate::core::interning::GLOBAL_INTERNER
                .intern("Person")
                .unwrap(),
            properties: PropertyMap::new(),
            valid_from,
        };

        match write {
            BufferedWrite::CreateNode { valid_from: vf, .. } => {
                assert_eq!(vf, valid_from);
            }
            _ => panic!("Wrong variant"),
        }
    }

    #[test]
    fn test_buffered_write_update_stores_valid_from() {
        use crate::core::hlc::HybridTimestamp;

        let valid_from = HybridTimestamp::new(2000, 0).unwrap();

        let write = BufferedWrite::UpdateNode {
            node_id: NodeId::new(1).unwrap(),
            version_id: VersionId::new(2).unwrap(),
            label: crate::core::interning::GLOBAL_INTERNER
                .intern("Person")
                .unwrap(),
            properties: PropertyMap::new(),
            valid_from,
        };

        match write {
            BufferedWrite::UpdateNode { valid_from: vf, .. } => {
                assert_eq!(vf, valid_from);
            }
            _ => panic!("Wrong variant"),
        }
    }

    #[test]
    fn test_buffered_write_create_edge_stores_valid_from() {
        use crate::core::hlc::HybridTimestamp;

        let valid_from = HybridTimestamp::new(3000, 0).unwrap();

        let write = BufferedWrite::CreateEdge {
            edge_id: EdgeId::new(1).unwrap(),
            version_id: VersionId::new(1).unwrap(),
            source: NodeId::new(1).unwrap(),
            target: NodeId::new(2).unwrap(),
            label: crate::core::interning::GLOBAL_INTERNER
                .intern("KNOWS")
                .unwrap(),
            properties: PropertyMap::new(),
            valid_from,
        };

        match write {
            BufferedWrite::CreateEdge { valid_from: vf, .. } => {
                assert_eq!(vf, valid_from);
            }
            _ => panic!("Wrong variant"),
        }
    }

    #[test]
    fn test_buffered_write_update_edge_stores_valid_from() {
        use crate::core::hlc::HybridTimestamp;

        let valid_from = HybridTimestamp::new(4000, 0).unwrap();

        let write = BufferedWrite::UpdateEdge {
            edge_id: EdgeId::new(1).unwrap(),
            version_id: VersionId::new(2).unwrap(),
            source: NodeId::new(1).unwrap(),
            target: NodeId::new(2).unwrap(),
            label: crate::core::interning::GLOBAL_INTERNER
                .intern("KNOWS")
                .unwrap(),
            properties: PropertyMap::new(),
            valid_from,
        };

        match write {
            BufferedWrite::UpdateEdge { valid_from: vf, .. } => {
                assert_eq!(vf, valid_from);
            }
            _ => panic!("Wrong variant"),
        }
    }
}