uqa-execution 0.3.5

Volcano physical operators with row-batch pipelines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//
// Unified Query Algebra
//
// Copyright (c) 2023-2026 Cognica, Inc.
//

//! Committed row-change metadata carried to transaction publication.

#[derive(Clone, Copy)]
pub struct TransactionRowChange {
    pub pending: crate::row_locks::PendingRowChange,
    pub source_generation: [u8; 16],
    pub successor_generation: Option<[u8; 16]>,
    pub query_origin: Option<u64>,
}